| |||||||
| FRAMES NO FRAMES | |||||||
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 Class | com.pow2.webgui.taglib.WindowTag |
| TagExtraInfo Class | None |
| Body Content | JSP |
| Display Name | None |
| Attributes | ||||
| Name | Required | Request-time | Type | Description |
| drawer | true | true | java.lang.String | defines the drawer class that will be used to prepare and render the widget. |
| id | false | true | java.lang.String | id attribute. |
| title | false | true | java.lang.String | set the title text for text type, or the image source for image type. |
| titleType | false | true | java.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 |
| color | false | true | java.lang.String | sets the window body color; use the format #rrggbb. |
| width | false | true | java.lang.String | sets the window width. |
| height | false | true | java.lang.String | sets the window height. Not used |
| Variables | No Variables Defined. |
| |||||||
| FRAMES NO FRAMES | |||||||