php - How to set min/max date add default and disable future/pass date for admin grid massaction -
can set min / max (today) on massaction
date on custom admin grid , disable click date on future/pass , set default value if user don't want select?
my code follows:
$this->getmassactionblock()->additem('setdate', array( 'label' => $this->__('set date'), 'url' => $this->geturl('*/*/masssetdate', array('' => '')), 'confirm' => $this->__('are sure?'), 'additional' => array( 'setmaxdate' => array( 'name' => 'setmaxdate', 'time' => true, 'input' => 'datetime', 'type' => 'datetime', 'class' => 'required-entry', 'label' => mage::helper('setcustomdate')->__('set max date'), //'gmtoffset' => true, 'image' => '/skin/adminhtml/default/default/images/grid-cal.gif', 'format' => 'yyyy-mm-dd h:mm:ss' ) ) ));