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

Android : Making Listview full screen -

javascript - Parse JSON from the body of the POST -

javascript - Chrome Extension: Interacting with iframe embedded within popup -