org.zkoss.zk.ui.input.grouping.allowed

From Documentation
Revision as of 08:47, 3 December 2010 by Char (talk | contribs) (Created page with ' {{ZKConfigurationReferencePageHeader}} Default: <i>true</i> [since 5.0.5] Turn on/off whether the user is allowed to key in the grouping character when entering a number. Th…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


org.zkoss.zk.ui.input.grouping.allowed


Default: true
[since 5.0.5]

Turn on/off whether the user is allowed to key in the grouping character when entering a number. The grouping character depends on the Locale. For example, it is a comma in English, and a dot in Germany. By default, ZK will allow the user to key in the grouping characters and the grouping characters are simply ignored when the input is parsed to a number.

Some people still get confused whether the application considers a comma as a decimal point or not, when he is new to the application. By disabling the entering of the grouping character will help in this case.

<library-property>
	<name>org.zkoss.zk.ui.input.grouping.allowed</name>
	<value>false</value>
</library-property>

If you want to disable it only for a particular page, you could specify it in the page's attribute (note: the page must be the root page). For example,

<zk>
<custom-attributes org.zkoss.zk.ui.input.grouping.allowed="false" scope="page"/>
<doublebox/>
</zk>


Last Update : 2010/12/03

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.