我想要将网格列中的文本换行。网格是使用模型创建的。我找到了format_wrap-method,但似乎没有做任何事情:
$grid->format_wrap('description');
我做错了什么? 谢谢, 叶普
答案 0 :(得分:2)
请勿直接使用此类方法 这只是使用格式化程序的正确方法:
$grid->addFormatter('description','wrap');
https://github.com/atk4/atk4/blob/master/lib/Grid/Basic.php#L237