bootstrap-table 增長序號列(支持分頁)

   columns: [
                {                    
                    checkbox: true
                }, {
                    title: '序號',
                    align: 'center',
                    halign: 'center',
                    formatter: function (value, row, index) {
                        var options = $table.bootstrapTable('getOptions');
                        return options.pageSize * (options.pageNumber - 1) + index + 1;
                    }
                },{
                    field: 'available',
                    title: '狀態',
                    sortable: true
                }

            ],
相關文章
相關標籤/搜索