Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道如何使用 infyom laravel-generator yajra 数据表将列与数值右对齐。
从此文档中,您添加了渲染参数,但我没有找到使用 Infyom 添加它的解决方案。
预先感谢。
在 app/DataTables/Your_modelDataTable.php 中,在函数 getColums 中,更改字段定义
将“您的字段”更改为
'your_field'=>['render'=>'function(){return "<div style="text-align:right;">"+data+"<\div>"}'],
在 GitHub 上查看