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

[Solved] How to call RadGridView_RowLoaded event ?

3 Answers 226 Views
GridView
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
kannan
Top achievements
Rank 1
kannan asked on 04 Oct 2010, 12:29 PM
Hi,
  How to call RadGridView_RowLoaded event  inside  RadGridView1_DataLoading

i am using below code , but this is bot working

 

 

private void RadGridView_DataLoading(object sender, GridViewDataLoadingEventArgs e)

 

{

  RadGridView.RowLoaded +=

 

new EventHandler<RowLoadedEventArgs>(RadGridView_RowLoaded);

 

}

3 Answers, 1 is accepted

Sort by
0
Vlad
Telerik team
answered on 04 Oct 2010, 12:38 PM
Hello,

 You cannot call RowLoaded - the grid will call the event when the row is loaded. 

Best wishes,
Vlad
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
0
kannan
Top achievements
Rank 1
answered on 04 Oct 2010, 12:44 PM
Hi,
Thanks.. But i have reload the RadGridView_RowLoaded when RadGridView_DataLoading.

Thanks In Advance,
Kannan.s

 

0
Vlad
Telerik team
answered on 04 Oct 2010, 12:46 PM
Hi,

As I said in my previous reply the grid call the event when the row is loaded - you do not need to re-attach the event handler. 

Sincerely yours,
Vlad
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
kannan
Top achievements
Rank 1
Answers by
Vlad
Telerik team
kannan
Top achievements
Rank 1
Share this question
or