Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
cedlannoy #1
cfgrid and comma problem!
Hello,
this is my code
hello cedric !!
<cfgrid name="test_grid" selectmode="single">
<cfgridcolumn name="remarques" header="Transaction No">
<cfgridcolumn name="datetime_prequal" header="Date">
<cfloop query="test">
<cfgridrow data="#remarque#,#dateformat(datetime_prequal,'mm/dd/yyyy')#>
</cfloop>
</cfgrid>
My big problem is :
if i tape one comma in the remarque zone, my cfgrid is not correct because i
use the comma in the cfgridrow.
Please help.
thank's cedric
cedlannoy Guest
-
CFGRID in ACCORDION Problem
I am attempting to display a CFGRID on pages of an ACCORDION. The following code builds the ACCORDION pages properly but does not display the GRID.... -
Problem with javascript for < CFGRID>
I have a <cfgrid> thing that used to work in Coldfusion 4.5/Win NT. HAve recently moved to Coldfusion MX 6.1/Win 2003. Now all it gives me is a... -
CFGrid Problem
Hello, I am using Coldfusion 7.01 and am having difficulty using the cfgrid to perform an insert. I have a sql table that requires two fields... -
CFGRID Cell Editing Problem
When I use a grid similar to the one attached, I can add the first 3 rows in the manner I would expect (i.e. click 'Add', click on 1st column in new... -
comma delimited list problem
I have a comma delimited list that is loaded into flash using loadvars. How can I convert it into an array? thanks in advance. Shaun -
philh #2
Re: cfgrid and comma problem!
cedric,
Try
<cfgridrow data=#remarque#&","&#dateformat(datetime_prequal,' mm/dd/yyyy')#>
Or maybe you were just missing that closing quote for the data attribute.
HTH,
philh Guest



Reply With Quote

