Questions tagged [zendx]

ZendX stands for “Zend Framework – Extras Library"

ZendX was created with the intention of improving and building upon the already solid Zend Framework. They were introduced since Zend Framework version 1.7. Whilst the Zend Framework contains many great features, a need was felt to extend upon it's functionality. Rather than mix and match frameworks a repository of useful classes was created that built upon existing Zend Framework functionality.

The most notable additions to the library at present are the porting of the Java collections framework across to PHP and a RESTful style PHP web services implementation reminiscent of .NET web services.

Reference:

52 questions
5
votes
3 answers

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

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…
joanballester
  • 207
  • 3
  • 11
4
votes
1 answer

is ZendX_JQuery shutdown in zend 2

i downloaded zend 2 dev3 but it is missing ZendX_JQuery, is development team going to shutdown ZendX_JQuery in zend2 ?
php.khan
  • 1,224
  • 1
  • 12
  • 21
3
votes
2 answers

How to subForm a subForm with ZendX_Jquery TabContainer/TabPane?

I try to get Zend_From working with nested jquery tabs. I know how to do it with plain HTML/jQuery, and i also have a single tab row working with decorators and so on. (see http://i56.tinypic.com/9zt5qf.jpg for an example) Has anyone managed to…
Rufinus
  • 29,200
  • 6
  • 68
  • 84
2
votes
1 answer

ZendX DatePicker issue under Ajax request

I am facing issue while i load a form on ajax request. i followed the steps : Enable jqueryUi in layout. creates a form element like : $dob = new ZendX_JQuery_Form_Element_DatePicker('patient_dob'); $dob->setLabel('') …
Govind Totla
  • 1,128
  • 13
  • 16
2
votes
3 answers

Setting datepicker element in Zend_config_Ini

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 =…
pi.
  • 1,441
  • 3
  • 19
  • 25
2
votes
2 answers

Zend decorators: How can I use jquery-ui classes on my forms?

I create a form in a Zend Framework using jquery: class Contact_Form_Contact extends ZendX_JQuery_Form { public function init() { /* Form Elements & Other Definitions Here ... */ //create new element $name =…
Arman
  • 4,566
  • 10
  • 45
  • 66
2
votes
1 answer

AjaxContext vs Controller_Ajax in Zend Framework app

This is a question about the architecture. I've seen two approaches implementing AJAX layer in Zend Framework. The first one, traditional, using AjaxContext action helper (index.phtml and index.ajax.phtml). This has always a nice fallback when no…
takeshin
  • 49,108
  • 32
  • 120
  • 164
2
votes
2 answers

ZendFramework 1.11.3: 'Plugin by name 'Jquery' was not found in the registry

I have two servers. snow leopard on HFS (case-insensitive) file system gentoo linux with ext4 (case-sensitive) file system on both of them I use php 5.3 and latest apache2 and latest Zend Framework 1.11 build. under Mac OSX the website works…
ufk
  • 30,912
  • 70
  • 235
  • 386
2
votes
3 answers

Using ZendX_JQuery_Form_Element_DatePicker to find the current Server Time

Iam using ZendX_JQuery_Form_Element_DatePicker, I want to set the a default date to the date time picker. My current code is this - $date = new ZendX_JQuery_Form_Element_DatePicker('date', array('jQueryParams' => array('defaultDate'…
Sumit Ghosh
  • 3,264
  • 4
  • 40
  • 59
2
votes
2 answers

Run javascript code returned when using Zend Frameworks ZendX ajaxLink function

I had this working an hour ago but must have changed something. How should I call a ajaxLink using ZendX so that any javascript in the response html get's executed? I tried with processData since I think I used that but now it doesn't work.
inquam
  • 12,664
  • 15
  • 61
  • 101
2
votes
2 answers

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: jQuery setup is…
user285594
1
vote
2 answers

jquery ui autocomplete in zend form

I have JSON data returned in my action controller: $results = $repo->getMatchingCityName($searchTerm); Response that i'm getting: [{"CityName":"Montreal"},{"CityName":"New york"}]........ But jquery ui autocomplete doesn't show…
user430266
  • 43
  • 1
  • 4
1
vote
1 answer

assigning values to elements in nested zend sub forms

I have a 3 tier form structure. There's a main form, frmMain (which acts more like a container form) which has subforms e.g frmSubFacts. And these sub forms such as frmSubFacts have subforms; for example: frmTabSubCountry. The innermost subform…
pi.
  • 1,441
  • 3
  • 19
  • 25
1
vote
1 answer

How can I use ZendX Jquery outside zend, like in CI or raw PHP?

i want to use zendx jquery with CI, but i see that it used zend view with it. please let me know can i use it as standalone package like many other zend library.
php.khan
  • 1,224
  • 1
  • 12
  • 21
1
vote
1 answer

How can I insert html code to Jquery Dialog Container in Zend framework Jquery Form

I'm currently working Zend framework and placing Zendx_Jquery_Form in Jquery Dialog Container Just wanted to know is there a way to insert html code (so i can put a picture in there) to the Jquery Dialog Container in zend framework. This is my code…
user648198
  • 2,004
  • 4
  • 19
  • 26
1
2 3 4