Dear syncfusion team,
I have the following propertygrid definition. In the latest 26.x.x release, I can edit the values of TimeDirect, TimeIndirect, TimeTravel, TimeNotBillable. These properties are of type integer. When I update the controls to 27.1.48, I can not put a value in the propertygrid for these PropertyGridItems, even when I set the IsReadOnly explicitly to false. Restoring to 26.x.x resolves the issue. Is there a change in the built-in propertygrid editor for integers?
Kind regards,
Niels
<sf:PropertyGrid
x:Name="SfPropertyGrid"
Grid.Column="0"
AutoGenerateItems="False"
DescriptionPanelVisibility="Visible"
EnableGrouping="True"
SelectedObject="{Binding ConsultRegistrationWorking, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<sf:PropertyGrid.Items>
<!--#region Time Registration-->
<sf:PropertyGridItem
CategoryName="Tijdregistratie"
DisplayName="Directe tijd"
PropertyName="TimeDirect" />
<sf:PropertyGridItem
CategoryName="Tijdregistratie"
DisplayName="Indirecte tijd"
PropertyName="TimeIndirect" />
<sf:PropertyGridItem
CategoryName="Tijdregistratie"
DisplayName="Reistijd"
PropertyName="TimeTravel" />
<sf:PropertyGridItem
CategoryName="Tijdregistratie"
DisplayName="Niet declarabele tijd"
PropertyName="TimeNotBillable" />
<!--#endregion-->
</sf:PropertyGrid.Items>
<i:Interaction.Triggers>
<i:EventTrigger EventName="Loaded">
<i:InvokeCommandAction Command="{Binding PropertyGridLoadedCommand}" CommandParameter="{Binding ElementName=SfPropertyGrid}" />
</i:EventTrigger>
</i:Interaction.Triggers>
</sf:PropertyGrid>