jquery - jstree structure change use DIV Spans -


is possible convert ul li structure of jstree div span structure same indentation?

<div id="html1" style="width:200px; border:1px solid red;">             <ul>                 <li>root1                     <ul>                         <li>child1</li>                         <li>child2</li>                     </ul>                 </li>                 <li>root2                     <ul>                         <li>child1                             <ul>                                 <li>child   11</li>                                 <li>child   22</li>                             </ul>                         </li>                         <li>child2</li>                     </ul>                 </li>             </ul>         </div> 

'$("#html1").jstree()'

can same achieved?

try this:

plugins: ["wholerow", "checkbox", "json_data", "ui", "themes"] 

in jstree rendering function. highlight complete row of tree structure. demo


Comments

Popular posts from this blog

PHP while loop dynamic rowspan -

timer - Java TimerTask cancel -

android - How to read a column value in parse.com without accessing an object or a pointer -