I am learning how to use the ESRI Calcite Mapstheme.
Some maps have panels that are already active when loading the page, like this one has the Settings panel.
This is the ESRI Calcite Maps sample code on GitHub: JS Bin
Can someone tell me how to make one of the panels active on page load, for example the Info panel?
Thank you,
Michelle
Solved! Go to Solution.
Michelle,
In the sample you linked to the way that the setting panel is open by default is the "in" class is added to that panel:
<div id="panelBookmarks" class="panel collapse in">
Michelle,
In the sample you linked to the way that the setting panel is open by default is the "in" class is added to that panel:
<div id="panelBookmarks" class="panel collapse in">
Working, thank you Robert