3 Answers, 1 is accepted
0
Princy
Top achievements
Rank 2
answered on 29 May 2008, 07:09 AM
Hi,
Try setting the AllowFiltering property for the GridTemplateColumn to false.
APSX:
Thanks
Princy.
Try setting the AllowFiltering property for the GridTemplateColumn to false.
APSX:
<telerik:GridTemplateColumn UniqueName="Tempcol" AllowFiltering="false"> |
</telerik:GridTemplateColumn> |
Thanks
Princy.
0
puru
Top achievements
Rank 1
answered on 06 Oct 2008, 02:22 PM
Hi,
This is not working in my case.
Please suggest another method.
Thanks,
Puru
This is not working in my case.
Please suggest another method.
Thanks,
Puru
0
Shinu
Top achievements
Rank 2
answered on 07 Oct 2008, 03:23 AM
Hi Puru,
Try disabling the filtering for GridTemplateColumn in the PreRender event and see if it is working.
CS:
Thanks
Shinu.
Try disabling the filtering for GridTemplateColumn in the PreRender event and see if it is working.
CS:
protected void RadGrid2_PreRender(object sender, EventArgs e) |
{ |
foreach (GridColumn col in RadGrid2.MasterTableView.RenderColumns) |
{ |
if (col.ColumnType == "GridTemplateColumn") |
{ |
GridTemplateColumn tempcol = (GridTemplateColumn)col; |
tempcol.AllowFiltering = false; |
} |
} |
RadGrid2.Rebind(); |
} |
Thanks
Shinu.