magento在admin(自定义模块)中将日历日期选择器添加到自定义表单

时间:2012-11-08 10:20:22

标签: calendar magento

我已经从 - Modulecreator创建了自定义模块。
现在我想在我的自定义表单中添加日历日期选择器字段 - (在管理员方面)。与From date {{1}一样}。

在提交时,应将从日期选择器中选择的值添加到数据库中。
谢谢。

1 个答案:

答案 0 :(得分:18)

$fieldset->addField('date', 'date', array(
    'name'               => 'date',
    'label'              => Mage::helper('your_module_name')->__('Date'),
    'after_element_html' => '<small>Comments</small>',
    'tabindex'           => 1,
    'image'              => $this->getSkinUrl('images/grid-cal.gif'),
    'format'             => Mage::app()->getLocale()->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT) ,
    'value'              => date( Mage::app()->getLocale()->getDateStrFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT),
                                  strtotime('next weekday') )
));