I did not have issues with Telerik Extensions for MVC with the same setup.
I have a Kendo Tabstrip that loads partialviews with Kendo Grids contained within. They render fine! However, when I click edit, it throws the following error:
jQuery('#MilitaryPlanned').tTextBox({val:0, step:1, minValue:-2147483648, maxValue:2147483647, digits:0, groupSize:3, negative:1, text:'Enter value', type:'numeric'});
I took the datatype annotation on the model out, and it worked giving me just a generic textbox, which is useless to me. I must have specific data types.
I tried adding the script references directly to the partial view and no joy.
I then proceeded to test this outside the partial in a full view page supported by the layout page. It worked great!
So I believe the question is:
WHY ARE THE JS REFERENCES NOT WORKING IN THE PARTIAL? Are they not seeing the javascript files in the layout?
I have a Kendo Tabstrip that loads partialviews with Kendo Grids contained within. They render fine! However, when I click edit, it throws the following error:
jQuery('#MilitaryPlanned').tTextBox({val:0, step:1, minValue:-2147483648, maxValue:2147483647, digits:0, groupSize:3, negative:1, text:'Enter value', type:'numeric'});
I took the datatype annotation on the model out, and it worked giving me just a generic textbox, which is useless to me. I must have specific data types.
I tried adding the script references directly to the partial view and no joy.
I then proceeded to test this outside the partial in a full view page supported by the layout page. It worked great!
So I believe the question is:
WHY ARE THE JS REFERENCES NOT WORKING IN THE PARTIAL? Are they not seeing the javascript files in the layout?