Is it possible to have a tree structure with check boxes in JQuery MObile. I did not find any thing in demos.

I wanted something similar this image: Is there any alternative way we can achieve this?enter image description here

link|improve this question

1  
Because of screen width, rather than westing time to achieve this, you could show/hide child elements. That's my opinion. – Vikas Jun 10 '11 at 11:24
I have to agree with @Vikas, a tree control is a bad idea for a mobile device. Instead makes lots of <ul> jquery-mobile style lists. – Adam Gent Jun 10 '11 at 12:52
feedback

1 Answer

up vote 8 down vote accepted

Well it's just a concept but I have a couple working examples:

HTML

<div data-role="page"> 
    <div data-role="content">
        <div data-role="collapsible" data-collapsed="true"> 
            <h3>
                <input type="checkbox" name="checkbox-1a" id="checkbox-1a" class="custom" /> 
                <label for="checkbox-1a">Cheetos</label> 
            </h3> 
            <p>
                <div  data-role="fieldcontain"> 
                     <fieldset data-role="controlgroup"> 
                        <legend>Choose as many snacks as you'd like:</legend> 
                        <input type="checkbox" name="checkbox-1aa" id="checkbox-1aa" class="custom" /> 
                        <label for="checkbox-1aa">Cheetos</label> 

                        <input type="checkbox" name="checkbox-2aa" id="checkbox-2aa" class="custom" /> 
                        <label for="checkbox-2aa">Doritos</label> 

                        <input type="checkbox" name="checkbox-3aa" id="checkbox-3aa" class="custom" /> 
                        <label for="checkbox-3aa">Fritos</label> 

                        <input type="checkbox" name="checkbox-4aa" id="checkbox-4aa" class="custom" /> 
                        <label for="checkbox-4aa">Sun Chips</label> 
                    </fieldset> 
                </div> 
            </p> 
        </div>
    </div>
</div>
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.