org.zkoss.zul.listbox.rightSelect"

From Documentation
(Created page with ' {{ZKConfigurationReferencePageHeader}} Default: true [Since 5.0.5] If a listbox's checkmark (<javadoc method="isCheckmark()">org.zkoss.zul.Listbox</javadoc>) is enabled, the…')
 
 
(8 intermediate revisions by 5 users not shown)
Line 1: Line 1:
  {{ZKConfigurationReferencePageHeader}}
+
{{ZKConfigurationReferencePageHeader}}
 +
'''Property:'''
 +
  org.zkoss.zul.listbox.rightSelect
 +
 
 +
{{NestedLibraryProperty}}
  
 
  Default: true
 
  Default: true
[Since 5.0.5]
+
{{versionSince| 5.0.5}}
 +
 
 +
If a listbox's checkmark (<javadoc method="isCheckmark()">org.zkoss.zul.Listbox</javadoc>) is enabled, the selection will be toggled when the user right clicks on an item.
 +
 
 +
If you prefer not to select/deselect an item with a right click, you could specify false to this library property.
  
If a listbox's checkmark (<javadoc method="isCheckmark()">org.zkoss.zul.Listbox</javadoc>) is enabled, the selection will be toggled when user right click on item.
+
If you prefer to configure a particular component, you could specify it as the custom attribute of the component or any of its ancestor components.
  
If you prefer not to select/deselect item on right click, you could specify false to this library property.
+
<source lang="xml">
 +
<listbox>
 +
  <custom-attributes org.zkoss.zul.listbox.rightSelect="false"/>
 +
...
 +
</source>
  
{{ZKConfigurationReferencePageFooter}}
+
=Version History=
 +
{{LastUpdated}}
 +
{| border='1px' | width="100%"
 +
! Version !! Date !! Content
 +
|-
 +
| 5.0.5
 +
| October 2010
 +
| org.zkoss.zul.listbox.rightSelect and org.zkoss.zul.tree.rightSelect are introduced to control whether to toggle item selection or not when an item is right clicked on a tree or a listbox with checkmark.
 +
|-
 +
| 5.0.7
 +
| April 2011
 +
| org.zkoss.zul.listbox.rightSelect and org.zkoss.zul.tree.rightSelect could be specified as component's attribute (<javadoc type="interface" method="getAttribute(java.lang.String, boolean)">org.zkoss.zk.ui.Component</javadoc>).
 +
|}
 +
{{ZKConfigurationReferencePageFooter}}

Latest revision as of 04:28, 8 September 2023


org.zkoss.zul.listbox.rightSelect


Property:

org.zkoss.zul.listbox.rightSelect
Applicable:
Dndsmalltalk-check-icon.png globally in zk.xml via <library-property>
Dndsmalltalk-check-icon.png nested in a zul file via <custom-attributes>
Default: true

Since 5.0.5

If a listbox's checkmark (Listbox.isCheckmark()) is enabled, the selection will be toggled when the user right clicks on an item.

If you prefer not to select/deselect an item with a right click, you could specify false to this library property.

If you prefer to configure a particular component, you could specify it as the custom attribute of the component or any of its ancestor components.

<listbox>
  <custom-attributes org.zkoss.zul.listbox.rightSelect="false"/>
...

Version History

Last Update : 2023/09/08


Version Date Content
5.0.5 October 2010 org.zkoss.zul.listbox.rightSelect and org.zkoss.zul.tree.rightSelect are introduced to control whether to toggle item selection or not when an item is right clicked on a tree or a listbox with checkmark.
5.0.7 April 2011 org.zkoss.zul.listbox.rightSelect and org.zkoss.zul.tree.rightSelect could be specified as component's attribute (Component.getAttribute(String, boolean)).


Last Update : 2023/09/08

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