Hi,
as the subject says. I would like to get the number culture specific (in my case german) - like "123.233,45". If it's possible the same with currency (not the $ in my case the €)
.Columns(column => { column.For(x => x.date_purchased).HeaderText("Date").Width("95").Format("dd.MM.yyyy"); column.For(x => x.ot_total).HeaderText("Total").Width("100").DataType("number").Format("###.###,##");
Hello Uwe,
Thank you for contacting Infragistics.
You may look into localization of controls. For more information on localization, please refer to the following:
http://help.infragistics.com/Help/Doc/jQuery/2013.1/CLR4.0/html/Customizing_the_localization_of_NetAdvantage_for_jQuery_controls.html
If you have any questions, please let me know as well.
there is still one
How to format the currency (or still a number)?
.Format("currency") display alway the "dollar-Sign" but we nedd to see the "Euro-Sign".
Same with Number Formats: "122,111.00" has to be in de-DE culture "122.111.00", so Comma and Points changes.
...
column.For(x => x.ot_total).HeaderText("Gesamt").Width("100").DataType("number").Format("{0:N2}").Template("<p style=\"text-align: right;\"> ${ot_total} <p>");
Hello Uwe Richter,
You may also consider our Currency Editor as discussed in the following:
http://ko.infragistics.com/community/blogs/damyan_petev/archive/2012/09/20/jquery-editors-rich-client-experience-part-2.aspx
or the following forum thread also has a suggestion:
http://ko.infragistics.com/community/forums/t/77128.aspx
If you have any questions, pleas let me know as well.
I am following up and see if you have any questions.