Add ShowTab
Add the js to Resources:
/* show bootstrap tab and hide all sibling tabs (useful for tab toggle buttons inside tabs) */
function ShowTab(e) {
$(e).siblings().removeClass("active show");
$(e).addClass("active show");
}
Add the js to Resources:
/* show bootstrap tab and hide all sibling tabs (useful for tab toggle buttons inside tabs) */
function ShowTab(e) {
$(e).siblings().removeClass("active show");
$(e).addClass("active show");
}