Hi,
I got a problem when I am trying to hide a column from client side. If I got a column object,
column.set_hidden(
true); does not work in IE 9. It works in Google Chrome.
The exception message is: Microsoft JScript runtime error: Invalid argument.
I am using Version=10.3.20103.2088. And my operation system is win7, 64 bits.
Thanks a lot.
Xiaosu
Hi xiaosu,
I checked this out with our latest internal builds and ran into the same problem. I have submitted an internal bug, # 69834, for this issue. If you contact Developer Support, you can be alerted when this bug is fixed. Thanks for bringing this to our attention.
regards,David Young
Until this fix is released in the next Service release, there is a work around you can try. If you set Hidden="false" on the columns at aspx, they will already have a hidden css, so we won't have to create it and cause this exception. Give this a try.
thanks,Dave
Hi Dave,
Thank you for your reply. I create columns in code, and set column.Hidden = false. It works again.
Thanks.