This question is locked. New answers and comments are not allowed.
Hello the Telerik Team,
I'm having a difficulty to understand a perticular behavior in a Gridview.
I'm filling a Column with several rows, that include one or several Checkboxes.
I need to use the WrapPanel property to display this in a dashboard.
Fact is, when I have several checkboxes in a row in a line (see my screenshot capture to understand; watch the Coding profile column), I can't select or deselect either of them if the cell is been wrapped.
If the cell doesn't need to be wrapped (see the cell with just two checkboxes in my screenshot) everything works allright.
Is that a bug ? Am I missing something ?
here is my code :
Regards and thanks in advance
Fred
I'm having a difficulty to understand a perticular behavior in a Gridview.
I'm filling a Column with several rows, that include one or several Checkboxes.
I need to use the WrapPanel property to display this in a dashboard.
Fact is, when I have several checkboxes in a row in a line (see my screenshot capture to understand; watch the Coding profile column), I can't select or deselect either of them if the cell is been wrapped.
If the cell doesn't need to be wrapped (see the cell with just two checkboxes in my screenshot) everything works allright.
Is that a bug ? Am I missing something ?
here is my code :
<StormGridView:StormGridViewColumn Header="Coding Profil" DataMemberBinding="{Binding}" Width="*"> <StormGridView:StormGridViewColumn.CellEditTemplate> <DataTemplate> <Grid> <ListBox ItemsSource="{Binding Path=P59_MEDIA}" ScrollViewer.VerticalScrollBarVisibility="Auto" ScrollViewer.HorizontalScrollBarVisibility="Disabled" Margin="5" Theme:StyleManager.Style="ListBoxWrapPanel_Style"> <ListBox.ItemsPanel> <ItemsPanelTemplate> <StormContainers:WrapPanel /> </ItemsPanelTemplate> </ListBox.ItemsPanel> <ListBox.ItemTemplate> <DataTemplate> <CheckBox Theme:StyleManager.Style="" IsChecked="{Binding Path=P58_IS_SELECTED, Mode=TwoWay}" Margin="8 0 0 0" Content="{Binding Path=P56_NAME_CODING_PROFIL}"></CheckBox> </DataTemplate> </ListBox.ItemTemplate> </ListBox> <ListBox ItemsSource="{Binding Path=P64_IMAGE}" ScrollViewer.VerticalScrollBarVisibility="Auto" ScrollViewer.HorizontalScrollBarVisibility="Disabled" Margin="5" Theme:StyleManager.Style="ListBoxWrapPanel_Style"> <ListBox.ItemsPanel> <ItemsPanelTemplate> <StormContainers:WrapPanel /> </ItemsPanelTemplate> </ListBox.ItemsPanel> <ListBox.ItemTemplate> <DataTemplate> <CheckBox Theme:StyleManager.Style="" IsChecked="{Binding Path=P63_IS_SELECTED, Mode=TwoWay}" Margin="8 0 0 0" Content="{Binding Path=P61_NAME_CODING_PROFIL}"></CheckBox> </DataTemplate> </ListBox.ItemTemplate> </ListBox> </Grid> </DataTemplate> </StormGridView:StormGridViewColumn.CellEditTemplate> </StormGridView:StormGridViewColumn> Regards and thanks in advance
Fred