V
Vimalkumar Selvaraj
Guest
Hi Iram, As Satya said we don't have client side API yet to get index of a tab by name. However i find some workaround for you to get rid of this issue for time being, let me know if this helps you function getTabIndexByName(name){ var tabStripInstance = rbf_getPageKendoTabStripInstance(); if(tabStripInstance){ var currentItems = tabStripInstance.dataSource.view(); if(currentItems){ for(var i=0;i<currentItems.length;i++){ if(name.toLowerCase()===currentItems.name.toLowerCase()) return i; } } } return -1; } Thanks, Vimal.
Continue reading...
Continue reading...