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

Coldfusion Wrapper for jquery Autocomplete

For one of my project I required autocomplete box. I know coldfusion has its own autocomplete but has lots of limitation. I wanted autocomplete…

·11 min read
Uncategorized

Virtual Fix Table Header JQuery

There are so many ways to fix table header. We can fix table header row and rest of content of table will have overflow…

·1 min read
Uncategorized

Loop Over A Structure Using CFScript

Looping Over A Structure in CFScript is possible using the FOR ( key In Structure) Notation. The following code demonstrates how to loop over…

·1 min read
Uncategorized

The Advantages of HTML5 over Flash

Hello, in this article I will explain to you the advantages of HTML5 over flash. As everyone knows, flash is owned by Abode and…

·2 min read
Uncategorized

CFPresentation

One of the tags introduced in ColdFusion 8 is CFPRESENTATION, which allows you to create a Flash-based presentation that is very slick and can…

·2 min read
Uncategorized

Implicit Getters/Setters

Adobe ColdFusion 9 Supports Implicit Setters/Getters for Components. To make coldfusion autogenerate these methods for the properties listed in components set the Accessors Attribute…

·1 min read
Uncategorized

Visitor’s Browser Window Display Area

To know the available display area in a visitors browser excluding the pixels occupied by the toolbars and other add-ons on the users browser…

·1 min read
Uncategorized

List All Databases, Objects, Tables by A Simple Single Line Query.

Try below query and see all databases and objects get listed in sql server. [code:sql]sp_msforeachdb ‘select "?" AS db, * from [?].sys.tables’;[/code]

·1 min read
Uncategorized

SQL Server Read Excel Sheet

Today we had a requirement to insert data into database from excel sheet. I used POI Utility to read data from excel sheet and…

·1 min read
Uncategorized

Clear Values of All Form Elements Using jQuery

I always wanted to have one common function to reset all form elements. Please have a look at jQuery code that does the same…

·1 min read
Uncategorized

Correct Method to check if a Javascript function is Exists or not

Hi everyone, Sometime you might want to call a function in Javascript but check whether the function exists or not before calling it. You…

·1 min read
Uncategorized

ColdFusion And AJAX File Upload

I have created simple jquery plugin for file upload. I have used multiple file upload in Ajax but it’s not possible to upload file…

·6 min read