Entries Tagged as "Railo Ajax"

Railo Ajax 0.5.1.4

This version of RailoAjax starts the support of functions not strictly related to a tag or to a UI object like tabs or windows.

Firsts functions to be supported are:

Railo.Ajax.submitForm
(formId,url,callbackhandler[,errorhandler,httpMethod,asynch,returnFormat,beforeSend])

You can use this fucntions to ask a form to be ajax submitted at any time with no need to trigger the submit event.

Railo.Ajax.ajaxForm
(formId[,target,callbackhandler,errorhandler,returnFormat,beforeSend])

This function is used to configure a form to be submitted in ajax mode. The main difference with the previous one is that in this case the form will be submitted in ajax mode in any case, and not only when invoked by the function itself.

Railo.Ajax.navigate is on development stage.

7 Comments

RailoAjax.org

The RailoAjax project has finally arrived to his own location.

RailoAjax.org is a the home site that will show news, guides to get started and will be updated with any usefull information about releases, road map, tutotials etc…

The documentation part has been moved into a dedicated Trac Install that can be found at http://docs.railoajax.org.

The Trac install will be used for:

  • Docs in wiki format
  • Tickets
  • Milestones and road map
  • Svn Browse

A new extension provider has been created and is already available:

http://railoajax.org/provider.cfc

Use the Railo’s google group list for posting any related question or contact me at : andrea@railoajax.org.

The spece on assembla site will be closed in teh next days.

No Comments

RailoAjax core is jquery free.

To make library lighter, especially for core usage, I have removed the jQuery dependency from the core RailoAjax library. What does this mean ??

Core tags like cfajacproxy or cfdiv do not use any UI lib and they rely on the lonely RailoAjax library. Up to version 0.5.1 some task like binding and xhr calls where made with the jQuery help and we were forced to load jQuery in any page.

From version 0.5.1.1 ( already available ) RailoAjax is free from jquery dependency:

XHR

You can now use RailoAjax as a XHR utility:

var x = new Railo.XHR() ;
x.request({
url : url,
success:....
});

DOM Events

Dom event binding can be added like this:

]Railo.Util.addEvent(dom element, event, callback );

Btw I decide to keep one dependency in RailoAjax that is Sizzle.js.

Sizzle is the most powerfull selector engine out there. Sizzle is fast, flexible and come from jQuery core.

Check out docs if you like.

You can use sizzle just as you were used to use jQuery selector:

var element = Sizzle('#myId');

Of course Sizzle return array of dom elements and not jQuery Objects.

No Comments

Railo Ajax 0.5.1

RailoAjax 0.5.1 has been released.

This update added the initial support for cflayout and in particular for the tab type. Over the cf8 compatibility I am trying to add more things like e deeper callback support and some extra functionalities from tje jquery UI library.

You can update from Railo Admin ( if you already installed the extension ) or install from these 2 extensions providers:

http://www.andreacfm.com/railoEx/andreacfm.cfc
or
http://preview.getrailo.org/ExtensionProvider.cfc ( this will be
updated tomorrow - monday 14 during the day).

Let me have your feedback and wishlist for the next project ehhancement.

 

No Comments

Railo Ajax 0.5.0.3

I have just updated the RailoAjax extension provider with the new release. Many bugs have been fixed and a started cflayout ( just for tab up to now ) has been added to the demo page. Please let me have yur feedbacks, bugs, suggestions etc...

You can grab a copy from svn repository or use the following extension provider:

Svn

AndreaCfm Extension Provider : http://www.andreacfm.com/railoEx/andreacfm.cfc

From Railo preview server : http://preview.getrailo.org/ExtensionProvider.cfc

Change log:

0.5.0.3
-------------------------------
* Cflayout-tab binding.
* Added support for tab add,hide,remove.
* Support for tab custom styling.
* Defined demo structure
* Bug fixing.
* Started docs in wiki.getrailo.org.

0.5.0.2
-------------------------------
* Added cflayout tab initial support.

0.5.0.1
-------------------------------
* New examples in demo pages.
* Support for context root deployment.

No Comments