This question is locked. New answers and comments are not allowed.
Hello Telerik Team,
I have a RadGridview in my Silverlight application. Also I have a column having combo box as cell template. Here is the XAML code snippet for that.
I want the row index of the check box which is checked by the user. Please can anyone suggest me the solution to achieve this?
Many Thanks,
Kaustubh.
I have a RadGridview in my Silverlight application. Also I have a column having combo box as cell template. Here is the XAML code snippet for that.
<grid:RadGridView x:Name="gridview" Grid.Row="3" Grid.Column="0" Grid.ColumnSpan="4" RowIndicatorVisibility="Collapsed" IsReadOnly="True" AutoGenerateColumns="False" CanUserFreezeColumns="False" CanUserResizeColumns="False" Width="700"> <grid:RadGridView.Columns> <grid:GridViewDataColumn x:Name="measuresCol" Header="#" HeaderTextAlignment="Center" Width="150" TextAlignment="Center" IsSortable="False"/> <grid:GridViewDataColumn x:Name="cbG1" Header="Header1" IsSortable="False" TextAlignment="Center" HeaderTextAlignment="Center"> <grid:GridViewDataColumn.CellTemplate> <DataTemplate> <CheckBox IsChecked="false" /> </DataTemplate> </grid:GridViewDataColumn.CellTemplate> </grid:GridViewDataColumn> </grid:RadGridView.Columns> </grid:RadGridView>I want the row index of the check box which is checked by the user. Please can anyone suggest me the solution to achieve this?
Many Thanks,
Kaustubh.