سؤال

How to remove content limit from grid column.i have long text to display it in grid but when display it subtract the string.i want to show full text in the grid.

enter image description here

هل كانت مفيدة؟

المحلول

Ok Found solution just 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 for content limit */

        ), 'billing_name');   
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top