如何强制我的自定义表格将日期传递给控制器?
$fieldset->addField('start_date', 'date', array(
'label' => Mage::helper('cms')->__('Start Date'),
'after_element_html' => '<small>Set start date</small>',
'tabindex' => 1,
'image' => $this->getSkinUrl('images/grid-cal.gif'),
'format' => Mage::app()->getLocale()->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT)
));
$fieldset->addField('end_date', 'date', array(
'label' => Mage::helper('cms')->__('End Date'),
'after_element_html' => '<small>Set end date</small>',
'tabindex' => 1,
'image' => $this->getSkinUrl('images/grid-cal.gif'),
'format' => Mage::app()->getLocale()->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT)
));
,因此当我单击“保存”时 只是:
Array ( [form_key] => lxc5dY5984398WP
[block_id] => 46 [title] => Block name 1
[description] => test 2 [is_slide] => 1
[identifier] => block_identifier [is_active] => 1
)
选择没有开始日期,没有结束日期或除文本以外的任何其他自定义字段类型。 由于某种原因,它不会传递来自字段类型的任何数据:图像或文件。 我究竟做错了什么 ? 同时,我发现的是:由于某种原因,start_date,end_date无法正常工作。一旦我将字段名称更改为startdate和enddate,它将起作用。那么图片有什么问题吗?