<windowpanel>
A draggable panel that provides common behavior for various window classes.

JavaScript: lz.windowpanel

The <windowpanel> tag creates a floating view that has a title area and can be moved by the user. It provides common behavior for window, modaldialog, and alert.

Example 74. window panel

<canvas width="300" height="150">
              <windowpanel x="10" y="10" width="200" height="100" title="windowpanel" closeable="true">
              <text>Hello</text>
              </windowpanel>
              </canvas>
edit

Attributes

Name Type (tag) Type (js) Default Category
closeable expression any false read/write
  If true, the window will have a close control. Default: false
defaultplacement string String content read/write
   
inset_bottom expression any 20 read/write
  The bottom inset for the window content area. Default: 20
inset_left expression any 6 read/write
  The left inset for the window content area. Default: 6
inset_right expression any 11 read/write
  The right inset for the window content area. Default: 11
inset_top expression any 22 read/write
  The top inset for the window content area. Default: 22
title string String   read/write
  the title of a window : this string appears at the top of the window. Default: none
titlearea_inset_top expression any 6 read/write
  The top inset for the window title area. Default: 6

Methods

Methods inherited from lz.Eventable

destroy, setAttribute

Events

Events inherited from <node>

onconstruct, ondata, oninit

Events inherited from lz.Eventable

ondestroy