Ticket T610301
Visible to All Users

GridControl with CheckEdit and InplaceBaseEdit in the same column won't update the InplaceBaseEdit text

created 7 years ago (modified 7 years ago)

I have the following XAML code

XAML
<Window x:Class="WpfApp3.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:WpfApp3" xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid" xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors" mc:Ignorable="d" Title="MainWindow" Height="450" Width="800"> <dxg:GridControl Name="GridControl" ItemsSource="{Binding ItemsTable, Mode=TwoWay}" DockPanel.Dock="Bottom" MaxHeight ="1024" AllowLiveDataShaping="True" SelectionMode="Row"> <dxg:GridControl.Columns> <dxg:GridColumn FieldName="Value" AutoFilterCondition="Equals"> <dxg:GridColumn.CellTemplate> <DataTemplate> <DockPanel> <dxe:InplaceBaseEdit Name="PART_Editor" Visibility="Visible" /> <dxe:CheckEdit Name="PART_CheckEdit" IsChecked="{Binding RowData.Row.CheckBox, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Visibility="Visible" DockPanel.Dock="Left" Margin="2,0" IsEnabled="True" VerticalAlignment="Center" /> <TextBlock Name="DisabledText" Text="{Binding RowData.Row.Text}" Visibility="Visible" DockPanel.Dock="Left" VerticalAlignment="Center" /> </DockPanel> <DataTemplate.Triggers> <DataTrigger Binding="{Binding RowData.Row.CheckBox}" Value="True"> <Setter TargetName="PART_Editor" Property="Visibility" Value="Visible" /> </DataTrigger> </DataTemplate.Triggers> </DataTemplate> </dxg:GridColumn.CellTemplate> </dxg:GridColumn> </dxg:GridControl.Columns> </dxg:GridControl> </Window>

In my real world example I have multiple datatriggers, however in this example they don't really do anything.

and the following CS code

C#
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; using DevExpress.Mvvm; using DevExpress.Xpf.Grid; namespace WpfApp3 { /// <summary> /// Interaction logic for MainWindow.xaml /// </summary> public partial class MainWindow : Window { public ObservableCollection<Item> ItemsTable { get; set; } public MainWindow() { InitializeComponent(); var list = new List<Item>(); list.Add(new Item() { Value = "Enabled", Text = "Enabled", CheckBox = true, }); list.Add(new Item() { Value = "Enabled", Text = "Enabled", CheckBox = true, }); list.Add(new Item() { Value = "Enabled", Text = "Enabled", CheckBox = true, }); GridControl.DataContext = this; ItemsTable = new ObservableCollection<Item>(list); } } public class Item : BindableBase { private string _value; public string Value { get => _value; set { _value = value; RaisePropertyChanged(nameof(Value)); } } private string _text; public string Text { get => _text; set { _text = value; RaisePropertyChanged(nameof(Text)); } } private bool _checkBox; public bool CheckBox { get => _checkBox; set { if (value) { Text = "Enabled"; Value = "Enabled"; } else { Text = "Disabled"; Value = "Disabled"; } _checkBox = value; RaisePropertyChanged(nameof(CheckBox)); } } } }

If you check the checkbox, the TextBlock text updates, the checkbox changes state however the "Value" field does not update. Once you deselect the row the "Value" field correctly updates.

Why is the "Value" field not updating whilst the row is selected? I am firing the correct property changed events from what I can see.

Show previous comments (1)
DevExpress Support Team 7 years ago

    Hi Roland,
    It is usually redundant to bind InplaceBaseEdit's EditValue manually. GridControl automatically recognizes the editor named "PART_Editor" as a primary cell editor and synchronizes its EditValue with the underlying cell data - see CellTemplate for more details.
    Try removing the EditValue binding from your markup and let me know if it helps.

    RH RH
    Roland Harrison 7 years ago

      I tried removing that however the inplace edit seems to still block updates. My code above will reproduce the error.

      RH RH
      Roland Harrison 7 years ago

        I tried putting a grid inside the grid, however this causes a native crash of .NET that can't be debugged.

        XAML
        <dxg:GridControl Name="GridControl" ItemsSource="{Binding ItemsTable, Mode=TwoWay}" DockPanel.Dock="Bottom" MaxHeight ="1024" SelectionMode="Cell"> <dxg:GridControl.Columns> <dxg:GridColumn FieldName="Value" AutoFilterCondition="Equals"> <dxg:GridColumn.CellTemplate> <DataTemplate> <dxg:GridControl> <dxg:GridColumn> <dxe:InplaceBaseEdit Name="PART_Editor" IsEnabled="False" Visibility="Visible" /> </dxg:GridColumn> <dxg:GridColumn> <dxe:CheckEdit Name="PART_CheckEdit" IsChecked="{Binding RowData.Row.CheckBox, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Visibility="Visible" DockPanel.Dock="Left" Margin="2,0" IsEnabled="True" VerticalAlignment="Center" /> </dxg:GridColumn> <dxg:GridColumn> <TextBlock Name="DisabledText" Text="{Binding RowData.Row.Text}" Visibility="Visible" DockPanel.Dock="Left" VerticalAlignment="Center" /> </dxg:GridColumn> </dxg:GridControl> <DataTemplate.Triggers> <DataTrigger Binding="{Binding RowData.Row.CheckBox}" Value="True"> <Setter TargetName="PART_Editor" Property="Visibility" Value="Visible" /> </DataTrigger> </DataTemplate.Triggers> </DataTemplate> </dxg:GridColumn.CellTemplate> </dxg:GridColumn> </dxg:GridControl.Columns> </dxg:GridControl>

        Answers approved by DevExpress Support

        created 7 years ago

        Hello,
        Thank you for the clarification. This behavior occurs because your cell is active when you change its value. When a certain cell is active, it doesn't immediately update its value when it's changed externally, for example, in code, even if the PropertyChanged event is raised. We discussed a similar question in the following thread: a GridControl cell isn't immediately updated when it's activated and its value is changed in code. Please refer to it for detailed information.
        As for your second question, I've created a separate ticket on your behalf (How to create and show detail GridControls). It has been placed in our processing queue and will be answered shortly.

        Thanks,
        Kirill

          Comments (2)
          RH RH
          Roland Harrison 7 years ago

            Thank you for that. It turns out we don't need this feature/design anymore so I haven't tried your example but it looks very thorough. If we do add the feature back and I implement the service I will report back here.

            Kirill (DevExpress Support) 7 years ago

              You are welcome!

              Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

              Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.