I am trying to create form element using Zend_Config_Ini. Among other elements, I have a datepicker element (zendx_jquery_form_element_datepicker) which fails to work.

I have tried setting the element like so:

user.login.elements.Date.type = "datePicker"

and

user.login.elements.Date.type = "zendx_jquery_form_element_datepicker"

either way ends in the same error message:

Plugin by name 'Zendx_jquery_form_element_datepicker' was not found in the registry; used paths: Zend_Form_Element_: Zend/Form/Element/

or

Plugin by name 'DatePicker' was not found in the registry; used paths: Zend_Form_Element_: Zend/Form/Element/

Please help, thanks.

link|improve this question

77% accept rate
feedback

2 Answers

I dont know how to make form using ini file. But I know Zendx_jquery_form_element_datepicker is not standed zend form element. It is make by ZendX. So you cant use it as zend element.

link|improve this answer
Thanks. I know the datepicker is not a standard Zend Form element, however, it does extend the Zend Form Element (I think) and as such might be able to behave as such. My opinion is that there might be a need to search within the ZendX folder to pickup this and others. Any ideas? Anybody? Thanks – pi. Sep 1 '11 at 17:38
feedback

Try

user.login.elements.Date.type = "DatePicker"

The class name is class

ZendX_JQuery_Form_Element_DatePicker 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.