Hello,
I set my culture in Romanian input
kendo.culture('ro');
Then, i set the value of a textbox like this
$("#valueInput").val(kendo.toString(100000.25, "c")); // creates "100.000,25 lei"
How can i get the formated value back to original, but keeping the culture format? (without using the .kendoNumericTextBox plugin)
For example, "100.000,25 lei" changes to "100000,25" (note that decimals separator is a coma , )
Thank you
I set my culture in Romanian input
kendo.culture('ro');
Then, i set the value of a textbox like this
$("#valueInput").val(kendo.toString(100000.25, "c")); // creates "100.000,25 lei"
How can i get the formated value back to original, but keeping the culture format? (without using the .kendoNumericTextBox plugin)
For example, "100.000,25 lei" changes to "100000,25" (note that decimals separator is a coma , )
Thank you