Hello,
I have a RadGrid in my application. Whenever I click Clear Changes which is not associated with radGrid and if a row in the RadGrid is in inplace edit mode, the values should not be effected i.e, the values should remain same. Find below for the code.
protected void btnClearChanges_Click(object sender, EventArgs e)
{
_presenter.LoadDefaultValues();
rgvInternetIdentifiers.Rebind();
btnContinue.Enabled = true;
}
The above code is loading default values and inplace edit row is changing to default values. Can any one please put some insight?
Thanks,
Sandeep
I have a RadGrid in my application. Whenever I click Clear Changes which is not associated with radGrid and if a row in the RadGrid is in inplace edit mode, the values should not be effected i.e, the values should remain same. Find below for the code.
protected void btnClearChanges_Click(object sender, EventArgs e)
{
_presenter.LoadDefaultValues();
rgvInternetIdentifiers.Rebind();
btnContinue.Enabled = true;
}
The above code is loading default values and inplace edit row is changing to default values. Can any one please put some insight?
Thanks,
Sandeep