Hello,
I have a problem using two simultaneously checked CheckboxItems: after checking checkbox A, when I check checkbox B it quickly goes back to being unchecked. If I check checkbox B again it seems to work fine. The function getValueAsBoolean() from checkbox B returns false after this... This seems to happen with any of the two checkboxes I check last.
Here's a relevant code snippet:
I'm using SmartGWT 2.4, GWT 2.3 and Firefox 3.6.
Thanks in advance!
I have a problem using two simultaneously checked CheckboxItems: after checking checkbox A, when I check checkbox B it quickly goes back to being unchecked. If I check checkbox B again it seems to work fine. The function getValueAsBoolean() from checkbox B returns false after this... This seems to happen with any of the two checkboxes I check last.
Here's a relevant code snippet:
Code:
// Both comboboxes are checked if( checkBoxA.getValueAsBoolean() ){ // returns true variable++; } if( checkboxB.getValueAsBoolean() ){ // returns false variable++; }
Thanks in advance!
Comment