Remove content limit from magento admin grid column -


how remove content limit grid column.i have long text display in grid when display subtract string.i want show full text in grid.

enter image description here

ok found solution add string_limit in addcolumn or addcolumnafter function in grid.php

$this->addcolumnafter('addons', array(             'header' => mage::helper('sales')->__('addons'),             'filter'    => false,             'sortable'  => false,                         'index' => 'addons',             'type'  => 'text',             'string_limit'  => '500', /* added content limit */          ), 'billing_name');    

Comments

Popular posts from this blog

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -

python 3.x - Mapping specific letters onto a list of words -