Entries Tagged as "Coldfusion"
CFBuilder file search keyboard shortcut
Posted by Erik Ruthven in Coldfusion , Random on October 11, 2011
Micro JS Framework Comparison Chart?... Anyone?
Posted by Erik Ruthven in Coldfusion , Javascript , Random on September 8, 2011
So with all these new cool micro JS frameworks poping up (check out microjs.com for example..) i really would like to find a comparision chart for all them, or at lease most of them. Does anyone know of one? There is just so many cool new ones, just hard to figure out which ones are for what purpose, and which ones are the best... I am talking about batmanjs , vaporjs , knockoutjs , backbone etc..... Help here would be greatly appreciated!
Get current event handler in MG3
Posted by Erik Ruthven in Coldfusion on August 14, 2011
This came up the other day for me... I need the current event handler of the page im on. Now there is multiple ways to do this (CGI would be one), but i figured that Model Glue must have a easy way... after dumping "event" object...
<!--- get the current event handler --->
<cfset currenthandler = event.getValue('e') />
Stupid and simple!
Need Help Setting up CF 8 on Snow Leopard...
Posted by Erik Ruthven in Coldfusion on July 16, 2011
Determine is number is Positive / Negative
Posted by Erik Ruthven in Coldfusion on May 23, 2011
Great new little CF find today. Needed to do some logic around a postive or negative number. Found the function sgn(). The sgn() function will return 1 if the number is positive, 0 if its 0, and -1 if its negative. Works great, HERES a good example.