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

Grouping Template/Link Column

1 Answer 76 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Santosh Pradhan
Top achievements
Rank 1
Santosh Pradhan asked on 03 Aug 2009, 08:18 PM
I have a grid with the link column. When allow grouping and drag the link column it gives me error - is there way to exclude a column from grouping? I wan to disable the link column, so that use should not be able to group on the link column.

Thanks,
Santosh

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 04 Aug 2009, 05:48 AM
Hello Santosh,

You can set the Groupable property of the GridButtonColumn/GridTemplateColumn to false to prevent the user from grouping these columns:
<Columns>                     
    <telerik:GridButtonColumn ButtonType="LinkButton" Groupable="false" Text="linkButton" UniqueName="ButtonColumn"
    </telerik:GridButtonColumn> 
    <telerik:GridTemplateColumn Groupable="false" HeaderText="TemplateColumn" UniqueName="TemplateColumn"
        <ItemTemplate> 
            ..... 
        </ItemTemplate> 
    </telerik:GridTemplateColumn> 
</Columns>  

Thanks
Princy.
Tags
Grid
Asked by
Santosh Pradhan
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or