July 17th, 2010
I’ve received a lot of feedback about jQuery integration in the Zend Framework. This little video will show you how you can quickly integrate jQuery and jQuery UI into your Zend Framework project.
Grab a copy of the project or browse the repository.
Topics: AJAX, zend_form |
Tags: date, jquery, jqueryui, zendx, zendx_jquery
Posted in AJAX, zend_form |
Episode Discussion
April 9th, 2010
We’re going to take what was put together in the last 3 videos and now include some server-side validation that will appear asynchronously. This is an example of using Zend_Form as a validation tool via JSON.
Grab a copy of the project or browse the repository.
UPDATE: as a couple people have mentioned, you can cut down your IndexController even more by using the Zend_Json view helper:
public function validateformAction()
{
$f = new Form_Registration();
$f->isValid($this->_getAllParams());
$this->_helper->json($f->getMessages());
}
Enjoy!
Topics: AJAX, zend_form |
Tags: AJAX, zend_form, zend_json, zend_validate
Posted in AJAX, zend_form |
Episode Discussion
March 28th, 2010
In this video, we’re going to work on building a custom validator for our composite form element for phone numbers. The nice thing about this validator is that it can then be applied to any sort of textbox. Next week, we’ll ajaxify our final form with a handful of lines of jQuery.
Grab a copy of the project or browse the repository.
ServerGrove has offered to sponsor 3 videos in March! ServerGrove specializes in Zend Framework hosting and they’ve offered a 10% rebate on hosting with coupon code “zc”. If you’re looking for a host, be sure to check them out (referral). They’ve also added an additional coupon for “Mini Hosting” plans, get $2 off by using code “zcmini”.
Topics: zend_form |
Tags: forms, zend_form, zend_validate
Posted in zend_form |
Episode Discussion
March 13th, 2010
This is part in my litte series on Zend_Form will cover how to prep our composite form element for standardized Zend_Form validators. This will help lead us into building a Zend_Form validator for our phone element. It might help to start with episode 49.
Grab a copy of the project or browse the repository.
ServerGrove has offered to sponsor 3 videos in March! ServerGrove specializes in Zend Framework hosting and they’ve offered a 10% rebate on hosting with coupon code “zc”. If you’re looking for a host, be sure to check them out (referral). They’ve also added an additional coupon for “Mini Hosting” plans, get $2 off by using code “zcmini”.
Topics: zend_form |
Tags: composite forms, forms, zend_form, zend_validate
Posted in zend_form |
Episode Discussion