I want to disable selection of all nodes, except leafs. I mean, user should be able to select (radiobutton check) nodes only if it's leaf node of the tree. I see the docs and is indicated to use:

{title: "Sub-item 4.3 (hideCheckbox)", hideCheckbox: true },

But it's usefull if you create a tree from js data. I created the tree using an

    markup. I think, the solution is near if using:

    <li data='....'>Text Node
    

    Thanks in advance!

    link|improve this question
    feedback

    1 Answer

    up vote 1 down vote accepted

    The data attribute is parsed as JSON, and then used to expand the data options, so

    <li data='"hideCheckbox": true'>Text Node
    

    should work.

    link|improve this answer
    works like a charm! thanks a lot!!! – jFunez Nov 24 '11 at 19:33
    feedback

    Your Answer

     
    or
    required, but never shown

    Not the answer you're looking for? Browse other questions tagged or ask your own question.