0

I have a Zf2 form date element and i use it this way,

$this->add(array(
            'type' => 'Zend\Form\Element\Date',
            'name' => 'releasedate',
            'options' => array(
                'label' => 'Release Date'
            ),
            'attributes' => array(
                'min' => '2012-01-01',
                'max' => '2020-01-01',
                'step' => '1', 
            )
        ));

So in chrome i get a date picker but not in safari or firefox ? i need to do any new configurations for that ?

4

2 回答 2

5

并非所有浏览器都支持输入类型日期 http://caniuse.com/input-datetime

于 2013-11-01T21:01:39.980 回答
1

这是一个典型的行为,对于 Date 类型,原因是 Date 类型与 HTML 5 Features 相关联,并且所有浏览器都不支持它,您必须使用一些不同的东西,例如 Jquery Calendar 然后将日期掩码为(显然是在发布数据之后)

 Zend\Form\Element\Date
于 2013-11-01T21:22:28.643 回答