I have created a simple combo box with a few values in it. I am having data brought back to populate the combo box. The combo box is disabled, but when they click an 'edit' button, the combo box becomes editable and the user can select the option that they want.
However, when they click edit, the combo box is already populated with one of the values and when they click the drop down button they can only see that value that is already entered. Is there a way that I can add a listener or something so when they click on the drop down all of the values show?
Here is my combo box field code:
{
xtype:'combo',
store: ['Open','Closed', 'N/A'],
fieldLabel: 'Status',
id: 'status',
readOnly: true,
disabled: true,
width: 105
}