Hi! I need to figure out, how to put tab strip, couple of grids in this tab strip, some buttons and file upload control inside custom pop-up template, and how to bind those controls to options, data sources, etc.
If I put pop-up template on my page, I can't(?) use code like:
var tabstrip = $(".popUpTabstrip");
tabstrip.kendoTabStrip({
animation: {open: {effects: "fadeIn"}}});</
script
>
I'm creating my grid in JS entirely, referencing .js file.
I've also tried to set my own function to render pop-up template content and then called .html(), but .kendoTabStrip line doesn't do anything, because all this is converted to HTML.
Please, tell me, which way is the best to achieve my goal?
Ideally, I want to use function to render template, where I can create new kendo controls and bind them to data sources, defined in my js file.