or
<input class="inputMyCall" id="${Id}" type=number min=1 />
JS Code:
_InputMycallObj=$(".inputMyCall").kendoNumericTextBox({
format: "#",
spin: OnMyCallsChanged,
}).data("kendoNumericTextBox");
Please advice.
Regards,
Shankar
I have this situation:
I have some Views and by default they have assigned a Layout for them. The problem is that in some specific cases, I need to change the Layout of some of these Views in the Javascript file.
I am using this way:
$("#tabstrip-dash").setAttribute('data-layout', 'mobile-tabstrip-layout2');
This solution works only if I reload the application, but I want to change it instantly.
Is there any way to set the new Layout?
Thanks!