NetUI Tag Library Documentation (Version 1.0.2)

netui-data
netui-data:row Tag

This tag is optionally used to render HTML table roe tags inside of one of the data grid tags that are used to denote data grid row rendering boundaries.

Syntax

<netui-data:row
    [dir="string_dir"]
    [lang="string_lang"]
    [onClick="string_onClick"]
    [onDblClick="string_onDblClick"]
    [onKeyDown="string_onKeyDown"]
    [onKeyPress="string_onKeyPress"]
    [onKeyUp="string_onKeyUp"]
    [onMouseDown="string_onMouseDown"]
    [onMouseMove="string_onMouseMove"]
    [onMouseOut="string_onMouseOut"]
    [onMouseOver="string_onMouseOver"]
    [onMouseUp="string_onMouseUp"]
    [style="string_style"]
    [styleClass="string_style_class"]
    [tagId="string_tagId"]
    [title="string_title"] >
    ... JSP content ...
</netui-data:row>

Description

This tag is optionally used to render HTML table roe tags inside of one of the data grid tags that are used to denote data grid row rendering boundaries. When the <netui-data:header>, <netui-data:rows>, or <netui-data:footer> have their renderRow attribute set to false, no HTML table row element will render before starting to render the body of one of these tags. This tag should be used when renderRows is false in order to render an HTML table row. The Row tag is used this way in order to allow a page author to set JSP tag attributes that can configure each rendered table row differently. For example:

   <netui-data:rows renderRows="false">
     <netui-data:row styleClass="rowStyle${container.index}">
       <netui-data:spanCell value="${container.item}"/>
     </netui-data:row>
   </netui-data:rows>
 
and a data set containing ["foo", "bar", "baz"] will render:
   <tr class="rowStyle0">foo</tr>
   <tr class="rowStyle1">bar</tr>
   <tr class="rowStyle2">baz</tr>
 
If the <netui-data:row$gt; were omitted, none of the <tr> elements would be rendered in the output. Note, this tag should not be used inside of the Header, Rows, or Footer tags unless their renderRow attribute is set to false

Attributes
dir
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The dir for the HTML tr tag.
lang
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The lang for the HTML tr tag.
onClick
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The onClick JavaScript for the HTML tr tag.
onDblClick
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The onDblClick JavaScript for the HTML tr tag.
onKeyDown
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The onKeyDown JavaScript for the HTML tr tag.
onKeyPress
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The onKeyPress JavaScript for the HTML tr tag.
onKeyUp
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The onKeyUp JavaScript for the HTML tr tag.
onMouseDown
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The onMouseDown JavaScript for the HTML tr tag.
onMouseMove
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The onMouseMove JavaScript for the HTML tr tag.
onMouseOut
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The onMouseOut JavaScript for the HTML tr tag.
onMouseOver
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The onMouseOver JavaScript for the HTML tr tag.
onMouseUp
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The onMouseUp JavaScript for the HTML tr tag.
style
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The style attribute for the HTML tr tag.
styleClass
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The style class for the HTML tr tag.
tagId
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The tagId for the HTML tr tat.
title
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The title for the HTML tr tag.


Tag Information
Tag Classorg.apache.beehive.netui.tags.databinding.datagrid.Row
TagExtraInfo ClassNone
Body Contentscriptless
Display NameNone