This question is locked. New answers and comments are not allowed.
Hi,
How to call RadGridView_RowLoaded event inside RadGridView1_DataLoading
i am using below code , but this is bot working
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);
}
