Hi
I have a really annoying problem which I cant seem to solve, I have an Ultrawebgrid binded to a SQL Select Statement with some some cells containing webcombos which loads fine with all the data but when i click on any cell in my grid I get the Following error "There is a problem with the Event Handler 'AfterSelectChangeHandler'. Please check the method name`s spelling". The Grid control has been designed a user control and and I am just dropping the user control into a blank page to test it for just now does anyone have any ideas how i fix or remove this problem.
thanks in advance.
Leigh
Hello Leigh,
From what I can tell, the grid assumes that you have a Client Side Event 'AfterSelectChangeHandler' set for the grid, but does not find it defined in the page scrope, hence the error message you are getting.
Do you need this event? Can you please double check if you are assigning the event somewhere in your ASPX page or code-behind (a text search for the word AfterSelectChangeHandler in the whole project can be a good idea).
If this is not the case, can you please open a support ticket with a small subset of your project reproducing the issue and send it to our Developer Support channels available here:
http://ko.infragistics.com/Support/default.aspx#Overview
Thanks a lot.
this is exactly what has happened the project had several AfterSelectChangeHandler events so just had to place one inside the page with a blank stub so that it didnt try and use/reference the other AfterselectChangeHandler functions.
thanks
Great, glad I was able to help. An alternative solution instead of creating the blank stub javascript function would be to just delete the AfterSelectChangeHandlers from your grid definitions if you are not using them.
Still, anything that works better for you is fine.
Thanks for sharing.