-
27 Jun 2012 10:39 AM #1
Bug with disabling a fieldset with a Ext.field.Select inside
Bug with disabling a fieldset with a Ext.field.Select inside
REQUIRED INFORMATION
Touch version tested:- Sencha Touch 2.0.1
- Safari 4
- When you disable a fieldset, it seems to disable all fields inside so they can't be changed. If a selectfield is included in the fieldset it will grey out the text, but you can stick click it and the picker will appear and the value can be changed. If you disable the selectfield directly it will correctly not allow the picker to be brought up.
- Create a formpanel with a fieldset that contains a selectfield and a textbox
- Call disable() or apply the disabled: true configuration to the fieldset
- When the app is run, the textbox field cannot be changed but the selectfield can be.
- The picker shouldn't appear if the fieldset it is contained in is disabled.
- The picker comes up and the value can be changed even when the fieldset is disabled.
Code:Ext.Viewport.setActiveItem( { xtype: 'formpanel', items: [ { xtype: 'fieldset', title: 'Personal', disabled: true, items: [ { xtype: 'textfield', name: 'FirstName', label: 'First Name' }, { xtype: 'selectfield', name: 'Country', label: 'Country', options: [{text: 'United Kingdom', value: 'UK'}, {text: 'United States', value: 'US'}, {text: 'Canada', value: 'CAN'}] } ] } ] });
-
27 Jun 2012 11:23 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,599
- Vote Rating
- 434
Thanks for the report.
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.
-
5 Jul 2012 1:50 PM #3
Fixed in the next release. Thanks.
Sencha Inc.
Robert Dougan - @rdougan
Sencha Touch 2 and Ext JS 4 Core Team Member, SASS/Theming Wizard.
Success! Looks like we've fixed this one. According to our records the fix was applied for
TOUCH-3052
in
2.0.


Reply With Quote