簡體   English   中英

jQuery jTable-如何添加多選下拉列表?

[英]Jquery jTable - how to add multiselect dropdown?

我想向字段添加多選功能。 這是我當前配置jtable的代碼。 如何為指定字段實現多選功能

fields: {
        firstName: {
            title: 'name',
            width: '20%'
        },
        surname: {
            title: 'surname',
            width: '20%'
        },
        userName: {
            title: 'username',
            width: '20%',
            key: true,
            create: true
        },
        enabled: {
            title: 'status',
            type: 'radiobutton',
            options: [
                {Value: true, DisplayText: 'enabled'},
                {Value: false, DisplayText: 'disabled'}
            ],
            width: '20%'
        },
        roles: {
            /***********************************************
            // i wanna to enable multi-select for this field
            /***********************************************
            title: 'roles',
            options: [
                {Value: "ROLE_ADMIN", DisplayText: "admin"},
                {Value: "ROLE_USER", DisplayText: "user"}
            ]
        }
    }

字段類型應為multiselectddl

確保您正在使用此存儲庫中可用的jTable文件

https://github.com/stanleyta/jtable/commit/6876303615a239dc409dee481a877a8f934f340d

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM