WAB 2.19
JS 3.x
Inherited a custom widget that has TabContainer implemented and attempting to hide tabs by title. Removing the TabContainer altogether isn't an option as there is a ton of js that would have to be reworked and prefer to just have a simple loop to hide elements.
I'm able to setup a loop over the tabs and successfully evaluate on title but not able to apply the correct method to hide the tab.
_initTabContainer: function() {
var tabs = [];
tabs.push({
title: 'Water Use',
content: this.tabNode1
});
tabs.push({
title: 'ERP',
content: this.tabNode2
});
tabs.push({