java - How to customize the binding expression in Netbeans? -


i have jcheckbox, when select it, must disable jcombobox.

i try negate binding expression in mode:

${!enabled} 

but doesn't work, java application doesn't start. what's trouble?

you have go selected property not enabled property of checkbox.

and have bind combobox's enabled property checkbox's selected property.

${!selected} 

enter image description here


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

Rendering JButton to get the JCheckBox behavior in a JTable by using images does not update my table -