cfgrid - display data in an applet format grid
cfgrid.cfm
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>cfgrid tag example: how to display data in an applet format grid</title>
</head>
<body>
<h2 style="color:DodgerBlue">ColdFusion cfgrid example: Applet Format</h2>
<cfquery name="qEmployee" datasource="cfdocexamples">
SELECT * FROM Employees
</cfquery>
<cfform method="post" name="GridExampleForm">
<cfgrid
name="Employee"
query="qEmployee"
format="applet"
width="625"
height="300"
>
</cfgrid>
</cfform>
</body>
</html>
- cfgrid - display data in a flash format grid
- cfgrid - display data in a html format grid
- cflocation - redirect a page with token
- cfcomponent and cfinvoke - invoke a method of a component
- cfinvoke and cfinvokeargument - invoke a method of a component
- cfquery - insert data
- cfdbinfo - get table name list from a datasource
- cfdbinfo - get system table name list from a datasource
- cfdbinfo - get column list from a table