码迷,mamicode.com
首页 > 其他好文 > 详细

原创: EasyUI Tree 最后一级 节点 横向排列

时间:2014-11-16 15:49:11      阅读:382      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   ar   sp   strong   div   on   

原创: EasyUI  Tree 最后一级 节点 横向排列

转载请指明出处

 

必须要写在: onLoadSuccess 事件中

 

 

            ddAuthTree.tree({
                lines: true,
                checkbox: true,
                cascadeCheck: true,
                lines: false,
                url: authTreeUrl,
                onLoadSuccess:function(node,data){
                    ddAuthTree.find("ul >li:not(:has(ul))").css(‘float‘, ‘left‘);   // 选择最后一个节点 并添加 float:left
                    ddAuthTree.find("ul >li:has(ul)").css(‘clear‘, ‘both‘);         // 给非最后节点添加 clear:both 
                },
                onClick: function (node) {

                }
            });

 

原创: EasyUI Tree 最后一级 节点 横向排列

标签:style   blog   io   color   ar   sp   strong   div   on   

原文地址:http://www.cnblogs.com/wuyifu/p/4101421.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!