Finally, as requested, my code and slides for my Dallas TechFest 2010 presentation are available for download. If you missed it I presented on taking an existing ColdFusion application (could be anything, PHP, JSP, Groovy + Grails) and incrementally spicing it up with jQuery. Click here to download the code and instructions on getting setup!
Posts Tagged ‘Javascript’
Code for my Dallas TechFest 2010 Presentation Available
Posted: 5th August 2010 by Adam Presley in ColdFusion, Development, JavascriptTags: ColdFusion, Development, Javascript, jQuery, Presentation
Update to apMessageBox Component
Posted: 18th May 2010 by Adam Presley in Development, JavascriptTags: Development, Javascript, jQuery
Wanted to throw out a quick blurb that I have updated my apMessageBox component. The newest version makes usage a little easier by providing convenience methods to display an error or information dialog, as well as providing default locations for the error and information icons. Visit http://blog.adampresley.com/jquery/apmessagebox/ to see the latest documentation and download the [...]
Selecting All Items in a Multi-Select Box
Posted: 5th May 2010 by Adam Presley in Development, JavascriptTags: Development, Javascript, jQuery
Here’s a quick jQuery tidbit. If you ever need to select or unselect all items in a muti-select box (a <select> tag set to allow multiple selected items), here’s a jQuery selector to do it. $("#selectBox *").attr("selected", "selected"); Notice the asterisk after the ID selector? That tells jQuery to get ALL child elements of the [...]
Parsing the URL using JavaScript
Posted: 4th April 2010 by Adam Presley in Development, JavascriptTags: Development, Javascript
Here’s a quick little post regarding a question I got today. I was asked how one could parse the URL to get the parameters and do something with them. The first order of business is to know that the URL address can be found in a variable tied to the window object called location. The [...]
apMessageBox – A New jQuery UI Component
Posted: 26th March 2010 by Adam Presley in Development, JavascriptTags: Development, Javascript, jQuery
A quick post to announce my new JavaScript component, apMessageBox. This component is a quick and easy way to display error or informational messages in JavaScript-based applications. It is based jQuery 1.4 and jQuery UI 1.8. Go here to see more about it!
Using jqGrid with ColdFusion
Posted: 19th March 2010 by Adam Presley in ColdFusion, Development, JavascriptTags: ColdFusion, Development, Javascript, jQuery
When looking for a grid solution compatible with jQuery that does not involve using CFGRID, the best I found has been jqGrid. It has a very impressive list of features, wide support for various incoming data formats, and is an all around solid solution. For us ColdFusion developers, however, just trying to “plug it in” [...]
The Joys of NOT Using CFWDDX
Posted: 19th February 2010 by Adam Presley in ColdFusion, JavascriptTags: ColdFusion, Development, Javascript
I had the pleasure of working an issue just the other day where an internal web application didn’t seem to be responding. At first I suspected some type of bug in environment configuration, or some other type of obscure thing. The app worked in other environments, so that was my first suspicion. After a bit [...]
Fisheye Menu with jQuery
Posted: 21st January 2010 by Adam Presley in ColdFusion, Development, JavascriptTags: ColdFusion, Development, Javascript, jQuery
For those that have a small case of “Mac envy”, this post is for you (and me, honestly). One of the neatest things about the Mac OS user interface is the “fisheye” menu at the bottom of the screen. You know the one, where there is a dock bar with icons on it, and when [...]

