Hey,
since the last Update, my GridViews with a CellEditTemplate (for example DateTimePickers or MaskedTextInputs) dont show the red Validation Error indicators anymore, if ValidatesOnDataErrors is set to InEditMode.
If you hover over the location where the error should show you can still see it, but no red indicator whatsoever.
If ValidatesOnDataErrors is set to ViewMode it works.
If no CellEditTemplate is set, it works too.
Heres the code of the gridview:
<telerik:RadGridView
x:Name="rgv"
GroupRenderMode="Flat"
ShowGroupPanel="False"
FilteringMode="Popup"
ShowSearchPanel="False"
CanUserSearch="False"
ValidatesOnDataErrors="InEditMode"
AlternationCount="2"
ActionOnLostFocus="CommitEdit"
CanUserDeleteRows="True"
IsSynchronizedWithCurrentItem="True"
ShowColumnFooters="True"
SelectionMode="Single"
IsPropertyChangedAggregationEnabled="False"
VirtualizingPanel.VirtualizationMode="Recycling"
NewRowPosition="Top"
AutoGenerateColumns="False"
>
<telerik:RadGridView.Columns>
<telerik:GridViewDataColumn
DataMemberBinding="{Binding RechnungsNr}"
Header="Rechnung Nr."
TextWrapping="Wrap"
HeaderTextWrapping="Wrap"
Width="100"
>
<telerik:GridViewDataColumn.CellEditTemplate>
<DataTemplate>
<telerik:RadMaskedTextInput
Value="{Binding RechnungsNr, Mode=TwoWay, UpdateSourceTrigger=Explicit}"
maskedInput:MaskedInputExtensions.MaxTextLength="255"
Mask=""
MinWidth="100"
InputBehavior="Insert"
IsClearButtonVisible="False"
/>
</DataTemplate>
</telerik:GridViewDataColumn.CellEditTemplate>
<telerik:GridViewDataColumn.AggregateFunctions>
<telerik:CountFunction Caption="Anzahl: " ResultFormatString="{}{0:N0}" />
</telerik:GridViewDataColumn.AggregateFunctions>
</telerik:GridViewDataColumn>
</telerik:RadGridView.Columns>
</telerik:RadGridView>
And also the whole sample project:
https://we.tl/t-11ppqbB7EG
Did I miss something I have to change after the update?
Greetings
Benedikt