Entries Tagged as "Coldfusion"

CFBuilder file search keyboard shortcut

Need to search for a file in CFBuilder?.. CTRL + SHIFT + R, start typing file name, it will autosuggest! 

Bookmark and Share

No Comments

Micro JS Framework Comparison Chart?... Anyone?

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!

Bookmark and Share

No Comments

Get current event handler in MG3

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!

Bookmark and Share

2 Comments

Need Help Setting up CF 8 on Snow Leopard...

I recently switched to a mac, and am having hell setting up a local dev enviroment.   I have successfully installed CF 8, and have enabled the built in Apache server in snow leopard.  Still no love... Anyone have any good tutorials on settings this up?... would be greatly appreciated!

Bookmark and Share

3 Comments

Determine is number is Positive / Negative

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.

Bookmark and Share

3 Comments