Hi Experts, I have one user control in which I have registered some events like KeyDown, OnLeave etc. If I use my user control on normal win form then it is working fine ( events are firing properly) but if I use it in ultra grid as editor component then events which are registered in user control are not firings. Is there any way to fire those events?
Thanks & Regards,Ganesh
The control's events are not supposed to fire for the editor provided to the grid, because the control is not being manipulated by the user, the cell is. I can't think of a reason why you would want the control's events to fire when the user is in edit mode on a cell in the grid, but it is possible that you just have to refactor the code in the control's event handlers such that you can execute the same code in response to cell events like CellChange and AfterExitEditMode.
Actually My user control contains UltraText editor with some editor buttons , based on text change of text editor I am doing some validation. If I use my usercontrol in normal form then those events of ultra text editors are firing but if I use it as Editor Component then its not firing. Is there anyway to fire that?
--Thanks,Ganesh