Integrating CakePHP and ExtJS: A complete guide

A tutorial on how to integrate CakePHP and ExtJS. Demonstrates the integration of the two using the example of a simple user registration form. Also shows how to load data and validation errors returned by the server

Top 6 reasons why IE7 is complaining about your javascript

 
1. Source: Script tag is the first element of the page:  The html page returned by the server contains ”script” tag as the first element of the webpage. This problem occurs mostly in pages returned as a result of ajax call.
Solution: Introduce a fake div tag as the first element of the webpage. You can set the height [...]

JQuery Inplace editing with autocomplete option

Two common Ajax features that go hand-in-hand are “In-place editing” and “autocomplete”. Although, many “Javascript” or “Ajax” frameworks provide functions or plugins for “in-place editing” and “autocomplete”, pulling them together can be messy and difficult. Hence, I have modified and extended two such JQuery plugins (Inplace editing and autocomplete) to support both in one function [...]