Hello,
I have multiple radgrids on a page and i'm trying to freeze left 2 columns for each.
But it works only for the first grid on the page.
Sample code is given below:
First two grids have same number of rows. Second row would have two grids similar to first row but would have less rows.
Can you please help with a sample code?
I have multiple radgrids on a page and i'm trying to freeze left 2 columns for each.
But it works only for the first grid on the page.
Sample code is given below:
First two grids have same number of rows. Second row would have two grids similar to first row but would have less rows.
Can you please help with a sample code?
<
table
>
<
tr
>
<
td
style
=
"width: 590px"
>
<
asp:Panel
ID
=
"panelRateReport"
ScrollBars
=
"Horizontal"
Width
=
"99.8%"
runat
=
"server"
Height
=
"410"
>
<
telerik:RadGrid
runat
=
"server"
ID
=
"gridRate"
AutoGenerateColumns
=
"true"
Height
=
"99%"
Skin
=
"Hay"
GridLines
=
"Both"
OnPreRender
=
"gridRate_PreRender"
OnColumnCreated
=
"gridRate_ColumnCreated"
OnItemDataBound
=
"gridRate_ItemDataBound"
>
</
telerik:RadGrid
>
</
asp:Panel
>
</
td
>
<
td
style
=
"width: 20px"
>
</
td
>
<
td
>
<
asp:Panel
ID
=
"panel1"
runat
=
"server"
ScrollBars
=
"Horizontal"
Width
=
"99.8%"
Height
=
"410"
>
<
telerik:RadGrid
runat
=
"server"
ID
=
"gridRateAbove10k"
AutoGenerateColumns
=
"true"
Height
=
"99%"
GridLines
=
"Both"
Skin
=
"Hay"
OnPreRender
=
"gridRate_PreRender"
OnColumnCreated
=
"gridRate_ColumnCreated"
OnItemDataBound
=
"gridRate_ItemDataBound"
>
</
telerik:RadGrid
>
</
asp:Panel
>
</
td
>
</
tr
>
<
tr
>
....
</
tr
>
<
table
>