溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

LigerUI - 樹表格的數(shù)據(jù)來自Server

發(fā)布時間:2020-08-06 14:07:47 來源:網(wǎng)絡(luò) 閱讀:1061 作者:tywali 欄目:開發(fā)技術(shù)

官方的Demo只提供了樹表格的數(shù)據(jù)來自本地數(shù)據(jù)的代碼,而實際上從Server獲取數(shù)據(jù)的情況更為常見,通過跟蹤源碼,發(fā)現(xiàn)其參數(shù)應(yīng)該如下配置:

columns: [

    {

        "name": 'fdisplay',

        "display": "菜單項名稱",

        "align": "left",

        "width": 300,

        "type": 'text',

        'id': 'menutree'

    },

    {

        "name": 'fvisible',

        "display": "可視",

        "align": "center",

        "width": 70,

        "type": 'checkbox',

        'editor': {

            'type': 'checkbox',

        }

    },

    {

        "name": 'fclick',

        "display": "點擊",

        "align": "center",

        "width": 70,

        "type": 'checkbox',

        'editor': {

            'type': 'checkbox',

        }

    },

],

tree: {

    columnId: 'menutree',

    idField: 'fmid',

    parentIDField: 'fpid',

},

 

其中,重要的參數(shù)用紅色字體標(biāo)出。特別需要指出的是idFieldparentIDField字段,在LigerUI的樹控件中,類似字段的名稱為idFieldNameparentIDFieldName,到了這里后面的“Name”給去掉了。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI