Hi,
i have an asp.net application using a radgrid. I want to froze some columns.Everything works fine, but if I set UseStaticHeaders="true" and FrozenColumnsCount="4" the performance of our application will break down extremly.
Our data volumn is as follows: approximately 330 rows with each 55 columns. We build our grid programmatically in our code behind file.
Could you please give us an answer if it is wise to use FrozeColumns with such an data volumn and szenario? If so, please provide some performance hints.
Here the code of my aspx page:
<
telerik:RadGrid
ID
=
"GridProjectProposals"
runat
=
"server"
AutoGenerateColumns
=
"false"
AllowSorting
=
"true"
Height
=
"650px"
Width
=
"1200px"
GridLines
=
"None"
Skin
=
"Windows7"
AllowMultiRowSelection
=
"True"
AllowFilteringByColumn
=
"True"
>
<
ClientSettings
EnableRowHoverStyle
=
"true"
>
<
Selecting
AllowRowSelect
=
"true"
EnableDragToSelectRows
=
"true"
/>
<
Scrolling
AllowScroll
=
"true"
EnableVirtualScrollPaging
=
"true"
SaveScrollPosition
=
"true"
UseStaticHeaders
=
"true"
FrozenColumnsCount
=
"4"
/>
</
ClientSettings
>
<
MasterTableView
GridLines
=
"None"
AllowNaturalSort
=
"true"
EditMode
=
"InPlace"
AllowMultiColumnSorting
=
"true"
>
<
Columns
>
</
Columns
>
<
HeaderStyle
Width
=
"180px"
/>
</
MasterTableView
>
</
telerik:RadGrid
>
Looking forward to get some ideas and your input.
Thanks ...