I followed the samples of show/hide column using client event, however I get js runtime error on the line "var a=this.get_columns()[b].Display=a" that says "get_column()[...] is null or not an object", i am pretty sure that I passed the right index. Any ideas?
I guess the problem in your code "var a=this.get_columns()[b].Display=a" is the "this" pointer which is not actually radgrid client object. You could use "sender" object if you are trying the code in grid event.
I did use $find() to get RadGrid client id, but the error is still there, so i tried to do it in code behind to get around with it and it worked. Thank you anyway!