Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
410
Ultragridcellproxy does not fire events
posted

I am trying to use a grid row edit template for the first time, and I am running into a problem with the ultragridcellproxy controls.  They do not appear to fire any events.  I am trying to modify values based on others in the template, but the text changed event is never firing.

 It seems that it would be pretty silly to have an event that doesn't fire, so I assume that either I need to do something special to enable events or it is a bug.  Does anyone know how to get these controls to fire events?

Parents
  • 37774
    posted

    An UltraGridCellProxy simply hosts the editor that the underlying cell would have used if you had put it into edit mode; you can think of this as basically taking the cell and putting it somewhere else.  As such, the events will be fired off of the grid itself and not off of the proxy, so you should still be able to use events like CellChange, AfterCellUpdated, etc.

    -Matt

Reply Children