【发布时间】:2023-03-04 12:01:01
【问题描述】:
随着 Yii2 的最新更新,字形图标不再正确显示。我想普遍使用字体很棒的图标。
如何在一处更改所有 GridView 实例的 ActionColumn 输出?
【问题讨论】:
标签: gridview yii2 icons font-awesome
随着 Yii2 的最新更新,字形图标不再正确显示。我想普遍使用字体很棒的图标。
如何在一处更改所有 GridView 实例的 ActionColumn 输出?
【问题讨论】:
标签: gridview yii2 icons font-awesome
您可以利用依赖注入容器作为described here 并将其设置为:
\Yii::$container->set('yii\grid\ActionColumn', [/* new default configuration here */]);
或者,如果您希望扩展类来修改它,您可以执行上述文档中进一步描述的操作并为其设置新定义:
$container->setDefinitions([
'yii\grid\ActionColumn' => 'app\components\NewActionColumn',
]);
【讨论】:
NewActionColumn - 是的,它用于扩展网格的 ActionColumn,您可以将其放置在有效命名空间下的任何位置。