Unplanned
Last Updated: 20 May 2020 07:57 by ADMIN
When the SelectionMode is set to Extended and we try to select items that are not currently visible using Shift + press only the Rows that are currently visible are selected.
Declined
Last Updated: 18 Nov 2019 17:55 by ADMIN

In the RowDetails for a grid item I have a data template column as below.  If I check the checkbox on the first rowdetails item, every first rowdetails item in the entire grid has the check box checked.  Even if the SentToAcctFlag value for that item is False.  If I check one item in the row details I want only that one item to be checked.  Even refreshing the grid data using ItemsSource does not remove the first rowdetails item checked value for each parent record.

 

                                        <telerikGrid:DataGridTemplateColumn Header="To Acct" HeaderStyle="{StaticResource WorkOrderGridColHeader}" SizeMode="Fixed" Width="100"
                                                        CanUserEdit="True" CanUserSort="False" CanUserFilter="False" CanUserResize="False"  >
                                            <telerikGrid:DataGridTemplateColumn.CellContentTemplate >
                                                <DataTemplate>
                                                    <CheckBox IsChecked="{Binding SentToAcctFlag}" Margin="12,1,0,0" IsEnabled="True" Checked="SentToAcct_Checked" Unchecked="SentToAcct_Unchecked" />
                                                </DataTemplate>
                                            </telerikGrid:DataGridTemplateColumn.CellContentTemplate>
                                        </telerikGrid:DataGridTemplateColumn>
 

Completed
Last Updated: 27 May 2019 11:48 by ADMIN
Created by: Heiko Görig
Comments: 0
Category: DataGrid
Type: Bug Report
0

With the latest version of the UWP-Controls a ArgumentException occurs if I want to display a DataGrid with Items whose ItemType has public static properties.

Unplanned
Last Updated: 08 Mar 2019 11:42 by ADMIN
When the DataGrid is placed inside a Panel (for example Grid) and after that is removed from that panel and is placed in another one the selection stops working. The issue is caused by the inaccurate order of the thrown Unloaded and Loaded events which the control relies on.