» tagged pages
» logout

sorted by: recent | see : popular
Content Tagged with Dojo + Ajax

SitePen Blog " window.name Transport

Transport via window.name. Not to be confused with session variables using window.name.

Dojo: del.icio.us tag dojo

Develop AJAX applications like the pros, Part 3: Use DWR, Java, and the Dojo Toolkit to integrate Java and JavaScript

This is the third, and final, article of a three-part series on popular JavaScript libraries that you can use to create Ajax-powered applications. In Part 1, you learned about the Prototype library to build a Web application for managing songs. Part 2 described using the Scriptaculous library to build a Web application for managing photos. This article shows you how to leverage DWR to simplify Ajax development.

Dojo: del.icio.us tag dojo

SitePen Blog " Secure Mashups with dojox.secure

It must be kidding to create widget under language & DOM limitations. what can we create if we concern full security??

Dojo: del.icio.us tag dojo

Dojo Toolkit Breakdown

This weekend I got a chance to go two Dojo Developer Meetups and was impressed with all the things I saw the community doing with Dojo. Having been around since ~2004, Dojo has built up an impress list of functionality that makes every type of Ajax application easier to build and maintain. I wrote up my notes from the two days and break down the project into its piece to make it easier to swallow.

Dojo: del.icio.us tag dojo

Marrying the Zend Framework and HTML Ajax | ProDevTips - dev notes and tutorials

Update: Since writing this I've instead started using jQuery for my Ajax needs, you should too, or MooTools maybe. I've written a new piece demonstrating how jQuery can be used with ZF.

Dojo: del.icio.us tag dojo

Dojo Fishtank

Blaine Ehrhart wrote a fun little fish tank using Dojo, as another example of doing animation using JavaScript, which includes the following to give you a taste:

JAVASCRIPT:
  1.  
  2. function playBubble (target,newbubble) {
  3.         var top = parseInt(target.style.top);
  4.         var left = parseInt(target.style.left);
  5.         var rand = 50+Math.round(50*Math.random());
  6.         // Here we detect how far up the page the bubble is so we can fade it out with the dojo.fadeOut function and delete it
  7.         if (top <= 150) {
  8.                 var fadeOut = dojo.fadeOut({
  9.                         node: target,
  10.                         duration: 200,
  11.                         onEnd: function(){dojo._destroyElement(target);}
  12.                 });
  13.                 fadeOut.play();
  14.                 return true;
  15.         }
  16.         // If it's a new bubble then we want to setup it's bubble sequence to go up
  17.         if (newbubble == 1) {
  18.                 var floatUp = dojo.fx.slideTo({
  19.                         node: target,
  20.                         duration: 10000,
  21.                         properties: {
  22.                                 top: {
  23.                                         end:"-200",
  24.                                         unit:"px"
  25.                                 }
  26.                         }
  27.                 });
  28.                 floatUp.play();
  29.         }
  30.         // After many random variables are used you get a very bubbly effect when using dojo.fx.slideTo
  31.         var bubbleEffect = dojo.fx.slideTo({
  32.                 node: target,
  33.                 duration: 1000,
  34.                 properties: {
  35.                         left: {
  36.                                 end:(left%2)?(left-rand):(left+rand),
  37.                                 unit:"px"
  38.                         }
  39.                 },
  40.                 onEnd: function(){playBubble(target);}
  41.         });
  42.         bubbleEffect.play();
  43.         return true;
  44. }
  45.  

Ajax: Ajaxian

Page 1 | Next >>