Navigating through many tabs

I was using Bokeh version 2.4.3 till now and recently updated. In the previous version I was using this line of code: show(Tabs(tabs=tab_list)). Here If I had many tabs like 14-15 I automatically get button to navigate through tabs something like this:
Screenshot from 2023-10-23 10-38-24
But after the update all the tabs are now showing and this feature is not there, I am using the same line of code. Something like this:


@mateusz please suggest if there is some way to do it like the previous version without degrading as I will have to change many other scripts as well.
P.S.- I tried the above thing in version 3.0.3 and above and the issue exist, but it is not there in version 2.4.3.
Thanks

cc @mateusz for thoughts

Iā€™d say the left/right buttons in the old version of Bokeh was very helpful for navigating through many tabs, and it would be great if we can have that again. In the mean time, an alternative solution is to place the tabs vertically on the left:

Tabs(tabs=tab_last, tabs_location='left') 

Here is an example of how it looks:

1 Like

Thank you very much for the alternate solution. This will definitely help.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.