We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

GridComboBoxColumn IsEditableMode not showing soft keyboard.

Is there a way to get the soft keyboard to show up when setting a GridComboBoxColumn's IsEditableMode = true?
I assumed it would function the same as the SfComboBox Control but nothing I change will make it show up.

2 Replies

DB Deepika Balasubramaniyan Syncfusion Team January 20, 2020 02:17 PM UTC

Hi Marcus Lee, 
 
 
Thank you for contacting Syncfusion support. 
Currently we are working on your requirement “GridComboBoxColumn IsEditableMode not showing soft keyboard”. We will provide further details on 22nd January 2020.  
We appreciate your patient until then. 
 
Regards, 
Deepika. 



DB Deepika Balasubramaniyan Syncfusion Team January 22, 2020 11:44 AM UTC

Hi Marcus Lee, 

Based on the given information, your requirement of “Showing keyboard when edit the GridComboBoxColumn with IsEditableMode” is achieved by customizing the GridCellComboBoxRenderer. In Xamarin.Forms.Android platform, From sample, we have manually called keyboard when GridComboBox column is in edit mode, and in Xamarin.Forms.iOS platform, by default keyboard has shown when GridComboBox column enter in to edit mode.  Kindly find the below code example and sample for further reference.

Code example :

[C#]

---

public MainPage() 
   { 
        InitializeComponent(); 
        this.dataGrid.CellRenderers.Remove("ComboBox"); 
        this.dataGrid.CellRenderers.Add("ComboBox", new CustomComboBox()); 
   } 
 
 
public class CustomComboBox : GridCellComboBoxRenderer 
    { 
        public override bool BeginEdit(RowColumnIndex rowColumnIndex, CellElement cellElement, GridColumn column, object rowData) 
        { 
            DependencyService.Get<IKeyboardDependency>().ShowKeyboard(); 
            return base.BeginEdit(rowColumnIndex, cellElement, column, rowData); 
        } 

    }

---

Sample link: https://www.syncfusion.com/downloads/support/forum/150774/ze/F150774_Keybaord409802940.zip

 

Regards,

Deepika.



Loader.
Live Chat Icon For mobile
Up arrow icon