Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
v1m1
-
None
Description
<netui:hidden>
file:
/docs/apidocs/taglib/beehive.apache.org/netui/tags-html-1.0/hidden.html
Attributes:
1. The following attributes are missing a value for Data bindable:
dataInput, dataSource, disabled, onBlur, onChange, onFocus, and onSelect
dataInput and dataSource should both have a Yes value.
2. dataSource, the examples with dataSource attributes need to have the {} removed.
<netui:textBox dataSource="
" />
<netui-data:repeater dataSource="
">
Should be:
<netui:textBox dataSource="actionForm.foo" />
<netui-data:repeater dataSource="pageFlow.myIterativeData">
3. Even though dir is a Standard Html Attribute, the description is lacking: "The dir." The description taken from the standard Attributes Value Description:
dir ltr | rtl Sets the text direction
4. disabled attribute does not have a description.
5. onBlur, onChange, onFocus, and onSelect do not have attribute descriptions: The typical: "The on** JavaScript event." should be sufficient.
6. tagId - see JIRA-637
Example:
7. Needs the {} removed from the dataSource attribute:
Current: <netui:hidden dataSource="
" />
Updated: <netui:hidden dataSource="actionForm.status" />
JavaDoc Pageflow api for Hidden:
file:/docs/apidocs/classref_pageflows/org/apache/beehive/netui/tags/html/Hidden.html
8. Example needs the {} removed same as 7. above.
bash05102005