This question is locked. New answers and comments are not allowed.
I have a RadGridView whose DetailsVisibility is bound to the IsChecked value of a ToggleButton.
Where this.toggleButton is of type Primitives.ToggleButton and this.parentRow is of type Telerik. ... .GridViewRow. The RadGridView is horizontally scrollable and when I check the ToggleButton, making the details visible, then scroll such that the ToggleButton is not viewable, the row details automatically collapses. The cell values maintain their binding when I scroll such that the cells do not clear when I scroll away and scroll back, but the toggle button does not. This is obviously an issue because I do not want the row details to collapse when scrolling.
Is there a workaround or can this be addressed? Thanks.
private void Init(){ var toggleBinding = new Binding("IsChecked") { Source = this.toggleButton, Mode = BindingMode.TwoWay, Converter = new BooleanToVisibilityConverter() }; this.parentRow.SetBinding(GridViewRow.DetailsVisibilityProperty, toggleBinding);}Where this.toggleButton is of type Primitives.ToggleButton and this.parentRow is of type Telerik. ... .GridViewRow. The RadGridView is horizontally scrollable and when I check the ToggleButton, making the details visible, then scroll such that the ToggleButton is not viewable, the row details automatically collapses. The cell values maintain their binding when I scroll such that the cells do not clear when I scroll away and scroll back, but the toggle button does not. This is obviously an issue because I do not want the row details to collapse when scrolling.
Is there a workaround or can this be addressed? Thanks.