0

在 phpgrid 中,我使用该方法添加了一个虚拟列(db 中不存在该列)add_column。但问题是我不能让它出现在第一个位置(即表格的第一列)。该方法的文档add_column说它将附加在 phpgrid 的其他列add_method 的末尾。是否可以将其添加到第一列/位置?我尝试了各种 jquery hacks,但似乎没有一个有用。

下面是 add_column 的代码

PHP 代码

$dg->add_column("custom", array('name'          => 'custom',
                                'index'         => 'custom',
                                'width'         => '100',
                                'formatter'     => '###customAction###',
                                'formatoptions' => array('keys' => true, 'editbutton' => true, 'delbutton' => true)), 'Custom Action');

JAVASCRIPT代码

function customAction(cellValue, options, rowdata) {
        output = '<span class="custom-action"><i class="glyphicon glyphicon-plus custom" data-transaction-id="' + options.rowId + '"></i></span>';
        return output;
    }
4

1 回答 1

1

The last parameter indicates the column position.

$dg->add_column('total', array('name'=>'total', 'index'=>'total', 'width'=>'100', 'align'=>'right', 'sortable'=>false,
    'formatter'=>$col_formatter),
        'Total (Virtual)', 0);

This should put the virtual column to the index 0, the first column.

于 2017-02-21T22:49:16.387 回答