Just a window that remembers its size and position
Code:
netzke :window
Code:
netzke :window_with_grid_panel, :class_name => "Window", :persistent_config => true, :ext_config => { :width => 700, :height => 400 }, :item => { :class_name => "GridPanel", :model => "Boss", :ext_config => { :header => false, :border => true } }
Just a window that remembers its size and position
Code:
netzke :window_with_bosses_and_clerks, :class_name => "Window", :persistent_config => true, :ext_config => { :width => "70%", :height => 400 }, :item => { :class_name => "BossesAndClerks", :ext_config => { :header => false, :border => true } }
Simply setting the Ext.Window's closeAction option to "hide"
Code:
netzke :reopenable_window, :class_name => "Window", :ext_config => { :close_action => "hide", :width => 200, :height => 100 }