Insights

Written by the people doing the work.

We publish on agentic AI, automation, ColdFusion and modernization; the topics where we think the received wisdom is currently wrong. No ghostwriting, no vendor summaries.

Uncategorized

Create custom selector using jQuery

Today i came to know one very advanced jQuery Concept.jQuery has its selectors inbuilt. here you can create your own custom selector.In below code…

·2 min read
Uncategorized

New Tags in Coldfusion 9

I have listed new tags of coldfusion which are introduced in coldfusion9.   CFML Tag Description Cfcontinue Used within a cfloop tag. Returns to…

·1 min read
Uncategorized

Adding minimize button on CFWindow in Coldfusion 9

Hi All, I was working on migrating our project from Coldfusion 8 to Coldfusion 9. As CF9 use ExtJs 3.1 for ajax library I…

·1 min read
Uncategorized

Minimize or Maximize CFWindow

Generally, In pop-up window has a minimize or maximize button but coldfusion cfwindow’s has not it. We need to add after creating cfwindow. How…

·1 min read
Uncategorized

jQuery Google API

Developer guidance, The online Ajax Api libraries by google most popular open source javascript libraries. If you want to use jQuery using google api…

·1 min read
Uncategorized

Check All Checkboxes with JQuery

Very often we need to check or uncheck check boxes at single click using js. If we are using javascript then we have to…

·1 min read
Uncategorized

CFLOOP[Index, Collection, List, Query] in CFSCRIPT

CFScript is a language in language. It is scripting language. We can write a code similar to JavaScript. It runs on the ColdFusion server.…

·2 min read
Uncategorized

HTML and Javascript in CFSCRIPT Tag

In coldfusion programming we need to use javascript any time. We can easily do this. We can not write directly javascript in CFSCRIPT tag.…

·1 min read
Uncategorized

Loop Over a File in Coldfusion

Here is a little code of looping over a file in coldfusion using CFLOOP. Lets have a look. Loop over a file – lines.…

·1 min read
Uncategorized

CFDUMP Enhancements

Coldfusion has a beauty and that is CFDUMP. But very few of CFers know about enhancements made in CFDUMP that provides control over what…

·2 min read
Uncategorized

List Common and List Compare in Coldfusion

If you want to intersect between two list, look at the solution given below : [code:cf] <cffunction name="listCommon" output="false" returnType="string"><cfargument name="list1" type="string" required="true" /><cfargument…

·2 min read
Uncategorized

Comma Separated Values of Table Column in SQL Server

Today i came across one interesting inbulit function of sql that is ‘COALESCE’. Using which i can get comma separated values of a column…

·1 min read