views:

58

answers:

1

My custom item editor opens a titlewindow (too much stuff to show in an inline editor) which obviously steal the focus, so I get a itemeditend event and the datagrid destroy the editor at the wrong (for me) time. I think to have to keep the itemeditor alive until the titlewindow job is done, but how? DataGridEvent reason is "other" and livedocs said preventDefault() can't help. Any idea?

A: 

set the popupwindow.owner=this (the renderer) and it will not be destroyed....that took me 2 hours to find!

Chuck