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

Spring Boot + JPA + Hibernate: Unable to locate persister -

go - Golang: panic: runtime error: invalid memory address or nil pointer dereference using bufio.Scanner -

c - double free or corruption (fasttop) -