I'm using a combobox as a drop-in itemeditor in a datagrid. Whenever
they make a selection, I don't like how the user has to click outside
or tab-out to get the renderer to replace the editor and dispatch the
itemEditEnd event.

I'd prefer that once they make a selection in the combobox, it closes
up, goes away, label renderer reappears with new value, and
itemEditEnd event dispatches.

I've noticed taht making a selection in the combobox does not dispatch
any of the itemEdit events, so I figure I need to dispatch a change
event from the combo editor. And then I'm hoping I can have a change
listener programatically update the cell, destory the editor, and
dispatch the itemEditEnd event.

However, I can't find anything that can listen to an event broadcasted
from an itemEditor. I tried listening on the datagrid, the datagrid
column, and the component holding the datagrid.

is this even possible? Or is there a different approach to solving this?

Reply via email to