GridNumericColumn Edit Not Showing Android

Hi,
When I perform editing, the numbers do not appear on the android side.
How Can I Fix?

<sfDataGrid:SfDataGrid x:Name="sfDataGrid" SelectionMode="Single" CurrentCellEndEdit="sfDataGrid_CurrentCellEndEdit" AllowSwiping="True" EditTapAction="OnTap" NavigationMode="Cell" AllowEditing="True" ColumnSizer="Star" AutoGenerateColumns="False">
    <sfDataGrid:SfDataGrid.Columns>
        <sfDataGrid:GridTextColumn HeaderText="KOD" MappingName="_inventoryCode" AllowEditing="False" />
        <sfDataGrid:GridTextColumn HeaderText="RENK" MappingName="_color" AllowEditing="False" />
        <sfDataGrid:GridTextColumn HeaderText="BEDEN" MappingName="_size" AllowEditing="False" />
        <sfDataGrid:GridNumericColumn HeaderText="STOK" MappingName="_stock" AllowEditing="False" Format="N0" NumberDecimalDigits="0" AllowNullValue="true" NullValue="0" NullText="0"/>
        <sfDataGrid:GridNumericColumn HeaderText="SİPARİŞ" MappingName="_amount" AllowEditing="True" Format="N0"  NumberDecimalDigits="0" AllowNullValue="true" NullValue="0" NullText="0"/>
    </sfDataGrid:SfDataGrid.Columns>
</sfDataGrid:SfDataGrid>

6 Replies 1 reply marked as answer

TE Tayyip Emre ÖRNEK October 5, 2020 08:45 AM UTC

ScreenShot iOS & Android

Attachment: Ekran_Resmi_20201005_09.45.53.png_66d7397e.zip


SS Sivaraman Sivagurunathan Syncfusion Team October 6, 2020 05:31 AM UTC

Hi Tayyip, 

Thanks for using Syncfusion controls. 

We have checked your query and attached code snippet. Unfortunately we are unable to reproduce the reported issue from our side. It is working fine as expected. We have attached the tested sample link and screenshots for your reference.  You can download the same from the below link. If the issue still occurs from your side please revert us with modified sample with SfDataGrid product version, Xamarin.Forms version and device details. It will help us to provide the better solution.   

 


Regards, 
Sivaraman S 



Marked as answer

TE Tayyip Emre ÖRNEK replied to Sivaraman Sivagurunathan October 10, 2020 07:21 AM UTC

Hi Tayyip, 

Thanks for using Syncfusion controls. 

We have checked your query and attached code snippet. Unfortunately we are unable to reproduce the reported issue from our side. It is working fine as expected. We have attached the tested sample link and screenshots for your reference.  You can download the same from the below link. If the issue still occurs from your side please revert us with modified sample with SfDataGrid product version, Xamarin.Forms version and device details. It will help us to provide the better solution.   

 


Regards, 
Sivaraman S 



Thank you for answering. But is still does not apper when it goes to the bottom line after writing. When I click on the written line then it shows

By the way I have custom Renderer. Because of get to bottom row.

sfDataGrid_Colors.BeginEdit(sfDataGrid_Colors.CurrentCellManager.RowColumnIndex.RowIndex + 1, sfDataGrid_Colors.CurrentCellManager.RowColumnIndex.ColumnIndex);


public class CustomNumericRenderer : GridCellNumericRenderer
    {

        public CustomNumericRenderer()
        {

        }

        protected override SfNumericTextBoxExt OnCreateEditUIView()
        {
            var view = new NumericTextBox(this.DataGrid);
            return view;
        }
    }

    public class NumericTextBox : SfNumericTextBoxExt
    {
        SfDataGrid dataGrid;
        ///
        /// Initializes a new instance of the class.
        ///  
        public NumericTextBox(SfDataGrid sfDataGrid)
        {
            dataGrid = sfDataGrid;
            this.Completed += NumericTextBox_Completed;
        }

        private void NumericTextBox_Completed(object sender, EventArgs e)
        {
            dataGrid.EndEdit();
        }
    }




SS Sivaraman Sivagurunathan Syncfusion Team October 12, 2020 07:36 AM UTC

Hi Tayyip, 

Thanks for the update. 

We have checked your query and attached code snippet. Unfortunately we are unable to reproduce the reported issue from our side. It is working fine as expected. We have attached the tested sample link and video for your reference.  You can download the same from the below link. If the issue still occurs from your side please revert us with modified sample with SfDataGrid product version, Xamarin.Forms version and device details. It will help us to provide the better solution.    



Regards, 
Sivaraman S 



TE Tayyip Emre ÖRNEK replied to Sivaraman Sivagurunathan October 16, 2020 07:37 AM UTC

Hi Tayyip, 

Thanks for the update. 

We have checked your query and attached code snippet. Unfortunately we are unable to reproduce the reported issue from our side. It is working fine as expected. We have attached the tested sample link and video for your reference.  You can download the same from the below link. If the issue still occurs from your side please revert us with modified sample with SfDataGrid product version, Xamarin.Forms version and device details. It will help us to provide the better solution.    



Regards, 
Sivaraman S 


Hi,
this problem is only on the android side and the error is exactly as in the file.
Xamarin.Forms : 4.8.0.1534
Syncfusion : 18.3.0.40
Device : API 28-29 (on all the devices I've tried)


Attachment: ScreenRecord_56cdc792.zip


SS Sivaraman Sivagurunathan Syncfusion Team October 19, 2020 07:55 AM UTC

Hi Tayyip, 

Thanks for the update. 

We have checked your query and attached video. Can you please confirm that, whether the issue is GridNumericColumn values do not appear when enter in to edit mode. Or value does not commit when we edit and navigation to next cell ? In you attached video value does not commit when we edit the value and move to next cell. Unfortunately we are unable to reproduce the reported issue from our side. It is working fine as expected. We have test the issue in XF version 4.8.0.1534 and SfDataGrid version 18.3.0.40 Can you please let us known what type of data has been bind to that GridNumericColumn. if possible share to issue reproducing sample. It will help us to provide the better solution. We have attached video and tested sample for your reference. You can download the same from the below link. 



Regards, 
Sivaraman S 


Loader.
Up arrow icon