我需要更改以在GROCERY CRUD(CodeIgniter framewoks)中显示两行(或更多)字段?
在examples on site我看到了我需要的表格。 但我查看并查看我的表格this example
我有一些50-100个字符的列,我需要显示它们的所有内容。但现在我得到My field cont...
而不是:
'My field
content'
答案 0 :(得分:1)
如果您使用的是GC版本1.3+,则可以将grocery_crud_character_limiter
配置选项更改为零:
//The character limiter at the list page, zero(0) value if you don't want character limiter at your list page
$config['grocery_crud_character_limiter'] = 30;
在此文件中:
应用/配置/ grocery_crud.php
这是系统范围的设置。如果您只想影响某些列表,则必须添加一些代码:
$crud->callback_column('text_to_show', array($this, '_full_text'));
function _full_text($value, $row)
{
return $value = wordwrap($row->text_to_show, 100, "<br>", true);
}
致谢此页面:http://www.grocerycrud.com/forums/topic/339-list-showing-data-row-without-limitation-of-chars/