This is a migrated thread and some comments may be shown as answers.

Way to hide row

3 Answers 134 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Sieg
Top achievements
Rank 1
Sieg asked on 07 Apr 2010, 02:24 PM
Is there an easy way using the GridView to hide rows?

I have a GridView that has rows with possible components and I must add or remove them in a list. Like in the picture

Thanks,
Sieg

3 Answers, 1 is accepted

Sort by
0
Vlad
Telerik team
answered on 08 Apr 2010, 12:47 PM
Hello Sieg,

Why not modify the collections bound to this controls similar to this demo?

Greetings,
Vlad
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Sieg
Top achievements
Rank 1
answered on 08 Apr 2010, 03:50 PM
Thanks Vlad,
I'll try that.

I made something faster. I filtered the rows and changed a cell when it is selected.

sieg
0
kity
Top achievements
Rank 2
answered on 07 Aug 2014, 12:50 PM
Make new boolean property in your binding collection
bool: Visible{ge;set;}

Place in gridview and done.

​<telerik:RadGridView.FilterDescriptors>
<data:CompositeFilterDescriptor LogicalOperator="Or">
<data:CompositeFilterDescriptor.FilterDescriptors>
<data:FilterDescriptor Member="Visible" Operator="IsEqualTo" Value="True" />
</data:CompositeFilterDescriptor.FilterDescriptors>
</data:CompositeFilterDescriptor>
</telerik:RadGridView.FilterDescriptors>
Tags
GridView
Asked by
Sieg
Top achievements
Rank 1
Answers by
Vlad
Telerik team
Sieg
Top achievements
Rank 1
kity
Top achievements
Rank 2
Share this question
or