jstree-table icon indicating copy to clipboard operation
jstree-table copied to clipboard

How to put column data on html render time

Open kvelaro opened this issue 6 years ago • 0 comments

I build jstree when rendering page, not after page is loaded with ajax or predefined data as on your examples

<ul>
    <li>Root node 1
      <ul>
        <li>Child node 1</li>
        <li><a href="#">Child node 2</a></li>
      </ul>
    </li>
  </ul>

So my question is: How to insert that data to html? Something like <li><a href="#" data-columnname="columnvalue">Child node 2</a></li> not working

kvelaro avatar Aug 17 '18 14:08 kvelaro