Grouped collapsible with listviews - expanded by default
I have a series of
Grouped collapsible with listviews which work well for what I need. But for one of these listviews I need it expanded by default. As it stands now, these are always collapsed by default. I have read through the listview docs and can't find how to do this. I want the other collapsible listviews collapsed by default, just as it is now, but for 1 of them, I need expanded by default.
Here is mine:
- <div data-role="collapsibleset" data-theme="a" data-content-theme="b">
- <div data-role="collapsible">
- <ul data-role="listview" data-theme="a" data-divider-theme="b" data-filter="true">
- <li> ... </li>
- <li> ... </li>
- </ul>
- </div>
- </div>
How is it done?