Entries Tagged as "coldfusion"
Railo Ajax 0.5.1
Posted by Andrea Campolonghi in cfml , coldfusion , javascript , railo , Railo Ajax on September 13, 2009
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.
Railo Ajax 0.5.0.3
Posted by Andrea Campolonghi in ajax , coldfusion , railo , Railo Ajax on September 7, 2009
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:
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.
SwfObject Mango Plugin Released
Posted by Andrea Campolonghi in coldfusion , mangoblog , plugins on August 9, 2009
Again I was amazed of how easy is creating a plugin for Mango blog platform.
I needed to load swfobject library in any page and I made up a plugin to add this functionality to my mango installation.
Plugin is very easy and once activated just load swfobject 2.2 on any page for use of any other code or plugin. Here you can get it!
![]()
Last Version : 2.2
Require : Mango 1.3+
Auto Install Url : http://mangoswfobject.riaforge.org/index.cfm?event=action.download
EventManager Vol 1
Posted by Andrea Campolonghi in CfEventManager , coldfusion , railo on July 12, 2009
I start today a series of post on the usage and documentation of my EventManager for coldfusion. You can find more docs and svn code here.
Initialize The EventManager
EventManager is done to work standalone or to be easily integrated with Coldspring. Both examples will be provided.
Standalone
<code class="coldfusion">
<!--- normally saved as singletone on application start --->
<cfset application.em = craeteObject('component','EventManager.EventManager').init() />
</code>
Cf Event Manager
Posted by Andrea Campolonghi in CfEventManager , coldfusion , coldspring , railo on June 5, 2009
I have now released a first version of a tool that I am implementing and using since a while.
CfEventManager is exactly what the word say. An EventManager tool for cfml programming.
Some of the features:
- Very light with a simple API to use/implement.
- Flexible to allow registering of events / listeners from cfml syntax, xml file and programmatically on runtime.
- Ability to cache the listeners objects.
- Use the built in event object or create your own in few easy steps.
- Ability ti stop event propagation.
- Order the listeners with a customized priority order.
- Autowire events object via coldspring by using the Brian Koteks beanInjector class.
On next releases to 1.0:
- Dispatching of async events.
- addEventListener based on regex match.