Change tab order of home panel, toc, etc
Right now, the order of the tabs to the left of the map seems to be fixed: TOC, Search Results, Home Panel. Or is there a way to change this? I think it would make sense if the Home panel was on the far left.
0
-
Did you ever figure this out?
0 -
No, I never looked into this afterwards.
That said, I'm sure it should be possible to do this using an ugly jQuery hack from a custom module: Search for .button-tab-strip > ul and rearrange the li elements inside.
0 -
Changing the order of views in the "Shells" module in config JSON should allow you to reorder the tabs.
0 -
To change the order of the tabs, you can change the ordering of the DataFrameViewContainerViewModel, in the "Shells" module.
"ordering": {
"HomePanelContainerView": 0,
"DataFrameResultsContainerView": 1
}
to
"ordering": {
"DataFrameResultsContainerView": 0,
"HomePanelContainerView": 1
}
Does that answer your question?0
Please sign in to leave a comment.
Comments
4 comments