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}
Comments
Post a Comment