How to set data-theme b in data-role collapsible
Unable to set the data-theme="b" to plus minus icons in data-role="collapsible" with data-theme="b", its plus minus get data-theme="d" by default... can we replace the data-theme by any chance.
I need plus minus icons inline to the theme b arrow with dark gray shade.
Actually, I just want to show hide the sub content in list view / collapsible.. pls Suggest?
following is the html -
- <!-- -->
- <div data-role="collapsible-set" >
- <div data-role="collapsible" data-collapsed="true" data-headingontop="false" data-collapsedheadingtext="more..." data-expandedheadingtext="less..." data-theme="b" >
- <h3><a href="#" class="ui-link-inherit" >I'm a header in a set of collapsibles</a></h3>
- <div class="details" aria-hidden="ture">
- <p>I'm the collapsible content. </p>
- </div>
- </div>
- <div data-role="collapsible" data-collapsed="true" data-headingontop="false" data-collapsedheadingtext="more..." data-expandedheadingtext="less..." data-theme="b" >
- <h3 ><a href="#" class="ui-link-inherit">I'm a header in a set of collapsibles</a></h3>
- <div class="details" aria-hidden="ture">
- <p>I'm the collapsible content. </p>
- </div>
- </div>
- <div data-role="collapsible" data-collapsed="true" data-headingontop="false" data-collapsedheadingtext="more..." data-expandedheadingtext="less..." data-theme="b" >
- <h3 ><a href="#" class="ui-link-inherit">I'm a header in a set of collapsibles</a></h3>
- <div class="details" aria-hidden="ture">
- <p>I'm the collapsible content. </p>
- </div>
- </div>
- </div>
- <!-- -->