I am not sure why there is not much information on this functionality but I am having problems with something I thought would be very easy. Following is what I want to do.
I am using following code to TRY to reload the tab:
var tabStrip = $("#tabstrip").kendoTabStrip();
var somethingelse = tabstrip.data('kendoStrip');
var item = somethingelse.items()[1];
tabStrip.reload(item);
When I put debugger on this what I figured is that $("#tabstrip") does get identified at the run time BUT both $("#tabstrip").kendoTabStrip(); and tabstrip.data('kendoStrip'); return unidentified and all the subsequent actions fail. What am I doing wrong here?
change your code like this
var tabstrip = $("#tabstrip").kendoTabStrip();
var kendoTabStrip = tabstrip.data().kendoTabStrip;
var item = kendoTabStrip.items()[1];
kendoTabStrip.reload(item);
$("#Kendowindow").data("kendoWindow").close();