Your checkboxcombo is working great but when I try to manually type within the combo text area, and then blur away, the value I entered does not stay, but the previous checkbox selections overwrite it.
In a normal combobox, when I edit and blur away, the edited value stays put, and is not overwritten. Any ideas on how to accomplish this?
Code:
me.propertGrid.customEditors[field] = new Ext.grid.GridEditor(new Ext.ux.form.CheckboxCombo({
displayField: 'field',
valueField: 'field',
mode: 'local',
editable: true,
selectOnFocus: true,
forceSelection: false,
clicksToEdit: 1,
store: new arraystore...,
value: value
})