NumericUpDown having issues in SFListview

I'm having a weird problem in my current scenario where I have a popupframe which contains a SFLIstView with  nummericUpDown control in the items. 

Now whenever I only have one item everything works fine, but as soon as I have multiple the app simply crashes and does NOT give me any details

[libc] Fatal signal 11 (SIGSEGV), code 2 (SEGV_ACCERR), fault addr 0xff1d5fcc in tid 11146


I'm using FreshMVVM plus the Rg.Plugins.Popup 


```

<listView:SfListView.ItemTemplate>

                            <DataTemplate>

                                <ViewCell>

                                    <Grid>

                                        <Grid.RowDefinitions>

                                            <RowDefinition Height="1" />

                                            <RowDefinition Height="auto" />

                                        </Grid.RowDefinitions>

                                        <Frame

                                            Grid.Row="0"

                                            Margin="0"

                                            HasShadow="True"

                                            HeightRequest="1"

                                            HorizontalOptions="Fill"

                                            OutlineColor="#E4E4E4" />

                                        <StackLayout

                                            Grid.Row="1"

                                            HorizontalOptions="Fill"

                                            Orientation="Vertical"

                                            Spacing="0"

                                            VerticalOptions="Fill">

                                            <StackLayout

                                                HorizontalOptions="FillAndExpand"

                                                Orientation="Vertical"

                                                VerticalOptions="FillAndExpand">

                                                <Label

                                                    Style="{DynamicResource ListViewTitleStyle}"

                                                    Text="{Binding Name}"

                                                    VerticalTextAlignment="Center" />


                                                <numeric:SfNumericUpDown

                                                    x:Name="NumericOther"

                                                    FontAttribute="Bold"

                                                    FontSize="27"

                                                    HorizontalOptions="FillAndExpand"

                                                    IsVisible="{Binding IsMeasurementOther}"

                                                    MaximumDecimalDigits="{Binding MaximumDecimalDigits}"

                                                    TextAlignment="End"

                                                    TextColor="{DynamicResource TextPrimaryColor}"

                                                    ValueChangeMode="OnKeyFocus"

                                                    VerticalOptions="Center"

                                                    Value="{Binding ScoreValue}">

                                                    <numeric:SfNumericUpDown.IncrementButtonSettings>

                                                        <numeric:UpDownButtonSettings ButtonFontColor="{DynamicResource TextPrimaryColor}" />

                                                    </numeric:SfNumericUpDown.IncrementButtonSettings>

                                                    <numeric:SfNumericUpDown.DecrementButtonSettings>

                                                        <numeric:UpDownButtonSettings ButtonFontColor="{DynamicResource TextPrimaryColor}" />

                                                    </numeric:SfNumericUpDown.DecrementButtonSettings>

                                                </numeric:SfNumericUpDown>

                                            </StackLayout>

                                        </StackLayout>

                                    </Grid>

                                </ViewCell>

                            </DataTemplate>

                        </listView:SfListView.ItemTemplate>

```


3 Replies

MI Michael February 1, 2022 03:15 PM UTC

I'm using the latest XF 5.0.0.2337 and SF 



MI Michael February 2, 2022 02:15 PM UTC

Just tested and the exact same template works fine in the standard ListView, but I can't use the automatic height functionality...



VR Vignesh Ramesh Syncfusion Team February 3, 2022 03:07 PM UTC

Hi Michael, 

We have prepared a sample based on the provided details and checked the reported problem. But we are unable to reproduce the reported problem and the applications working fine without any crashes. Please check the tested sample from the attachment. 


Please check it once from your side. If you still face any problem, can you revert us by modifying the sample based on your scenario, this will help us to provide you with a better solution at the earliest. 

Regards, 
Vignesh Ramesh. 


Loader.
Up arrow icon