jQWidgets Forums

Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • in reply to: jqxTree shaking problem in IE jqxTree shaking problem in IE #52115

    qjzl
    Participant


    in reply to: jqxTree shaking problem in IE jqxTree shaking problem in IE #51988

    qjzl
    Participant

    in reply to: jqxTree shaking problem in IE jqxTree shaking problem in IE #51987

    qjzl
    Participant

    In the example: http://jsfiddle.net/jqwidgets/M9KaF/

    Change the width to 100px, then repeatedly click “Financial services” node.

    in reply to: jqxTree shaking problem in IE jqxTree shaking problem in IE #51929

    qjzl
    Participant

    That is just part of the code.

    
    <!DOCTYPE html>
    <html lang="en" class="no-js"> 
      <head>
        <link href="/Scripts/jqwidgets/jqwidgets/styles/jqx.base.css" rel="stylesheet" />
        <link href="/Scripts/jqwidgets/jqwidgets/styles/jqx.energyblue.css" rel="stylesheet" />
        <script src="/Scripts/jqwidgets/jqwidgets/jqx-all.js"></script>
    
        <script>
            jQuery(document).ready(function () {
               $('#jqxTree').jqxTree({
                   height: '300px',
                   theme: 'energyblue',
                   width: '150px'
               });            
            });
        </script>
    </head>
    <body>
    <div id='jqxTree'>
        <ul>
            <li item-selected='true'>Home</li>
            <li item-expanded='true'>Solutions
                <ul>
                    <li>Education</li>
                    <li>Financial services</li>
                    <li>Government</li>
                    <li>Manufacturing</li>
                    <li>Solutions
                        <ul>
                            <li>Consumer photo and video</li>
                            <li>Mobile</li>
                            <li>Rich Internet applications</li>
                            <li>Technical communication</li>
                            <li>Training and eLearning</li>
                            <li>Web conferencing</li>
                        </ul>
                    </li>
                    <li>All industries and solutions</li>
                </ul>
            </li>
        </ul>
    </div>
    
    </body>
    </html>
    
    in reply to: jqxTree shaking problem in IE jqxTree shaking problem in IE #51921

    qjzl
    Participant
    <div id='jqxTree'>
        <ul>
            <li item-selected='true'>Home</li>
            <li item-expanded='true'>Solutions
                <ul>
                    <li>Education</li>
                    <li>Financial services</li>
                    <li>Government</li>
                    <li>Manufacturing</li>
                    <li>Solutions
                        <ul>
                            <li>Consumer photo and video</li>
                            <li>Mobile</li>
                            <li>Rich Internet applications</li>
                            <li>Technical communication</li>
                            <li>Training and eLearning</li>
                            <li>Web conferencing</li>
                        </ul>
                    </li>
                    <li>All industries and solutions</li>
                </ul>
            </li>
        </ul>
    </div>
    
    <script>
       $('#jqxTree').jqxTree({
           height: '300px',
           theme: 'energyblue',
           width: '150px'
       });
    </script>
Viewing 5 posts - 1 through 5 (of 5 total)