Problem with SfNumricUpDown on iOS

Hi,

I use a NumericUpDown inside a StackLayout, xaml code :
                <controls:CustomStackLayout Orientation="Vertical"
                                            HorizontalOptions="FillAndExpand"
                                            VerticalOptions="FillAndExpand"
                                            ItemsSource="{Binding Intervention.CommercialItemDtos, Mode=TwoWay}"
                                            x:Name="ListSource">
                    <controls:CustomStackLayout.ItemTemplate>
                        <DataTemplate>
                            <ViewCell>
                                            <numeric:SfNumericUpDown HorizontalOptions="Fill"
                                                                     VerticalOptions="End"
                                                                     ParsingMode="Decimal"
                                                                     Value="{Binding QuantityUsed, Mode=TwoWay}"
                                                                     Minimum="0"
                                                                     Maximum="1000"
                                                                     FormatString="n"
                                                                     StepValue="1"
                                                                     MaximumDecimalDigits="0"
                                                                     IsVisible="{Binding BindingContext.IsEditing, Source={x:Reference Name=ListSource}}">
                            </ViewCell>
                        </DataTemplate>
                    </controls:CustomStackLayout.ItemTemplate>
                </controls:CustomStackLayout>

QuantityUsed is a decimal properties.
When I press a button +, on Android or UWP, setter property is called and quantityUsed updated.
But don't work on iOS, setter property isn't call why ?

I used to last version on Syncfusion Essential Studio, 15.3.0.26

Thanks


3 Replies

SK Selva Kumar  Veerakrishnan Syncfusion Team August 10, 2017 09:56 AM UTC

Hi Romain, 

 
Thank you for contacting Syncfusion Support. 

 
We are able to reproduce the reported Binding issue. The fix will be included in our upcoming Volume 3 SP1 which will be rolled out by the end of August 2017. 

 
Regards, 
 
Selva Kumar V. 



RO Romain August 16, 2017 07:18 AM UTC

Thanks



VA Vanaja  Annasamy Syncfusion Team August 17, 2017 12:22 PM UTC

Hi Romain,

Thank you for the update.

We will let you know once the 2017 Volume 3 SP1 get released.

Regards,
Vanaja R.A.

Loader.
Up arrow icon