This question is locked. New answers and comments are not allowed.
Hi
I have one RadGridView and Bind 32 rows.
<grid:GridViewColumn >
<grid:GridViewColumn.Header>
<TextBlock x:Name=" txtRead
" telerikControls:LocalizationManager.ResourceKey="Write" MouseLeftButtonUp=" txtRead
_MouseLeftButtonUp" Style="{StaticResource UnderlineStyle}"></TextBlock>
</grid:GridViewColumn.Header>
<grid:GridViewColumn.CellTemplate>
<DataTemplate>
<my:CustomCheckbox x:Name="tglBuswrite" CheckStatus="{Binding write}" IsThreeState="True" CheckStatusChanged="CustomCheckbox_CheckStatusChanged"></my:CustomCheckbox>
</DataTemplate>
</grid:GridViewColumn.CellTemplate>
</grid:GridViewColumn>
code behind code:
private void txtRead_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
{
IList<GridViewRow> list = Radgvcustom.ChildrenOfType<GridViewRow>();
}
Here I am getting only visible rows count
Please if u have any solution help me
Thanks
Ashwini..
I have one RadGridView and Bind 32 rows.
<grid:GridViewColumn >
<grid:GridViewColumn.Header>
<TextBlock x:Name=" txtRead
" telerikControls:LocalizationManager.ResourceKey="Write" MouseLeftButtonUp=" txtRead
_MouseLeftButtonUp" Style="{StaticResource UnderlineStyle}"></TextBlock>
</grid:GridViewColumn.Header>
<grid:GridViewColumn.CellTemplate>
<DataTemplate>
<my:CustomCheckbox x:Name="tglBuswrite" CheckStatus="{Binding write}" IsThreeState="True" CheckStatusChanged="CustomCheckbox_CheckStatusChanged"></my:CustomCheckbox>
</DataTemplate>
</grid:GridViewColumn.CellTemplate>
</grid:GridViewColumn>
code behind code:
private void txtRead_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
{
IList<GridViewRow> list = Radgvcustom.ChildrenOfType<GridViewRow>();
}
Here I am getting only visible rows count
Please if u have any solution help me
Thanks
Ashwini..