Grouped collapsible with listviews - expanded by default

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:

  1. <div data-role="collapsibleset" data-theme="a" data-content-theme="b">
  2.      <div data-role="collapsible">
  3.          <ul data-role="listview" data-theme="a" data-divider-theme="b" data-filter="true">
  4.                <li> ... </li>
  5.                <li> ... </li>
  6.          </ul>
  7.      </div>
  8. </div>

How is it done?