Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2732
Numeric editor in the grid , fix the decimal seperator to comma
posted

Hey,

I'm using the ignite ui grid, and I want to show nice spinbutton. 

I got this to work with the following code...

var updateColums = new ColumnUpdatingSetting
{
ColumnKey = "NumberRequested",
Required = true,
EditorOptions = "button:'spin',maxValue:100000,minValue:0.01",
EditorType = ColumnEditorType.Numeric,
};

My website is multilanguage, and with this comes the problem of decimal seperators. The business has decided to set the seperator to comma, regardless of the language and culture settings.

So i tried adding DecimalSeparator:',' to the editor options, but no luck. Is there a way to do this?

Kind regards,