开发者

jquery autocomplete and datepicker compatability issue?

I have a form t开发者_Go百科hat is constructed using ZendX_JQuery_Form, the form contains 2 auto complete inputs and 4 datepickers. The datepickers all worked absolutely fine until I added in the autocomplete fields as well, the autocomplete fields (linking to a backend php action in zend framework) work fine as well but they seem to break the datepicker widgets.

I know very little about JQuery but the javascript that ZF creates seems okay to me:

 $(document).ready(function() {
        $("#firstname").autocomplete({"url":"crm\/candidates\/searchfirstname"});
        $("#lastname").autocomplete({"url":"crm\/candidates\/searchlastname"});
        $("#registeredfrom").datepicker({});
        $("#registeredto").datepicker({});
        $("#updatedfrom").datepicker({});
        $("#updatedto").datepicker({});
 });

Does anyone know of any issues in either JQuery or Zend Framework that or with the code above that might cause this scenario. Also, it would be helpful even if you know there are no issues in either of the frameworks to help me narrow down the search!

Thanks in advance


Caused by the autocomplete code not being included in the 1.7.2 jquery release, downloaded the autocomplete.js 1.3.2 release and included it in the zend view and it works absolutely fine.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜