pow2webgui
Tag window



Example:
Window widget. Renders windows-like widgets. Example:


<%@ taglib uri="/WEB-INF/webgui.tld" prefix="gui" %>

<gui:window title="prova2" prototype="boWindow" color="#f0f0f0">

  <!-- put here your window content -->
  <table width="450" border="0" cellspacing="0" cellpadding="2" style="font-size: x-small">
  <input type="hidden" value="26" >
  <tr>
    <td>department</td>
    <td><input type="text" value="department1"  size="50"></td>
  </tr>
  <tr>
    <td valign="top">description</td>
    <td><textarea cols="38" rows="8"></textarea></td>
  </tr>
  <tr>
    <td>thumbnail</td>
    <td><input type="file" size="38"></td>
  </tr>
  <tr>
    <td>image</td>
    <td><input type="file" size="38"></td>
  </tr>
  <tr>
    <td>parent</td>
    <td>
      <select size="1">
        <option value="1">1
        <option value="2">2
      </select>
    </td>
  </tr>
  <tr>
    <td colspan="2" align="right">
      <input type="submit"  value="update">
    </td>
  </tr>
  </table>
  <!-- end of window content -->

</gui:window>

    


Tag Information
Tag Classcom.pow2.webgui.taglib.WindowTag
TagExtraInfo ClassNone
Body ContentJSP
Display NameNone

Attributes
NameRequiredRequest-timeTypeDescription
drawertruetruejava.lang.String defines the drawer class that will be used to prepare and render the widget.
idfalsetruejava.lang.Stringid attribute.
titlefalsetruejava.lang.Stringset the title text for text type, or the image source for image type.
titleTypefalsetruejava.lang.String defines the window title type. It can be: "text" - title attribute value is used directly as the title string"image" - title attribute value point out the image filepath
colorfalsetruejava.lang.Stringsets the window body color; use the format #rrggbb.
widthfalsetruejava.lang.Stringsets the window width.
heightfalsetruejava.lang.Stringsets the window height. Not used

Variables
No Variables Defined.


Output Generated by Tag Library Documentation Generator. Java, JSP, and JavaServer Pages are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries. Copyright 2002-4 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054, U.S.A. All Rights Reserved.