RamaChandran
RamaChandran

Reputation: 41

Kendo culture for number format in a kendo text box

I have a text box and its value is "1234567890.123456789123" . I want this value to be cultured based on kendo number format .ie if the kendo.culture().numberFormat["."]= . then the value should be

1,234,567,890.123456789

Basically kendo supports number format for only numerictextbox .

Can anyone help me out ?

Upvotes: 0

Views: 171

Answers (1)

volkansendag
volkansendag

Reputation: 51

I'm not sure I understand exactly, but you can set format of numerictextbox.

kendo.ui.NumericTextBox.fn.options.format = "0.00"

Upvotes: 1

Related Questions