程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> jqueryui-關於jquery easy UI 樹控件問題。

jqueryui-關於jquery easy UI 樹控件問題。

編輯:編程綜合問答
關於jquery easy UI 樹控件問題。

數控件默認是全部展開的,我想把他弄成默認關閉的怎麼做?
API上是這樣寫的:state:節點狀態,'open' 或 'closed',默認:'open'。如果為'closed'的時候,將不自動展開該節點。
然後我按照他說的寫:

 $(function(){   
        $('#account_ul').tree({
            lines:true,
            state:'closed', 
        }); 
    });

測試數據顯示有虛線,可是還是打開的狀態,怎麼辦?

最佳回答:


是數據源增加,tree的配置沒有state這個配置

     [{
    "id":1,
    "state":"closed",
    "text":"Folder1",
    "iconCls":"icon-save",
    "children":[{
    "text":"File1",
    "checked":true
    },{
    "text":"Books",
    "state":"open",
    "attributes":{
    "url":"/demo/book/abc",
    "price":100
    },
    "children":[{
    "text":"PhotoShop",
    "checked":true
    },{
    "id": 8,
    "text":"Sub Bookds",
    "state":"closed"
    }]
    }]
    },{
    "text":"Languages",
    "state":"closed",
    "children":[{
    "text":"Java"
    },{
    "text":"C#"
    }]
    }]
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved