This is a migrated thread and some comments may be shown as answers.

Not answered how to use RadWaitingBarElement in RadGridView

1 Answer 97 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Tomas Novak
Top achievements
Rank 1
Tomas Novak asked on 31 May 2010, 05:21 PM

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);      
}     
   
 

 

1 Answer, 1 is accepted

Sort by
0
Nikolay
Telerik team
answered on 04 Jun 2010, 10:21 AM
Hello Tomas Novak,

You should be able to find the answer to your question in the following forum thread:
http://www.telerik.com/community/forums/winforms/gridview/how-to-use-radwaitingbarelement-in-radgridview.aspx

We noticed an issue with the reply of Alexander and we addressed the issue accordingly. Please refer to the link given above and feel free to contact us if you have additional questions.

Sincerely yours,
Nikolay
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
GridView
Asked by
Tomas Novak
Top achievements
Rank 1
Answers by
Nikolay
Telerik team
Share this question
or