problems with nested listviews and data filter

problems with nested listviews and data filter

Good afternoon.

      i have a application with two nested listviews, in another words, i have a listview, and into a <li> tag i have another listview, the issue is the data-filter which i put in the external listview, but the jquery mobile render for the nested listview too, then my application appears several search fields which do the same thing rather than filter each list. the jquery mobile build a data filter field for each list, i try to put data-filter="false" in the nested listview but no works. how i can solve this problem???  the code of my test it´s bellow

  1. <html>
  2. <head> 
  3. <meta name="viewport" content="width=device-width, initial-scale=1"> 
  4. <link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
  5. <script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
  6. <script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
  7. </head> 
  8. <body>
  9. <div data-role="page">
  10. <div data-role="header">
  11. <h1>My Title</h1>
  12. </div><!-- /header -->
  13. <div data-role="content">
  14. <ul id="external" data-role="listview" data-theme="b" data-filter="true">
  15. <li>
  16. <div data-role="collapsible">
  17. <h3>first</h3>
  18. <p> 1 </p> 
  19. <ul id="nested" data-role="listview" data-inset="true" data-filter="false">
  20. <li> <a> 1 nested </a> </li>
  21. <li> <a> 2 nested </a> </li>
  22. <li> <a> 3 nested </a> </li>
  23. </ul>
  24. </div>
  25. </li>
  26. <li>
  27. <div data-role="collapsible">
  28. <h3>Second</h3>
  29. <p> 2 </p> 
  30. <ul id="nested2" data-role="listview" data-inset="true" data-filter="false">
  31. <li> <a> 4 nested </a> </li>
  32. <li> <a> 5 nested </a> </li>
  33. </ul>
  34. </div>
  35. </li>
  36. <li>
  37. <div data-role="collapsible">
  38. <h3>Third</h3>
  39. <p> 3 </p> 
  40. </div>
  41. </li>
  42. </ul>
  43. </div>
  44. </div>
  45. </body>
  46. </html>