Hi Mario,
Thank you for contacting Syncfusion support.
We have analyzed your requirement “Disable thousand separators in numeric text field of DataForm”. DataFormNumericItem has EnableGroupSeparator property to enable and disable thousand separators by setting EnableGroupSeparator to false you can achieve your requirement.
Kindly refer our UG documentation to know more about EmableGroupSeparator of DataFormNumericItem.
Code Snippet:
private void DataForm_AutoGeneratingDataFormItem(object sender, AutoGeneratingDataFormItemEventArgs e)
{
if(e.DataFormItem != null)
{
if(e.DataFormItem.Name == "BirthYear")
{
(e.DataFormItem as DataFormNumericItem).EnableGroupSeparator = false;
}
}
} |
We have prepared a sample for the same,
We hope this helps. Kindly revert us if you have any concern.
Regards,
Subburaj Pandian V