January 3, 2008
· Filed under Developer, PHP, PHP frameworks, Programming, Web Development, cakephp, jquery, user interface · Tagged cakephp, PHP, PHP frameworks, user interface
1. Be more consistent with the system’s layout to make existing features of the system immediately obvious to the eye of the user.
2. Be more accurate with the information that the system is viewing.
3. Always be updated with the latest version of the latest PHP framework which the system is built on.
4. Be able to run faster and improve performance.
5. To finish what have been already started.
December 27, 2007
· Filed under Developer, ExtJS, PHP, Programming, Web Development, ajax, cakephp, jquery · Tagged ajax, cakephp, ExtJS, jquery, Sideline Projects, web, Web Development
Yesterday, I just tried to learn how to use JQuery with Ext in case of need for future sideline projects. It is not that easy at first however, because, to understand the integration better, you still have to understand how ExtJS runs and how to start coding ExtJS for your projects.
Read the rest of this entry »
December 17, 2007
· Filed under Developer, PHP frameworks, Programming, Web Design, ajax, cakephp, jquery, user interface
I was doing this web report, and I thought of improving its user interface design, so I decided to use jquery ajax tabs UI.
But because the ajax-ed content is very large, the tab, when clicked, looks like this in Firefox:

AFAIK, Firefox does not cache ajax content, which is contrary to what Internet Explorer does.
I just want to share additional info regarding the ajax tabs:
everytime you select the tab with ajax content, the tab starts to process ajax. Meaning,
even when not necessary, the ajax still runs. That sucks, huh!?
I overlooked that in the JQuery Tabs options params, you can set the ajax cache to true and the ajax won’t run everytime you click on the tab.
(Source: JQuery Ajax Tabs )
Code: $(’.selector’).tabs({ cache: true });
$(’.selector’).tabs({ ajaxOptions: { async: false } });