新的字段類型,在該文件中
應用程序\代碼\本地\命名空間\ Mymodulw \塊\ Myblock \編輯\標籤\ form.php的 您可以添加的財產以後這樣與Magento的管理頁面中的自定義模塊中創建管理模塊
$fieldset->addField('title', 'text', array(
'label' => Mage::helper('mymodule')->__('Title'),
'class' => 'required-entry',
'required' => true,
'name' => 'title',
));
此創建編輯頁文本類型的輸入,我想要做的就是創建一個新的類型,然後我就能做出這樣的事情
$fieldset->addField('title', 'mytype', array(
'label' => Mage::helper('mymodule')->__('Title'),
'class' => 'required-entry',
'required' => true,
'name' => 'title',
));
你能看到差異? 感謝
是嗎?代碼是不同的。你想問另一個問題嗎? – 2010-09-09 14:33:39
是的,代碼是diference,哈哈,但我的問題是如何創建一個自定義字段類型 – 2010-09-09 15:01:56