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

hibernate - How to load global settings frequently used in application in Java -

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

objective c - Ownership modifiers with manual reference counting -