Re: CF8 HTML CFGRID with checkbox possible with binding?

2008-10-28 Thread John Bliss
So are the docs wrong? Because that's not what happens. >If your cfgrid is marked as selectMode='edit', and your cfgridcolumn has >a type='boolean' (and the cell is editable, which should be the >default), then the docs say: > >boolean: column displays as check box; if cell is editable, user ca

Re: CF8 HTML CFGRID with checkbox possible with binding?

2008-10-20 Thread Stephane Vantroyen
Hi guys and gals, has anybody already had the following question (and its answer of course) : is there a solution (soft, CF, ... whatever) to convert a pdf into html content? Thanks in advance ~| Adobe® ColdFusion® 8 software

Re: CF8 HTML CFGRID with checkbox possible with binding?

2008-04-30 Thread Cutter (CFRelated)
If your cfgrid is marked as selectMode='edit', and your cfgridcolumn has a type='boolean' (and the cell is editable, which should be the default), then the docs say: boolean: column displays as check box; if cell is editable, user can change the check mark. Steve "Cutter" Blades Adobe Certifie

Re: CF8 HTML CFGRID with checkbox possible with binding?

2008-04-30 Thread Asim .
bump anyone solved this yet??? > In the cfc that i return the query, i just added a column > > > > > and in the cfgrid, i bind to the cfc, and i use the following > > > display='true' select='true'> > > the checkbox still doesn't show up, no matter after how many clicks, > in FF2 and IE

Re: CF8 HTML CFGRID with checkbox possible with binding?

2008-04-30 Thread Asim .
bump anyone solved this yet??? > In the cfc that i return the query, i just added a column > > > > > and in the cfgrid, i bind to the cfc, and i use the following > > > display='true' select='true'> > > the checkbox still doesn't show up, no matter after how many clicks, > in FF2 and IE

Re: CF8 HTML CFGRID with checkbox possible with binding?

2008-02-03 Thread henry ho
In the cfc that i return the query, i just added a column and in the cfgrid, i bind to the cfc, and i use the following the checkbox still doesn't show up, no matter after how many clicks, in FF2 and IE6. Any idea how to make the checkbox show up? do I have to write my own Ext renderer?

Re: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-06 Thread Eron Cohen
Ok, I solved my error issue--I just needed to remove the semicolon from the end of "onClick=form.submit();"--So now I have checkboxes that submit the form when checked inside of an HTML grid on CF8. > I am working on the same thing right now. I have success getting the > checkbox to show up. T

RE: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-06 Thread Eron Cohen
I am working on the same thing right now. I have success getting the checkbox to show up. That much is no problem. The way I am doing it is by using QueryNew/QuerySetCell to create a query that I send back to the CFGRID via binding to a CFC. Here is how I am creating my checkbox: )> I want to

Re: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-06 Thread Eron Cohen
I am working on the same thing right now. I have success getting the checkbox to show up. That much is no problem. The way I am doing it is by using QueryNew/QuerySetCell to create a query that I send back to the CFGRID via binding to a CFC. Here is how I am creating my checkbox: )> I want

Re: CF8 HTML CFGRID with checkbox possible with binding? +Error Message

2007-09-06 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
I am working on the same thing right now. I have success getting the checkbox to show up. That much is no problem. The way I am doing it is by using QueryNew/QuerySetCell to create a query that I send back to the CFGRID via binding to a CFC. Here is how I am creating my checkbox: )> I want

Re: CF8 HTML CFGRID with checkbox possible with binding? +Error Message

2007-09-06 Thread Eron Cohen
I am working on the same thing right now. I have success getting the checkbox to show up. That much is no problem. The way I am doing it is by using QueryNew/QuerySetCell to create a query that I send back to the CFGRID via binding to a CFC. Here is how I am creating my checkbox: )> I want

Re: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-05 Thread Chris Martin
Right...click on it three times...you'll see itunfortunately that's the way it works in the HTML grid. Chris Martin --- Gandy Ink Information Technology Department [EMAIL PROTECTED] (325) 949-7864 X-364 ---

Re: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-05 Thread Chris Martin
Yeah...You have to make the column in your table for that and i reset the values back to 0 each time the application is ran. Chris Martin Asim . wrote: > Thanks for your quick reply. This was the first thing I tried. > The error is > > Query column invalid or missing. > You must specify the

Re: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-05 Thread Asim .
AND if I use the real column name and use the use the parameter select="yes" that doesn't even show the checkbox, it just display the column there.. > Thanks for your quick reply. This was the first thing I tried. > The error is > > Query column invalid or missing. > You must specify the

Re: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-05 Thread Asim .
Thanks for your quick reply. This was the first thing I tried. The error is Query column invalid or missing. You must specify the name of a column in the qryGetStuff query for the printThis attribute of the CFGRIDCOLUMN tag digging the documents but found nothing, google search didn't help eith

Re: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-05 Thread Chris Martin
If you are calling the query from tag, do this: Chris Martin Asim . wrote: > what code did u use to show the checkbox in cfgrid? > when i use inside the cfgrid it > just display the checkbox once. > > I am using cfgrid with query. > > Thanks, > > > > > > >> I did get the checkbox to sh

Re: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-05 Thread Asim .
what code did u use to show the checkbox in cfgrid? when i use inside the cfgrid it just display the checkbox once. I am using cfgrid with query. Thanks, >I did get the checkbox to showup, however, it initally shows a "true" or >"false" in the column rather than a checkbox. Upon clicking

Re: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-05 Thread Chris Martin
I did get the checkbox to showup, however, it initally shows a "true" or "false" in the column rather than a checkbox. Upon clicking the cell three times, a checkbox finally appears, and can then be changed using ajax/cfc. I ended up doing a flash grid...i think this may be a bug with HTML bo

Re: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-05 Thread Shy Boy
Did you every solve this? > I've been banging my head against the wall and searching for the last > couple of hours of how to add a column for a checkbox on a cfgrid in > html that is using binding on CF8 (not beta). Any help is greatly > appreciated. ~~