How to hide a column and make it visible only if it passes for certain conditions.
A column in the iggrid which should be hidden if the selected region is not north.
thanks I got the idea to hide the column from column-hiding-using-api.
Hi,
Could you explain in more detail what you mean by "certain conditions" ? What is your scenario? In general, you can always hide/unhide a column from the API by calling:
Example:
//Hide column with columnIndex 0
$(
".selector"
).igGridHiding(
"hideColumn"
, 0);
//Show column with columnIndex 0
"showColumn"