Affichage des articles dont le libellé est ajax. Afficher tous les articles
Affichage des articles dont le libellé est ajax. Afficher tous les articles

mardi 8 juin 2010

Build your own web2.0 apps


Zoho Creator by AdventNet is a webbased interface that allows you to CREATE programs. The whole thing has a rich AJAX built interface that has a familiar look and feel for users known to AJAX apps in general and other zoho releases specifically, such as the zoho planner (reviewed by me before). Creation of an application such as a form is easy. The editor does everything for you - you just provide the content. As soon as the application is built you can easily create one or more views where you can see the results, sorted as you like and there's also room for reporting. The app looks great for creating datacollection applications such as crm apps and helpdesk (ticketing) systems. The best thing is to obtain a link to the application you built to embed it in your website. A nice feature fro spreadsheet-tigers : You can import them to create applications.
read more...

lundi 7 juin 2010

ajaxfileupload

jQuery is a fast, concise, JavaScript Library

that simplifies how you traverse HTML documents, handle events, perform animations, and add Ajax interactions to your web pages.


This AjaxFileUpload Plugin is a hacked version of Ajaxupload plugin created by yvind Saltvik, which is really good enought for normal use. Its idea is to create a iframe and submit the specified form to it for further processing.

In this hacked version, it submits the specified file type of input element only rather than an entire form



How to use it?

1. include jquery.js & ajaxfileupload.js javascript files
2. create a function to be fired when the upload button clicked.
e.g.
function ajaxFileUpload()
{
//starting setting some animation when the ajax starts and completes
$("#loading")
.ajaxStart(function(){
$(this).show();
})
.ajaxComplete(function(){
$(this).hide();
});

/*
prepareing ajax file upload
url: the url of script file handling the uploaded files
fileElementId: the file type of input element id and it will be the index of $_FILES Array()
dataType: it support json, xml
secureuri:use secure protocol
success: call back function when the ajax complete
error: callback function when the ajax failed

*/
$.ajaxFileUpload
(
{
url:'doajaxfileupload.php',
secureuri:false,
fileElementId:'fileToUpload',
dataType: 'json',
success: function (data, status)
{
if(typeof(data.error) != 'undefined')
{
if(data.error != '')
{
alert(data.error);
}else
{
alert(data.msg);
}
}
},
error: function (data, status, e)
{
alert(e);
}
}
)

return false;

}
read more...

dimanche 6 juin 2010

Best AJAX Resources on the NET

Confused with AJAX? Welcome to the club! Or are you looking for AJAX resources? Hold on tight, this article will show you where to find usefull AJAX resources on the internet.

For those of you who didn’t know AJAX is short for Asynchronous JavaScript and XML. AJAX is one of web development techniques used for creating interactive web-based applications.

The most important characteristic of AJAX-powered web applications is that it can increase the response, speed, functionality and interactivity by doing all of the data processing “behind the scene” so the web page don’t have to reload each time it need to fetch data from other location.

Many people may still confused by how AJAX works. Well, people say that learning from example is the fastest and easiest way to learn something. That’s why I’m gonna list several sites that I know would be one of the best place to see some cool AJAX examples and find useful guide plus resources about AJAX techniques.

Ajax Gallery

AJAX Daddy
AjaxDaddy list all of the AJAX examples in a neat way. It list the examples just like a photo gallery. You can find tons of usefull stuff in the site. And the great thing is, the site is also powered by AJAX.

AJAX Rain
Besides giving you a list of AJAX sample applications, the site also has a article section, although there’s only 2 articles in there lol.
Ajax Resources

Ajaxian - This site probably the best AJAX resources site out there. It list all of the resources based on topics.
AJAX Solutoire - Massive links and bookmarks on places that provides AJAX resources.
25 Excellent Ajax Techniques and Examples
100 Ajax Tutorials and Resources
80+ AJAX-Solutions For Professional Coding - SmashingMagazine list more than 80 AJAX Solution for Pro.
Ajax resource center on IBM
And, if you think all of that isn’t enough, you can always buy a book about AJAX. Amazon might be a good place to start searching AJAX books.

PS: Image was taken from O’reily’s book cover “Ajax: The Definitive Guide”

Popularity: 5% [?]

Share and Enjoy:

This post was filed under News — Read more —
See all articles related to: AJAX
read more...

jeudi 3 juin 2010

Prototype




Prototype is a JavaScript Framework that aims to ease development of dynamic web applications.

Featuring a unique, easy-to-use toolkit for class-driven development and the nicest Ajax library around, Prototype is quickly becoming the codebase of choice for web application developers everywhere.
read more...