- Revision
- 282
- Author
- gas
- Date
- 2007-07-25 14:10:06 -0500 (Wed, 25 Jul 2007)
Log Message
adding number tag doc
Modified Paths
Added Paths
Diff
Modified: trunk/distribution/src/site/content/sitemap.xml (281 => 282)
--- trunk/distribution/src/site/content/sitemap.xml 2007-07-25 18:56:07 UTC (rev 281) +++ trunk/distribution/src/site/content/sitemap.xml 2007-07-25 19:10:06 UTC (rev 282) @@ -35,6 +35,7 @@ <page>taglib/button.html</page> <page>taglib/calendar.html</page> <page>taglib/hidden.html</page> + <page>taglib/number.html</page> <page>taglib/submit.html</page> <page>taglib/select.html</page> <page>taglib/text.html</page>
Copied: trunk/distribution/src/site/content/taglib/number.html (from rev 278, trunk/distribution/src/site/content/taglib/calendar.html) (0 => 282)
--- trunk/distribution/src/site/content/taglib/number.html (rev 0) +++ trunk/distribution/src/site/content/taglib/number.html 2007-07-25 19:10:06 UTC (rev 282) @@ -0,0 +1,26 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html> +<head> +<title>Number Tag</title> +</head> +<body> + + +<h2>Number Tag</h2> +<p>The <i>w:number</i> tag creates an input field with the +given <i>value</i> represented as a number. The +number will be formated using the current <i>user locale</i> or the given <i>pattern</i> .</p> +<p>Example using the user locale:</p> + +<textarea class="java:nogutter:nocontrols" name="code"> + <w:number name="number" value="${1234.56}" /> +</textarea> + +<p>Example using a specific pattern:</p> + +<textarea class="java:nogutter:nocontrols" name="code"> + <w:number name="number" value="${1234.56}" pattern="00000.00" /> +</textarea> +</body> + +</html>
To unsubscribe from this list please visit:
