Dear Admin,
I want to edit the content of radgridview cell programmatically.
I am usign below code .Would you please help me with the same. While debugging , the currentcell.Value is updated but it does not show up in Radgridview
var dataControl = (GridViewDataControl)sender;
currentCell = dataControl.CurrentCell as GridViewCell;
if (currentCell != null)
{
currentCell.Value = s;// s is the string
}
//Radgrid view xaml
<
telerik:RadGridView.Columns
>
<
telerik:GridViewDataColumn
Header
=
"Expectation Set"
DataMemberBinding
=
"{Binding ExpectationSet.Name, Mode=TwoWay}"
/>
</
telerik:RadGridView.Columns
>