Archive for the "AJAX / Comet" category

 

Learning resources for REST

 
Overview I’ve heard of REST, or Representational State Transfer many times. My impression is on the SEO Url like http://bookstore.com/books/isdn/978-0-596-52926-0. Actually REST is much more than that, it can applies on HTTP and many other protocols. And by learning REST, we can design/develope better web sites. Below are some good sites about REST, [...]

Continue reading

 
 

Configure GlassFish v3.0.1 for Comet Support

 
Overview First I must admit that I’m new to Comet/Server Push technology and GlassFish Server. That’s why I would like to try it out. The fist thing I want to try is to deploy a sample Comet app posted on GlassFish v3 Application Development Guide. It turns out to be a bit harder [...]

Continue reading

 
 

Using Ajax with Struts v1.3

 
Overview Adding Ajax call in Struts v1.3 is not quite straight forward, so I would like to note down the key points here. I am adding Ajax function to the web app int this post. For client side, I am using jQuery $.post() to make the Ajax call. There is nothing special of [...]

Continue reading

 
 

Making POST request with XMLHTTPRequest

 
Overview I was debugging on a Web App with AJAX features, situation was that one of the AJAX call fails when too many items (values) are passed to server side. By looking at the JavaScript I saw that “GET” method was used to make the AJAX call with XMLHTTPRequest object. Knowing that “GET” method [...]

Continue reading

 
 

Some JavaScript / AJAX Resources

 
Overview Including Script.aculo.us and others scripts. Reference 20 Top Script.aculo.us Scripts you can’t live without 80 AJAX solutions that are excellent and useful 70 New, Useful AJAX And JavaScript Techniques

Continue reading

 
 

Add validation function to ASP.NET AJAX Tab control

 
Overview In my previous post, I talked about how to make AJAX Tab control panel to load on-demand. Now I would like to extend that sample and implement validation function to each tab, so that user cannot change tab if the information they enter is not valid. I am going to use the [...]

Continue reading

 
 

Make ASP.NET AJAX Tab control panel load ‘on-demand’

 
Overview ASP.NET AJAX Control Toolkit is surely a very useful toolbox for ASP.NET web developer. However, some of the Toolkit’s controls are not fully "AJAX" enabled in my point of view. "AJAX Tabs" is one of the controls that I like the most but also want it to be better. One of the [...]

Continue reading

 
 

AJAX Control Toolkit – Tab Control Themes

 
Overview Damien White have a post discussing how to customize theme in a ASP.NET AJAX Control Toolkit Tab Control. Reference AJAX Control Toolkit – Tab Control – Themes

Continue reading