Hello.
Please, could you give me an adwace how to use RadWaitingBarElement in RadGridView and run this element. I have try used it in cell_formating, but it do not work.
(it is trial Version: 2010.1 504 , C#, vs 2008 express)
Thank you for advice or source code.
void radGridView1_CellFormatting(object sender, CellFormattingEventArgs e) |
{ |
if (e.CellElement.RowIndex < 0) return; |
if (((GridViewDataColumn)e.CellElement.ColumnInfo).FieldName == "test") |
{ |
RadWaitingBarElement element = new RadWaitingBarElement(); |
element.StretchHorizontally = true; |
element.StretchVertically = true; |
element.waitingTimer = this.timer1;//timer is running |
e.CellElement.Children.Add(element); |
} |