jQWidgets Forums

jQuery UI Widgets Forums Navigation Tree jqxtree expand onmouseover

This topic contains 1 reply, has 1 voice, and was last updated by  archange 8 years, 8 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • jqxtree expand onmouseover #85705

    archange
    Participant

    Hi,

    I’m using jqxtree with json data, all my data are well displayed in my page and I would like to expand nodes without click on node but only using onmouseover …

    Any solution ?

    var records = dataAdapter.getRecordsHierarchy('id', 'parentId', 'items', [{ name: 'value', map: 'label'}]);
                                       $('#jqxWidget').jqxTree({ source: records, width: '600px' });
    jqxtree expand onmouseover #85710

    archange
    Participant

    I find the solution myself …

    
                               $("#jqxWidget .jqx-tree-item").mouseenter(function (event) {
                                   var item = event.target.parentElement;
                                   $('#jqxWidget').jqxTree('expandItem', item);
                               });
    
Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.