If I have a column like this:
I noticed a massive problem with performance. I use manual binding and I've encountered this problem many times before. In my case I had 171 records and by looking at the trace I could see the Page.EndLoad was taking 3.2 seconds. Removing this column would automatically result in the number falling to 0.09.
Is Telerik aware of this issue?
I easily overcome this issue by adding a blank record to the datatable used as a datasource. I though I'd post this to help other users.
<telerik:GridBoundColumn DataField="Blank" HeaderText=""></telerik:GridBoundColumn>I noticed a massive problem with performance. I use manual binding and I've encountered this problem many times before. In my case I had 171 records and by looking at the trace I could see the Page.EndLoad was taking 3.2 seconds. Removing this column would automatically result in the number falling to 0.09.
Is Telerik aware of this issue?
I easily overcome this issue by adding a blank record to the datatable used as a datasource. I though I'd post this to help other users.