Pergunta

I'm creating a method to delete a Kendo UI TabStrip Tab based on an 'x' image. I want it to work in the same way as other tab controls (such as Chrome/IE):

  • If the active tab is closed then select the next tab (or if it's the last tab then select previous tab).
  • If it's not an active tab then ensure the active tab remains open.

I believe I need to get a reference to the current tab, then check if the tab being deleted is the active tab.

My code at the moment simply closes the tab in relation to the clicked image:

function DeleteTab(imgObj) {

        var tabStrip = $("#tabstrip").data("kendoTabStrip");

        var deleteIndex = $(imgObj).closest("li").index();
        tabStrip.remove(deleteIndex);
}

How do I get a reference to the currently selected tab? Can I do this by searching for k-state-active?

Foi útil?

Solução

tabstrip.select() will return the currently selected tab.

Outras dicas

tabStrip.select().index();

Will return currently selected tab index

To get the currently selected tab of the tabstrip, you can use:

var selectedTabElem = $("#tabstripElemId").data('kendoTabStrip').select();// this will be the <li> element that is currently selected

Then one can access the current tab text as below:

var currentSelectedTabText = $(selectedTabElem).children(".k-link").text();
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top