We usually write this if we have to hide a column in kendo grid.
{ field: "Name", hidden: true },
but I want to use condition in the hidden. The true or false would come from database in another field i.e HideShow. Is there any option if I can set this.
{ field: "Name", hidden: HideShow},
HideShow = true/false will be set while getting records from database.
I have tried hide and showing by jquery also but it is distorting the grid layout while showing. Hide is working fine.