Forum Post: Kendo Tab Strip With An Ajax Tab

  • Thread starter Thread starter Meryk
  • Start date Start date
Status
Not open for further replies.
M

Meryk

Guest
Hello, I have a page with kendo Tabs A, B and C. A and B tabs have sections with local content. Tab C has content from an ajax Call. The issue I am facing now is that when the tab C is activated (as I am loading the content on activation), the ajax content is loaded properly (it is taking some time though, 4 seconds) under the Tab C. But when I go back to Tabs A or B, the ajax section is there as well under the original Tab Section of each Tab. So at the end, once the ajax content is loaded under its Tab C, it is there under all the other Tabs and all the time. Ps : By Ajax content I mean that I am doing an ajax call this way under the Tab C, and only when C is activated : $.ajax({ method : "GET", url: 'myUrl, dataType : 'html', success: function(data) { $("#replaceMe4").append(data); } }); //end of ajax call where "replaceMe4" is the div related the 4th li of the Kendo Tabs. Any suggestions Please ? Thank you Meryem

Continue reading...
 
Status
Not open for further replies.
Back
Top