forms - MouseOver item combobox extjs 4 -
i'm trying sort of temporary form autocomplete on mouse on of combobox item. combobox has remote store , on item hover other fields of form compiled other information combo store while mouse on item. there isn't mouseover event comboboxes items how can it?
you can attach mouseover listener div element wrapping combobox so:
mycombo.bodyel.on('mouseover', function(e, t, eopts) { //do });
Comments
Post a Comment