I have following tree..
<form id="sample"
<div id='jqxTree'>
<ul>
<li>Home</li>
<li item-checked='true' item-expanded='true'>Solutions
<ul>
<li>Education</li>
<li>Financial services</li>
<li>Government</li>
<li item-checked='false'>Manufacturing</li>
<li>Solutions
<ul>
<li>Consumer photo and video</li>
<li>Mobile</li>
</ul>
</li>
<li>All industries and solutions</li>
</ul>
</li>
</ul>
</div>
when submitting the form how can i get the status and id of that check boxes.
And also place it on a array then send to a jsp page using ajax call.
Thanks.