This question is locked. New answers and comments are not allowed.
Hi,
I'm working on a silverlight 4 project. In that one of my screen has rad gridview along with some other controls. My radgridview has a checkbox in a cell template.
<telerik:GridViewColumn >
<telerik:GridViewColumn.CellTemplate>
<DataTemplate>
<CheckBox x:Name="xyz" IsChecked="{Binding Path=IsSelected,Mode=TwoWay}" />
</DataTemplate>
</telerik:GridViewColumn.CellTemplate>
</telerik:GridViewColumn>
Whenever any event fires in my page the checkboxes in the radgrid gets reset(gets unchecked). One of my scenario is, I have a dropdown in my page with selectionchanged event. If that event fires, the checksbox in the grid gets reset.
Is there anything I'm missing.
Thanks in advance.
I'm working on a silverlight 4 project. In that one of my screen has rad gridview along with some other controls. My radgridview has a checkbox in a cell template.
<telerik:GridViewColumn >
<telerik:GridViewColumn.CellTemplate>
<DataTemplate>
<CheckBox x:Name="xyz" IsChecked="{Binding Path=IsSelected,Mode=TwoWay}" />
</DataTemplate>
</telerik:GridViewColumn.CellTemplate>
</telerik:GridViewColumn>
Whenever any event fires in my page the checkboxes in the radgrid gets reset(gets unchecked). One of my scenario is, I have a dropdown in my page with selectionchanged event. If that event fires, the checksbox in the grid gets reset.
Is there anything I'm missing.
Thanks in advance.