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
0
votes
1 answer

Does ZendX_JQuery_View_Helper automatically load from google CDN?

I have a zend framework project and use the ZendX_JQuery_View_Helper in my bootstrap to facilitate setting up my jquery and jqueryUI. I have searched the internet, and it seems that this component will automatically load these components from the…
dimbo
  • 817
  • 1
  • 11
  • 25
0
votes
2 answers

How to fill textbox with database information after another field lostfocus

Could you help me find a way to solve my problem please? I have 4 textbox fields : number , key, firstname and name. When I tabulate from the number field after filling it, I would like to check in my database if this number exists. If so, my…
jojo
  • 1
  • 1
0
votes
1 answer

Custom javascript files with Zendx_JQuery

I had lot of problems enabling jQuery within my Zend application, but I can now display a datePicker instanciated like this in a view: view : index.phtml echo $this->datePicker("dp1", '', array( 'defaultDate' => …
Jerec TheSith
  • 1,932
  • 4
  • 32
  • 41
0
votes
1 answer

ZendX_JQuery plugin is there a way to load jQuery plugin with echo $this->jquery()

I am having a problem with ZendX_JQquery. problem is that jquery loads with echo $this->jQuery() and jquery plugin loads with $echo $this->headScript(); now if i echo out headscript before jquery, i get an error message because plygin depends on…
S L
  • 14,262
  • 17
  • 77
  • 116
0
votes
1 answer

Where is ZendX API reference?

Can someone point me to the official ZendX API reference ? The only official page I was able to find using Google is the Google Code project page which is pretty scarce... Thanks by advance, Eric.
Eric MORAND
  • 6,373
  • 4
  • 27
  • 34
0
votes
2 answers

Adding a stylesheet to ZendX_JQuery disables jQuery?

I am trying to add a datepicker to my Zend_Form. This works all right, but only if I don't add a stylesheet to the jQuery object. If I add a stylesheet, the datepicker just stops working. Here is my bootstrap:
rbnvrw
  • 347
  • 3
  • 15
0
votes
1 answer

Set jQueryUiPath in Zend Framework project

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 () .…
DarkLeafyGreen
  • 69,338
  • 131
  • 383
  • 601
0
votes
1 answer

Zend Jquery plugin not found

I'm playing (trying to at least) with ZendX (Jquery). I tried to load it up in the current project I'm working on and have been given a uncought exception. I've tried various combinations and failed dramatically. Interestingly, I've created a new…
0
votes
1 answer

How to use DataTables jQuery object with ZendX_jQuery

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') …
JoeChin
  • 401
  • 1
  • 4
  • 17
0
votes
2 answers

ZendX/Jquery ui - open dialog box on click

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:
Aine
  • 2,638
  • 3
  • 30
  • 40
0
votes
1 answer

ZendX Console Process posix functions

I am catch the follow exception in my code: ZendX_Console_Process_Exception' with message 'posix_* functions are required What's posix function is need for it work right? Thanks
Ismael Vacco
  • 1,010
  • 1
  • 10
  • 24
0
votes
1 answer

ZendX_JQuery dialogContainer usage

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…
0
votes
1 answer

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…
Andrew
  • 227,796
  • 193
  • 515
  • 708
0
votes
1 answer

Zend Framework Date Time Picker

I'm a real newbie in programming and finally got the ZendX Jquery to work. However, I would like to include a date time picker, and found an option at http://www.binpress.com/app/zfdatetimepicker/85 . However, the documentation is not complete and I…
0
votes
1 answer

ZendX JQuery DatePicker viewHelper

I built a form using the element DatePicker $datefile= new ZendX_JQuery_Form_Element_DatePicker('df'); when I try to render this field in the view using form->df->renderViewHelper(); ?> like I render normal …