Datagrid rows tag not rendering HTML attributes
-----------------------------------------------
Key: BEEHIVE-593
URL: http://issues.apache.org/jira/browse/BEEHIVE-593
Project: Beehive
Type: Bug
Components: NetUI
Versions: V1
Environment: Windows XP, Weblogic 9.0, Tomcat 5.0
Reporter: Nathan Jantz
Assigned to: Eddie O'Neil
Fix For: V1
When a datagrid renders <tr> data rows, all attributes set in the
<netui-data:rows> tag do not get rendered to the <tr> element.
Test Case:
<netui-data:rows
align="left"
char="foo"
charoff="foo"
dir="LTR"
lang="en"
onClick="foo()"
onDblClick="foo()"
onKeyDown="foo()"
onKeyPress="foo()"
onKeyUp="foo()"
onMouseDown="foo()"
onMouseMove="foo()"
onMouseOut="foo()"
onMouseOver="foo()"
onMouseUp="foo()"
style="foo"
styleClass="foo"
title="foo"
valign="top"
>
Expected Result:
<tr align="left"
char="foo"
charoff="foo"
dir="LTR"
lang="en"
onClick="foo()"
onDblClick="foo()"
onKeyDown="foo()"
onKeyPress="foo()"
onKeyUp="foo()"
onMouseDown="foo()"
onMouseMove="foo()"
onMouseOut="foo()"
onMouseOver="foo()"
onMouseUp="foo()"
style="foo"
class="foo"
title="foo"
valign="top"
>
Actual results:
<tr class="datagrid-even">
Attaching repro here shortly.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira