Is it possible to remove/deactivate the close button for a specific tab? We have one tab w/ instructions that should always remain open.
I tried using $(‘#jqxTabs’).jqxTabs(‘hideCloseButtonAt’, 0); but as soon as another tab is dynamically added, the close button reappears. Calling the method again after the add doesn’t remove it again. Also, since our tabs are re-orderable, there’s no guarantee that the
‘index’ tab will always be at position 0.
Edit: I managed to get this working with a combination of lockAt and hideCloseButtonAt, but this is not optimal for us, since ideally the user would be able to rearrange all the tabs according to their needs. If you have any other suggestions I would appreciate it.