Hallo.
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 element do not run.
(it is trial Version: 2010.1 504 , C#, vs 2008 )
Thank you for advice or source code.
Tomas
| 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); |
| } |