Hi Clark,
Thank you for using Syncfusion products.
#Regarding Disable keyboard on specific data fields
We have checked the reported query from our end. Your requirement can be achieved with help of custom DataFormTextEditor. Inside the CustomDataFormTextEditor, you can disable the keyboard by setting ShowSoftInputOnFocus property as False. Please refer to the following code snippet for your reference.
Code snippet
|
dataForm.RegisterEditor("Text", new DataFormTextEditorExt(dataForm)); .. .. public class DataFormTextEditorExt : DataFormTextEditor
{
public DataFormTextEditorExt(SfDataForm dataForm) : base(dataForm)
{
}
protected override void OnInitializeView(DataFormItem dataFormItem, EditText view)
{
view.ShowSoftInputOnFocus = false;
base.OnInitializeView(dataFormItem, view);
}
} |
Please let us know if you have any concerns.
Regards,
SaiGanesh Sakthivel