This question is locked. New answers and comments are not allowed.
I need to hide the contents of a column and its title in Telerik grid mvc3, so that I can access them later.
I know two functions: Hiden() and visible() the code is:
foreach (var attr in grid.Attr)
.Columns(columns =>
{
columns.Bound(attr.key)
.Width(attr.width)
.Visible(attr.isVisible);
})
or
foreach (var attr in grid.Attr)
.Columns(columns =>
{
columns.Bound(attr.key)
.Width(attr.width)
.Hidden(!attr.isVisible);
})
But Both of not helping me:
On "visible()" it hides my content and title but can not access them.
On "Hidden()" I can access the data but it only hides the content and not the title.
please help me, I've been trying for two days..
Thank you