I dont know if this may help, but why dont you use the keyup event to detect the delete key on the combobox and call the 'unselect' event acordingly.
Code:
$('#cc').combobox({
inputEvents: $.extend({}, $.fn.combo.defaults.inputEvents, {
keyup:function(e){
if(e.keyCode == 46){
var value = $('#cc').combobox('getText'); // the item value to be selected
$('#cc').combobox('unselect', value);
}
}
})
})
inputEvents: $.extend({}, $.fn.combo.defaults.inputEvents, {
keyup:function(e){
if(e.keyCode == 46){
var value = $('#cc').combobox('getText'); // the item value to be selected
$('#cc').combobox('unselect', value);
}
}
})
})
regards

