Hi Telerik Team
I use version Q2 2009.
I use following code to add progress bar as a column
" if (e.CellElement.ColumnInfo is GridViewDataColumn && ((GridViewDataColumn)e.CellElement.ColumnInfo).FieldName == "Progress")
{
if (e.CellElement.Children.Count > 0)//the progress bar is already added to cell
return;
RadProgressBarElement element = new RadProgressBarElement();
element.Minimum = 0;
element.Maximum = 100;
element.Value1 = 70;
element.Value2 = 90;
e.CellElement.Children.Add(element);
}"
Everything seems to be OK, but when windows bar is scrolled down and scrolled up, the sequence of progress bar is changed.
I find that someone said it is because some cells are reused to make radgridview be quick.
Can you give me a solution to make progress bar column didn't change when windows bar is scolled down and up.
Thank you very much.
I use version Q2 2009.
I use following code to add progress bar as a column
" if (e.CellElement.ColumnInfo is GridViewDataColumn && ((GridViewDataColumn)e.CellElement.ColumnInfo).FieldName == "Progress")
{
if (e.CellElement.Children.Count > 0)//the progress bar is already added to cell
return;
RadProgressBarElement element = new RadProgressBarElement();
element.Minimum = 0;
element.Maximum = 100;
element.Value1 = 70;
element.Value2 = 90;
e.CellElement.Children.Add(element);
}"
Everything seems to be OK, but when windows bar is scrolled down and scrolled up, the sequence of progress bar is changed.
I find that someone said it is because some cells are reused to make radgridview be quick.
Can you give me a solution to make progress bar column didn't change when windows bar is scolled down and up.
Thank you very much.