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

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

javascript - jquery or ashx not working -

inno setup - TLabel or TNewStaticText - change .Font.Style on Focus like Cursor changes with .Cursor -