zendx

How to set the date format of a ZendX_JQuery_Form_Element_DatePicker?

I am trying to set the date format of the date picker element, but I can't get it to work. How do you set the date format of a ZendX_JQuery_Form_Element_DatePicker element? Solution: Strange...I tried my original code sample again, and it worked. $element = new ZendX_JQuery_Form_Element_DatePicker('date', array( 'jQueryParams' => ...

ZendX date picker example not working

Hi Stackland I am rather new to ZendX and I really wanted to get the simple JQuery example on Zend to get working.I have followed the example on the link below but all I get is a plain textbox without any datepicker functionality as I expected. http://stackoverflow.com/questions/1616857/best-way-to-start-using-jquery-in-a-zend-framewor...

Any good example about Autocomplete with Zend Framework? (JQuery and ZendX)

Hi guys, I have a problem, I don't find good examples of "autocomplete" with zend framework (using jQuery with zendx). I need one that works to understand how to develop it. Someone has done it? Thank you very much in advance PS: I know how to do it without ZendX, I mean, doing the form myself (and using jquery as usual with a autoco...

Is ZendX still active (Specifically ZendX_JQuery) ?

I need to have an autocomplete functionality using jquery, and I've encountered ZendX_JQuery which has such functionality available. However, I've noticed that the entire ZendX_JQuery classes, are a bit old (the default jquery version is 1.3.2, and jquery ui 1.7.1). (see http://framework.zend.com/svn/framework/extras/branches/release-1....

ZendX_JQuery dialogContainer usage

Hi ! I'm aming to make use of the ZendX_JQuery dialogContainer view helper, in order to produce a modal window, were users can input specified information(for example send a message). I'm trying to use the dialogContainer view helper in this fashion. First of, include the ZendX library in the applications library folder. Secondly, inc...

Zend Framework - how to apply my own js plugin?

How can i add my own jQuery plug-in located in my zf path "public/js/isround.js"? - to apply using Zend framework instead of manually putting this: <script> $("#world").isRound('myPlugin'); </script> jQuery setup is working $this->jQuery()->setLocalPath('http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js') ...

ZendX/Jquery ui - open dialog box on click

Hi, When a user clicks on the button delete, I want a dialog box to appear, to confirm the delete. I can get the dialog box to appear on page load, but am running into problems getting it to appear on a button click instead: <?php echo $this->dialogContainer( 'dialog', 'Are you sure you want to delete this postcode?', array( 'autoO...

Why is ZendX Autocomplete not working??

Hey, I'm setting up my first ZendX_JQuery_Form. In my controller, I've got the following code: $form = new ZendX_JQuery_Form (); $date1 = new ZendX_JQuery_Form_Element_DatePicker ( 'date1', array ('label' => 'Date:' ) ); $form->addElement ( $date1 ); $elem = new ZendX_JQuery_Form_Element_AutoComplete( 'ac1', array('label' => 'Autocom...

How to use DataTables jQuery object with ZendX_jQuery

Hi Everyone, I am trying to use ZendX_jQuery and Datatables for a project. In my layout file I have: if($this->jQuery()->isEnabled()){ $this->jQuery()->setLocalPath('/js/jquery/js/jquery-1.4.2.min.js') ->setUiLocalPath('/js/jquery/js/jquery-ui-1.8.4.custom.min.js') ->addStylesheet('/css/smoothness/custom.css') ->addJa...

ZendX autocomplete with a callback

Hi I am using ZendX autocomplete to populate a postcode field the JSON objects returns looking like this {"77424039":"Lonehill - Sandton - GTG"} what I'd want to do is grab the 1st segment "77424039" and populate a hidden field while the second segment "Lonehill - Sandton - GTG" populates the actual field I assume i can do this wit...

Set jQueryUiPath in Zend Framework project

Hi, in my main layout template I set jQuery paths: if ($this->jQuery ()->isEnabled ()) { $this->jQuery ()->setLocalPath ( $this->baseUrl () . '/js/jquery/jquery-1.4.2.min.js' )->setUiLocalPath ( $this->baseUrl () . '/js/jquery/jquery-ui-1.8.4.custom.min.js' )->addStyleSheet ( $this->baseUrl () . '/js/jquery/css/custom-theme/jquery-...