cfgrid - display data in a flash format grid
cfgridflash.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 a flash format grid</title>
</head>
<body>
<h2 style="color:DodgerBlue">ColdFusion cfgrid example: Flash Format</h2>
<cfquery name="qCenters" datasource="cfdocexamples" maxrows="10">
SELECT Name,City,Country FROM Centers
</cfquery>
<cfform method="post" name="GridExampleForm">
<cfgrid
name="Centers"
query="qCenters"
format="flash"
width="400"
height="275"
>
</cfgrid>
</cfform>
</body>
</html>
- cfgrid - display data in a applet 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