Search code examples
c#asp.net-mvcjqgridshow-hide

How to hide a jqgrid column dynamically


I am implementing jqgrid in my asp.net MVC web application.

In my grid i have two columns edit and delete. The delete should be visible only if the user is logged as admin .

How can we dynamically hide.show columns in jqgrid. I am having a session variable to check whether the logged in user is Admin or not.

I am accessing that variable in javascript. but, not sure how can i hide/show column in jqgrid

Please help..


Solution

  • This one worked:

    $("#list").hideCol("ColumnName")