I have a RadWizard control in my RadGrid FormTemplate. I have controls in the Wizard steps bound to the grid data source.
How can I get the Wizard Finish button to save changes in the form?
Normally I would assign a CommandName "Update" to a button in the FormTemplate but here I can't find a way of doing that on the Finish button in the wizard.
Another way, I tried to handle the Finish button clicked event but it doesn't seem to work:
protected void wizPlan_FinishButtonClick(object sender, WizardEventArgs e)
{
this.grPlans.MasterTableView.PerformUpdate((sender as RadWizard).NamingContainer as GridEditFormItem);
}