-
21 Apr 2012 3:29 PM #1
Unanswered: Disabled Checkbox is still working
Unanswered: Disabled Checkbox is still working
Hi all,
I have an app that needs to display a set of checkbox. If I suppose to tick the checkbox, I need to disable some another checkbox as previously configured. I already built a logic for that in Sencha. However if the user tick the disabled checkbox, the checkbox is counted as ticked. And when the disabled checkbox is enabled again, the disabled checkbox before automatically become in checked condition. (This only apply if user tick only one time after disabled ).
So far I have found this issue as stated in here http://www.sencha.com/forum/showthre...-still-working.
I try the workaround, but also not working. The strange thing is when I lookup into sencha Checkbox.js code, I see that the Checkbox is using listener for the element that fire onChange event when it is clicked. However when I debug using Ext.override the onChange event is not fired at all when the checkbox is disabled, although the state of checked seems modified (like another event may be activated, but I don't know).
Can someone help in clearing this issue?
Thanks in advance,
Best Regards,
-
23 Apr 2012 8:51 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,656
- Vote Rating
- 435
- Answers
- 3108
Using 1.1.1, this does not allow me to tap on it:
Code:new Ext.form.FormPanel({ fullscreen : true, items : [ { xtype : 'checkboxfield', label : 'Test', disabled : true } ] });Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.


Reply With Quote