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
1059
Force the CellListSelect event to fire
posted

Hi all,

Can anyone tell me how to force the CellListSelect event to fire programmatically?

Thanks

Joe

Parents
  • 469350
    Offline posted

    Hi Joe,

    Your question does not make a lot of sense.

    An event handler is just a method. So if you want to call that method, you can do it the same way you call any other method. But that's not really making the event fire, it's just calling a method.

    There is no way to make this event fire in code, other than to inherit a class from the grid and then call the OnCellListSelect event.

    I doubt that will do what you want, though, and in any case, firing an event or even calling the event handler method is generally considered to be bad practice.

    What, exactly, are you trying to do?

Reply Children