Posts Tagged ‘ajax’

Grid edit in place with jQuery and Ajax

Wednesday, February 13th, 2008

This tutorial is about mimicking an Excel style interface that hooks into a database through Ajax. Most of the logic that creates the richness of the application is handled with jQuery. ... Read More

Validation and AJAX with jQuery

Friday, December 28th, 2007

In this article I will describe setting up an interface for writing articles that is reminiscent of Wordpress but much simpler. We will use jQuery and a suitable plugin to do client side validation, we will also implement some jQuery AJAX to make the form more responsive.... Read More

Multiple uploads with jQuery and Flex or Flash

Friday, December 7th, 2007

As you might know I’m currently working on a custom cms/community project and the specs state that each user should have a simple gallery. However, I’m really, really tired of uploading files the traditional way through file inputs. There is for instance no way of telling how the upload is going or preventing too big files before they are already on the server, just to name two problems. To make a long story short, it’s kinda primitive.... Read More

Ajax, ZF and Smarty feed reader: part 3

Monday, November 12th, 2007

Table of contents for Ajax, ZF and Smarty feed reader

  1. Ajax, ZF and Smarty feed reader: part 1
  2. Ajax, ZF and Smarty feed reader: part 2
  3. Ajax, ZF and Smarty feed reader: part 3

This time we will take a look at the feed list window and the manage window. This will also be the concluding part of the series.... Read More

Ajax, ZF and Smarty feed reader: part 2

Saturday, November 10th, 2007

Table of contents for Ajax, ZF and Smarty feed reader

  1. Ajax, ZF and Smarty feed reader: part 1
  2. Ajax, ZF and Smarty feed reader: part 2
  3. Ajax, ZF and Smarty feed reader: part 3

In part 1 of this series you could download the whole source which this tutorial is based on. This part and subsequent parts will make use of that source.... Read More

Ajax, ZF and Smarty feed reader: part 1

Wednesday, November 7th, 2007

Table of contents for Ajax, ZF and Smarty feed reader

  1. Ajax, ZF and Smarty feed reader: part 1
  2. Ajax, ZF and Smarty feed reader: part 2
  3. Ajax, ZF and Smarty feed reader: part 3

In this series I will walk you through the code of a site that uses only Ajax and Scriptaculous to handle it’s completely windowed interface. Making an interface like this is not really good design, it’s only done here for the sake of teaching. It is kinda cool though. Especially if you have a big screen.... Read More

Widgets with the Zend Framework and Smarty

Saturday, October 27th, 2007

Provided that you have checked my earlier tutorial on how to make instatiable controllers you could now use that functionality to create a widget system with Smarty.... Read More

Marrying the Zend Framework and HTML Ajax

Monday, October 15th, 2007

What if you want to use some HTML Ajax without having to move code from the controller? The answer is that you have to be able to make instances of each controller.... Read More

HTML Ajax

Monday, October 15th, 2007

Update: I don’t use this framework anymore my favorite way of communicating with the server is now the $.post method of jQuery.... Read More