Window

Extend from $.fn.panel.defaults. Override defaults with $.fn.window.defaults.

Dependencies

Usage

  1. <div id="win" iconCls="icon-save" title="My Window">  
  2.   Window Content  
  3. </div>  
  1. $('#win').window({  
  2.     width:600,  
  3.     height:400,  
  4.     modal:true  
  5. });  
  6. $('#win').window('close');  // close window  

Properties

The properties extend from panel, below is the overridden and added properties for window.

Name Type Description Default
title string The window title text. New Window
collapsible boolean Defines if to show collapsible button. true
minimizable boolean Defines if to show minimizable button. true
maximizable boolean Defines if to show maximizable button. true
closable boolean Defines if to show closable button. true
closed boolean Defined if to close the window. false
zIndex number Window z-index,increase from it. 9000
draggable boolean Defines if window can be dragged. true
resizable boolean Defines if window can be resized. true
shadow boolean If set to true,when window show the shadow will show also. true
inline boolean Defines how to stay the window, true to stay inside its parent, false to go on top of all elements. false
modal boolean Defines if window is a modal window. true

Events

The events extend from panel.

Methods

The methods extend from panel, below is the added methods for window.

Name Parameter Description
window none Return the window object.