Unplanned
Last Updated: 03 Jan 2017 16:26 by ADMIN
ADMIN
Maya
Created on: 23 Jun 2016 11:10
Category: GridView
Type: Bug Report
0
GridView: PrepareCell and CreateCellElement methods are called for the current cell on scrolling although it is marked as not for recycle
Workaround: reused the cell element like this:
CreateCellElement(Telerik.Windows.Controls.GridView.GridViewCell cell, object dataItem)
{
    var button = cell.Content as Button;
    . . .
 
    return button;
}
0 comments