I have a kendoGrid where I defined it like this:
editable: {mode : 'popup', template: kendo.template($("#ID_OF_EDIT").html())},
It's works fine, but inside my template there is a field which I'd lke to use a kendoNumericTextBox.
The question is, how can I set this property?
In the examples I only find this way: $("#ID_FIELD").kendoNumericTextBox(), but I'm not able to use it with grid. How can I do it?