-
19 Jul 2010 8:41 AM #1
[FIXED127] List/NestedList disabled/setDisabled not working
[FIXED127] List/NestedList disabled/setDisabled not working
Setting the disabled property or using setDisabled(true) seems to have no affect on lists and nested lists.
-
6 Sep 2010 12:15 PM #2
Thanks for reporting this bug. Disabling a List/NestedList will be fixed in the next build (after 0.94).
Aaron Conran
@aconran
Sencha Architect Development Team
-
9 Sep 2010 1:40 PM #3
Fixed in 0.95.
Aaron Conran
@aconran
Sencha Architect Development Team
-
20 Jul 2011 8:08 AM #4
I still seem to be having this issue in 1.1.0. I can disable the panel that contains the list. I can also hide the list. But I cannot disable the list itself. See comments in code...
Code:myApp.views.PResultsList = Ext.extend(Ext.Panel, { dockedItems: [{ id: 'search', xtype: 'toolbar', items: { xtype: 'searchfield', placeHolder: 'Search', name: 'searchfield', listeners: { focus: function() { // This works, so I know I'm getting the right component. console.log( myApp.views.pList.getComponent('pResultsList').getComponent('resultsList')); // This works, so I know the component is responding to available commands. myApp.views.pList.getComponent('pResultsList').getComponent('resultsList').hide(); // However, this does not work... // myApp.views.pList.getComponent('pResultsList').getComponent('resultsList').disable(); // Neither does this... // myApp.views.pList.getComponent('pResultsList').getComponent('resultsList').setDisabled(true); } } } }], initComponent: function() { coupoza.stores.products.load(); this.items = [ id: 'resultsList', xtype: 'list', // . // . // . ]; coupoza.views.ProductResultsList.superclass.initComponent.apply(this, arguments); } }); //Needed to register this view as an xtype Ext.reg('pResultsList', myApp.views.PResultsList);
-
15 Sep 2011 3:41 PM #5
I too am having this problem in 1.1.
How can I disable the list?
I've tried .setDisabled(true) and .disable(), but it doesn't work
-
23 Sep 2011 2:15 PM #6
Running into the same issue here as well. Any updates would be welcome as the bug is marked as fixed.
Thanks - ATM
-
27 Feb 2012 5:17 AM #7
I can verify that this is still an issue in 1.1.x. Anyone bother to give an update?
Thank you for reporting this bug. We will make it our priority to review this report.
Similar Threads
-
[CLOSED-199] NestedList Defaults not working
By kevchuey in forum Sencha Touch 1.x: BugsReplies: 3Last Post: 6 Sep 2010, 12:12 PM -
List design breaks inside nestedlist.
By blessan in forum Sencha Touch 1.x: DiscussionReplies: 1Last Post: 25 Aug 2010, 9:31 PM -
ETA on NestedList inheriting from List
By meyerovb in forum Sencha Touch 1.x: DiscussionReplies: 1Last Post: 10 Aug 2010, 3:43 PM -
Numberfield not working as nestedList item in v0.93
By blessan in forum Sencha Touch 1.x: DiscussionReplies: 2Last Post: 4 Aug 2010, 7:45 AM -
NestedList onClick than fullscreen panel instead of list item
By Mebel in forum Sencha Touch 1.x: DiscussionReplies: 5Last Post: 2 Jul 2010, 12:59 AM


Reply With Quote