-
13 Nov 2012 12:39 PM #1
Answered: checkboxfield is always true
Answered: checkboxfield is always true
I have a form with checkboxfields. the form is filled by using loadRecord() and saved by using record.set(values);
but the checked value never changes. if I change it manually in the database than the record will show up unchecked in the form. but whenever I submit the form it always submits as true. how do I get the unchecked value to update in the record?
Code:, { xtype: 'checkboxfield', name: 'display', id: 'display', fieldLabel: 'Display', inputValue: 'true', boxLabel: 'Displayed Online' }
-
Best Answer Posted by vietits
Try to config your checkbox fields with uncheckedValue.
Code:, { xtype: 'checkboxfield', name: 'display', id: 'display', fieldLabel: 'Display', inputValue: 'true', uncheckedValue: 'false', boxLabel: 'Displayed Online' }
-
13 Nov 2012 6:35 PM #2
Try to config your checkbox fields with uncheckedValue.
Code:, { xtype: 'checkboxfield', name: 'display', id: 'display', fieldLabel: 'Display', inputValue: 'true', uncheckedValue: 'false', boxLabel: 'Displayed Online' }
-
13 Nov 2012 7:45 PM #3
thanks! @vietits
that was the problem, everything is working as expected now.


Reply With Quote