View Poll Results: Should this functionality be implemented?
- Voters
- 1. You may not vote on this poll
-
TOTALLY
1 100.00% -
NOPE
0 0%
Threaded View
-
23 Oct 2012 7:15 AM #1
Answered: How to disable an option in Ext.field.Select?
Answered: How to disable an option in Ext.field.Select?
Hi there,
I have the following construct to create a select:
where I want to disable some options to show the user that they are there, but are not selectable.Code:Ext.create('Ext.field.Select', { renderTo: Ext.get("displaySizes"), xtype: 'selectfield', label: item.label, options: [ { disabled: true //<- does not work text: "36" value: "1235" }, { disabled: false text: "40" value: "1234" } ] }
Just as it would work using html:
Anyone able to help me out?HTML Code:<select> <option value="1235" disabled="disabled">36</option> <option value="1234">40</option> </select>
Thx
-
Best Answer Posted by mitchellsimoens
You would need to add some select listeners to the list or slots with order before and return false. You would also have to style an option that is disabled.


Reply With Quote