jQuery UI Widgets Forums Navigation Tree jqxTree collapseItem Problem

Tagged: 

This topic contains 2 replies, has 2 voices, and was last updated by  gibafsar 11 years, 6 months ago.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
  • jqxTree collapseItem Problem #26192

    gibafsar
    Participant
    Hi,
    I use jqxTree and I defined this function for select item by value:

     

        function GetjqxTreeItemByValue(jqxTreeObject, value) {
            var rItem = null;
            var TreeItems = jqxTreeObject.jqxTree(‘getItems’);
            for (var i in TreeItems) {
                jqxTreeObject.jqxTree(‘expandItem’, TreeItems[i]);
                if (TreeItems[i][‘value’] == value) {
                    rItem = TreeItems[i];
                    break;
                }
                jqxTreeObject.jqxTree(‘collapseItem’, TreeItems[i]);
            }
            return rItem;
        }

     

    Everything is good working but collapseItem row. I tried this row stand alone and it’s worked but in this case it’s not working.

     

    I’m waiting for help.

     

    Thanks;

     

    Note: I’m using jqx-all.js and v2.9.3
    jqxTree collapseItem Problem #26303

    Peter Stoev
    Keymaster

    Hi gibafsar,

    The code will not work because it is not possible to expand and collapse a Tree item at the same time. You can collapse an item after it is expanded i.e after the expand animation has completed.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    jqxTree collapseItem Problem #26320

    gibafsar
    Participant

    Thank you very much for your answer Peter.

    I’ll try another way to solve this problem perforce or I may leave it in this case. It won’t be big problem.

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.