Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
v1m1
-
None
Description
<netui:formatDate>
file:/docs/apidocs/taglib/beehive.apache.org/netui/tags-html-1.0/formatDate.html
<netui:formatNumber>
file:/docs\apidocs\taglib\beehive.apache.org\netui\tags-html-1.0\formatNumber.html
<netui:formatString>
file:/docs/apidocs/taglib/beehive.apache.org/netui/tags-html-1.0/formatString.html
Description:
<netui:formatDate> ONLY
1. The netui:content value needs a $ and pageContext should be pageScope,
current: <netui:content value="
">
Updated: <netui:content value="${pageScope.euroDate}">
<netui:formatString> ONLY
2. The netui:label value needs a $,
current: <netui:label value="
">
Updated: <netui:label value="${pageFlow.phone}">
Attributes: ALL
3. country, language, pattern, (and stringInputPattern for formatDate tag) attributes do not have a Data bindable: value
4. country and language do not have attribute descriptions
Country: The country code for the locale.
Language: The language code for the locale.
5. pattern does not have a description, should reference the table of pattern letters or the sample pattern letters that are contained in the Description depending on the tag.
Example:
<netui:formatDate> only
6. The <netui:label tag needs the $ and pageContext should be pageScope
Current: <netui:label value="
Updated: <netui:label value="${pageScope.today}">
PageFlow JavaDoc API:
FormatDate
file:/docs/apidocs/classref_pageflows/org/apache/beehive/netui/tags/html/FormatDate.html
Example: – <netui:label value="" needs $ and pageContext should be pageScope
Current: <netui:label value="{pageContext.today}
">
Updated: <netui:label value="${pageScope.today}">
bash05102005