Need clarification the use of data-inset
Version JQM 1.2.0
Hate to tap into your busy day for a simple question, however I have tried ti implement data-inset on several pages of my site I'm building as a learning experience. It works great and as explained in the doc, but, on one page it will not work, no matter what I do. I know it's me but I can't figure out what I did. I referenced several books I purchased,and looked at my working pages.
My understanding on inst is if not specified, the default is true. Is that correct? I tried removing data-inset from the collapsible and still had no inset.
I do not want you to solve my problem, but point me in the right direction.
Code collapsible-set:
- <!-- /header -->
- <!-- content -->
- <div data-role="collapsible-set" data-inset="true">
- <div data-role="collapsible" data-iconpos="right" data-mini="true">
- <h2>Chicken Cacciatore</h2>
- <p>
- Fresh Chicken Tenders sauteed with fresh Mushrooms, Peas, Green Peppers, and Black
- Olives in a Red or Marsella Wine served with Spaghetti.
- </p>
- <table class="alignCtr">
- <tr>
- <td>Lunch: </td><td><strong>$12.00</strong> </td>
- <td>Dinner: </td><td><strong>$15.00</strong></td>
- </tr>
- </table>
- </div>
- <div data-role="collapsible" data-iconpos="right" data-mini="true">
- <h2>Chicken Sorrentino</h2>
- <p>
- Chicken Breast Bacon, Mushrooms and Olives, baked with Mozzarella Cheese in a Marsela
- Wine Sauce served with Spahgetti.
- </p>
- <table class="alignCtr">
- <tr>
- <td>Lunch: </td><td><strong>$12.00</strong> </td>
- <td>Dinner: </td><td><strong>$15.00</strong></td>
- </tr>
- </table>
- </div>
- <div data-role="collapsible" data-iconpos="right" data-mini="true">
- <h2>Chicken Marsala</h2>
- <p>
- Chicken Breast, and sliced Mushroons sauteed in a Marsala Wine Sauce
- Three Fresh Italian Cheeses with Homemade Meat or Mariana Sauce.
- </p>
- <table class="alignCtr">
- <tr>
- <td>Lunch: </td><td><strong>$12.00</strong> </td>
- <td>Dinner: </td><td><strong>$15.00</strong>/td>
- </tr>
- </table>
- </div>
Thans for taking time to check-out my problen.