Archive for the ‘ajax’ Category
Zend Framework vs. CakePHP, Symfony, Seagull, WACT, Prado, TRAX, eZ and CodeIgniter
In contraversal with what it might seem, I won’t compare features of the mentioned projects. For that purpose you may just read this nice article by Dennis Pallett.
Instead, I will share you what I learned with help of [in]famous Ohloh project – the codebase, activity and participants dynamics comparison of the mentioned projects.
Well, I’ll not make any conclusions – just observe the facts.
Codebase:
(lines of code)
Zend Framework CakePHP Symfony
Zend Framework Seagull WACT
Zend Framework PRADO TRAX
Zend Framework eZ CodeIgniter
Activity:
(commits)
Zend Framework CakePHP Symfony
Zend Framework Seagull WACT
Zend Framework PRADO TRAX
Zend Framework eZ CodeIgniter
Participants:
(active committers)
Zend Framework CakePHP Symfony
Zend Framework Seagull WACT
Zend Framework PRADO TRAX
Zend Framework eZ CodeIgniter
Integration of Zend Framework and Prototype Ajax
Last two days I’ve worked on implementing an example of integration of Zend Framework‘s MVC and Prototype‘s Ajax for HTML Forms submission and validation.
The solution consist of 2 parts:
1. There is a new View Helper to create an Ajax-enabled form.
This part mostly consists of JavaScript code, which alters default HTML Form behavior to submit the input element values to the action’s URL with Ajax, if form’s method is set to ‘ajax’.
In addition the form itself listens to submission result events and (by default) marks input elements if they are invalid.
2. There is a new customized abstract base Controller which replaces default ViewRenderer with a new one, which:
a) detects whether the request was received from Ajax.
b) if true, will not render the view, but instead will output with the input validation information, if either.
Well, the development is not really over yet, but what I originally wanted to say is I’ve just realized how I miss writing good old JS.
By the way, I need to repeat [ad:start] how happy I am to have PHP, HTML and JavaScript editors in one powerful standardized environment (Eclipse) – what I never had in the past, before PDT, WST & ATF came to the picture [ad:end]
).