I need to have 3 jquery mobile listviews on a page (using listviewbeforefilter) controlled by one master text input.
My idea was that I create three normal listviews:
<div>
<input type="text" id="MasterBar">
</div>
<div data-theme="a" class="ui-block-a">
<ul id="ListResults1" data-filter-theme="b" data-role="listview" data-inset="true" data-filter="true" data-filter-placeholder="Enter Terms..." data-mini="true" data-split-icon="info" data-theme="a" data-divider-theme="a" data-split-theme="a"></ul>
</div>
<div data-theme="a" class="ui-block-b">
<ul id="ListResults2" data-filter-theme="b" data-role="listview" data-inset="true" data-filter="true" data-filter-placeholder="Enter Terms..." data-mini="true" data-split-icon="info" data-theme="a" data-divider-theme="a" data-split-theme="a"></ul>
</div>
<div data-theme="a" class="ui-block-c">
<ul id="ListResults3" data-filter-theme="b" data-role="listview" data-inset="true" data-filter="true" data-filter-placeholder="Enter Terms..." data-mini="true" data-split-icon="info" data-theme="a" data-divider-theme="a" data-split-theme="a"></ul>
</div>
When the user enters text into the master input it should trigger the three listviews. The sub-listviews need to be in different columns to the $('#MasterBar')
input.
$(document).ready(function()
{
//hide all of the input fields
$('.ui-input-search').hide();
('#MasterBar').keyup(function()
{
$("input[data-type='search']").val(this.value);
});
});
It doesn't appear to work at the moment. I can't figure out how to trigger the event.
$("input[data-type='search']").trigger("listviewbeforefilter");
Is this workable or is there a better way to do it?
set a class like test on your listViews and try this code: