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

Refresh a stepwizard in radwizard

1 Answer 119 Views
Wizard
This is a migrated thread and some comments may be shown as answers.
bahar kashani
Top achievements
Rank 1
bahar kashani asked on 02 May 2016, 03:57 PM

Hello

I have a button in one step of radwizard , and I have a radgrid in another step of radwizard.I want to refresh grid when Clicking button. How can I do this?

 

 

1 Answer, 1 is accepted

Sort by
0
Nencho
Telerik team
answered on 05 May 2016, 10:55 AM
Hello ,

You can use the event handler of the Button Click event and manually update the RadGrid. Please consider the following implementation:

protected void btnUpdate_Click(object sender, EventArgs e)
   {
       RadGrid1.Rebind();
   }

Regards,
Nencho
Telerik
Tags
Wizard
Asked by
bahar kashani
Top achievements
Rank 1
Answers by
Nencho
Telerik team
Share this question
or