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
380
trigger multiple functions on same event
posted

I've wrapped UltraWebGrid in my own class so I can add a new layer of fun.

In my base class I assign the grid's cellClick event as follows:

this.DisplayLayout.ClientSideEvents.AfterColumnSizeChangeHandler = "myWebGrid_AfterColumnSizeChangeHandler";

Now I'm using the grid and I want to wire the same event to another function.  I want the inherited function to fire first, then my local function.

I've read-up on many posts about javascripts addEventListener and attachEvent (depending on browser), but not sure how that applies in Infragistics.

Is this possible? If so, how?