如何在magento admin的自定义网格中设置文本框的值?

时间:2014-02-27 07:32:24

标签: php magento magento-1.7

我在列中添加了自定义文本框。但我无法获取其价值。here i attach what i did

我做了一些这种类型的编码来显示文本框。但问题是如何为文本框设置值。

    $html = '<input type="text" ';
    $html .= 'name="' . $this->getColumn()->getId() . '" ';
    $html .= 'id="' . $this->getColumn()->getId() . '" ';
    $html .= 'value=""';
    $html .= 'class="input-text ' . $this->getColumn()->getInlineCss() . '"/>';

1 个答案:

答案 0 :(得分:2)

你好检查下面的代码可能会对你有所帮助

$this->addColumn("sort_order", array(
                "header" => Mage::helper("yourmodulename")->__("Sort Order"),
                "align" =>"left",
                "index" => "sort_order",
                "type"      => "input",
                ));