Hi,
I am using igGrid on a Asp.net MVC3 project, I found that if I hide columns in igGrid, the column chooser still there, how to hide the column chooser?
Hello Jason,
Thank you for your reply.
In addition to the specific article provided by Tsvetelina above, you can also find information regarding our jQuery control's options and methods in the API documentation at:
http://help.infragistics.com/jQuery/2012.1/ui.iggridhiding
Please feel free to contact me if you have any questions.
Hello Tsvetelina,
Thanks for your answer, it works. By the way, I would like to know, where can I find the property definition, usage, and example? For example, the AllowHiding for Grid control.
I recommend you reading the article below
http://help.infragistics.com/NetAdvantage/jQuery/2012.1?page=igGrid_Configure_Column_Hiding.html
and especially the example : Hiding a Column Completely
You should set AllowHiding option of the column setting to be false:
settings.ColumnSetting().ColumnKey("Name").Hidden(true).AllowHiding(false);
"Name"
true
false
Please let me know if you need further assistance.