Search code examples
kendo-uitextboxformatcurrency

Applying style in format of kendo numeric textbox


How can I change the color of the currency in my kendo numeric textbox in jquery? I used the standard code in creating a numeric textbox in kendo.

$("#currency").kendoNumericTextBox({
 format: "c",
});

For example I have $12.00 as value in my input element. I just want to change the color of the $. Not the 12.00.

How can I achieve this?


Solution

  • Found the solution. Because its kendo, it was simply setting a ClientTemplate before loading it.