After update to release 27.1.48, built in editor for type int in Propertygrid not working

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>

2 Replies 1 reply marked as answer

NV NM van Strien October 1, 2024 07:12 AM UTC

I am writing that the issue is resolved after installing version 27.1.51 of the packages through nuget. I don't have an explanation other than that.


Kind regards,


Niels


Marked as answer

BS Bhaskar Suresh Syncfusion Team October 3, 2024 06:20 AM UTC

Hi Niels,


We are glad that the reported issue has been resolved. Hence, we are marking this forum as closed.

Please get in touch with us if you require any further assistance.


Regards,

Bhaskar Suresh


Loader.
Up arrow icon