Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Extjs 4 - Panel vs Window

Tags:

extjs

extjs4

what's the different between window and panel in Extjs ? is it fine if i use window to display and handle too much data from database ?

like image 760
Noon Avatar asked Feb 19 '23 06:02

Noon


1 Answers

Window is a specialized panel intended for use as an application window. Windows are floated, resizable, and draggable by default. Windows can be maximized to fill the viewport, restored to their prior size, and can be minimized.

So if you don't need any of the features the window has - use a panel.

like image 138
CD.. Avatar answered Feb 27 '23 03:02

CD..