In jQueryMobile, I have written a data-role="listview" component and I want to filter the data including its dividers. That is, when the user inputs some text to search, it may correspond to specific items or to dividers. In this last case, the whole divider and its subitems must be shown. The problem is that the default filtering mechanism ommits the dividers and I don't know how to properly redefine the filterCallback function.

Does anyone know how to achieve this?

The code which I was trying is here.

Thanks in advance.

link|improve this question

your example works for me, pressed 'b' and the 'aaaa' divider was removed – Phill Pafford Jan 13 at 13:11
That's because the second divider includes an element which contains the letter 'b', but not because the divider text includes that letter. Try to search for 'bbbb'. I would like that the divider would appear in this case. – Pablo Jan 13 at 13:37
Could I ask why you need this? The divider is used to group not display a result IMHO – Phill Pafford Jan 13 at 14:10
Well it's a start: jsfiddle.net/DCkDp/2 not fully working but might give you an idea – Phill Pafford Jan 13 at 14:18
The truth is that it's only for private interest, but who knows... maybe 'AAAA', 'BBBB' could be really 'Sales', 'Marketing' or other department names where some people work :) Thanks for your approximation – Pablo Jan 13 at 14:40
show 3 more comments
feedback

2 Answers

up vote 2 down vote accepted

Well I have something:

JS

$("#myList").listview('option', 'filterCallback', function (text, searchValue) { 
    $("li[data-groupoptions]").removeClass('override-ui-screen-hidden');
    $("li[data-groupoptions="+searchValue.toLowerCase()+"]").addClass('override-ui-screen-hidden');
    return text.toLowerCase().indexOf( searchValue ) === -1;
});

CSS

.override-ui-screen-hidden {
    display:block !important;   
}

HTML

<div data-role="page">
    <div data-role="content">
        <ul id="myList" data-role="listview" data-filter="true">
            <li data-role="list-divider" data-groupoptions="aaaa">AAAA</li>
            <li data-groupoptions="aaaa"><a href="index.html">Adam Kinkaid</a></li>
            <li data-groupoptions="aaaa"><a href="index.html">Alex Wickerham</a></li>
            <li data-groupoptions="aaaa"><a href="index.html">Avery Johnson</a></li>
            <li data-role="list-divider" data-groupoptions="bbbb">BBBB</li>
            <li data-groupoptions="bbbb"><a href="index.html">Bob Cabot</a></li>
            <li data-role="list-divider" data-groupoptions="cccc">CCCC</li>
            <li data-groupoptions="cccc"><a href="index.html">Caleb Booth</a></li>
            <li data-groupoptions="cccc"><a href="index.html">Christopher Adams</a></li>
            <li data-groupoptions="cccc"><a href="index.html">Culver James</a></li>
        </ul>
    </div>
</div>
link|improve this answer
Thanks a lot! I only made a small change and instead of selector $("li[data-groupoptions="+searchValue.toLowerCase()+"]") I used $("li[data-groupoptions*="+searchValue.toLowerCase()+"]") so the specific group will also appear when searching for a part of its name. Updated here: jsfiddle.net/DCkDp/25 – Pablo Jan 17 at 7:16
Even better +1 for a nice out of the box question. At first I didn't understand the practical application but now I really like it – Phill Pafford Jan 17 at 13:48
feedback

For including results matching dividers text, I put in each lines a hidden p wich contains the divider's text.

<li>
    <a>
        <p>Item</p>
        <p style='display:none;'><?php echo $my_divider; ?></p>
    </a>
</li>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.