Working with CFGRID

2007-10-24 Thread Anthony Doherty
i have created a cfgrid formatted to HTML i have also added the href=page.cfm hrefkey=ID to the column as well. The grid displays ok but when the rows are empty it shows a - in the blank rows were the data would be linked to the different page. is there a way to only hyperlink the rows

Re: Working with CFGRID

2007-10-24 Thread Andrew Scott
Yes there is. It is called custom rendering, and Ray Camdan has a tutorial on his blog that will help you with that. On 10/24/07, Anthony Doherty [EMAIL PROTECTED] wrote: i have created a cfgrid formatted to HTML i have also added the href=page.cfm hrefkey=ID to the column as well. The grid

Re: Working with CFGRID

2007-10-24 Thread Anthony Doherty
thanks for that andrew but that allows me to format the data within the grid into different formats from the blog that i found (http://www.coldfusionjedi.com/index.cfm/2007/8/20/Custom-grid-renderers-with-CFGRID) maybe im using the wrong blog Yes there is. It is called custom rendering

Re: Working with CFGRID

2007-10-24 Thread Andrew Scott
-renderers-with-CFGRID) maybe im using the wrong blog Yes there is. It is called custom rendering, and Ray Camdan has a tutorial on his blog that will help you with that. On 10/24/07, Anthony Doherty [EMAIL PROTECTED] wrote: i have created a cfgrid formatted to HTML i have also

CF8 CFGRID bind problem on include

2007-10-24 Thread C. Hatton Humphrey
I'm running into an interesting problem. I'm working on a CFGrid based data list that is going to be included on several different pages. The grid is using the BIND feature to allow for AJAX sorting and pagination. The problem that I'm running in to - I moved the code into an include and now I

RE: Working with CFGRID

2007-10-24 Thread Dale Fraser
-Talk Subject: Re: Working with CFGRID thanks for that andrew but that allows me to format the data within the grid into different formats from the blog that i found (http://www.coldfusionjedi.com/index.cfm/2007/8/20/Custom-grid-renderers-wit h-CFGRID) maybe im using the wrong blog Yes

Re: CF8 CFGRID bind problem on include

2007-10-24 Thread Brian Kotek
What does the AJAX debugging window say? On 10/24/07, C. Hatton Humphrey [EMAIL PROTECTED] wrote: I'm running into an interesting problem. I'm working on a CFGrid based data list that is going to be included on several different pages. The grid is using the BIND feature to allow for AJAX

CFGRID row color

2007-10-22 Thread Asim Manzur
In the HTML CFGRID, is there a way to change the background color of a row dynamically? For example, if I had a list of tasks, I'd like to change the background color if the task is urgent... Urgent is a field in the query object returned by CFC ... Regards

CFGRID row color

2007-10-22 Thread Asim .
In the HTML CFGRID, is there a way to change the background color of a row dynamically? For example, if I had a list of tasks, I'd like to change the background color if the task is urgent... Urgent is a field in the query object returned by CFC ... Regards

Re: CFGRID row color

2007-10-22 Thread Azadi Saryev
check out this Ray's blog post: http://www.coldfusionjedi.com/index.cfm/2007/8/20/Custom-grid-renderers-with-CFGRID Azadi Asim . wrote: In the HTML CFGRID, is there a way to change the background color of a row dynamically? For example, if I had a list of tasks, I'd like to change

Re: CFGRID Select Row

2007-10-12 Thread Azadi Saryev
to the objects' page that you posted here. Regards Dale Fraser http://learncf.com -Original Message- From: Azadi Saryev [mailto:[EMAIL PROTECTED] Sent: Thursday, 11 October 2007 10:40 PM To: CF-Talk Subject: Re: CFGRID Select Row simple as everything ajax seems to be: refreshgrid

CFGRID Select Row

2007-10-11 Thread Dale Fraser
Anyone know how to programmatically select a row in a grid. Sometimes you want to refresh the grid and then upon refresh select a specific row. Regards Dale Fraser http://learncf.com ~| Get involved in the

Re: CFGRID Select Row

2007-10-11 Thread Azadi Saryev
i am working on the same issue... will post my findings [if any...] later... Azadi Dale Fraser wrote: Anyone know how to programmatically select a row in a grid. Sometimes you want to refresh the grid and then upon refresh select a specific row. Regards Dale Fraser

Re: CFGRID Select Row

2007-10-11 Thread Andrew Scott
Dale, Should read my blog more then:-) If you followon from my Grid example, and use the extJS docs you would get the following. var grid = ColdFusion.Grid.getGridObject('NameOfGrid'); grid.getSelectionModel().getSelected() Will return the record store of the selected row. btw if you use

Re: CFGRID Select Row

2007-10-11 Thread Azadi Saryev
well, that's all good and all, but how about pre-selecting a specific row??? your code will return record store of the selected row... how about when no row is yet selected??? Azadi Andrew Scott wrote: Dale, Should read my blog more then:-) If you followon from my Grid example, and use

Re: CFGRID Select Row

2007-10-11 Thread Azadi Saryev
simple as everything ajax seems to be: refreshgrid = function(){ ColdFusion.Grid.getGridObject('yourgridname').getSelectionModel().selectRow(rownumber); } NOTE: rownumbers seem to be 0-based you can also use: selectRows() selectRange() clearSelections() and a lot more... more info @

Re: CFGRID Select Row

2007-10-11 Thread Andrew Scott
Well I thought the hint was in the using of firefox and its plugin fireDebug, use the console to type the var name of the grid and you get to see all methods and properties. How much more does one need to spell it out, when all the docs are also on extJS:-) And the reverse of get is set is it

RE: CFGRID Select Row

2007-10-11 Thread Dale Fraser
Thanks, That seems to select, but not highlight the row. Regards Dale Fraser http://learncf.com -Original Message- From: Azadi Saryev [mailto:[EMAIL PROTECTED] Sent: Thursday, 11 October 2007 10:40 PM To: CF-Talk Subject: Re: CFGRID Select Row simple as everything ajax seems

RE: CFGRID Select Row

2007-10-11 Thread Dale Fraser
-Original Message- From: Azadi Saryev [mailto:[EMAIL PROTECTED] Sent: Thursday, 11 October 2007 10:40 PM To: CF-Talk Subject: Re: CFGRID Select Row simple as everything ajax seems to be: refreshgrid = function(){ ColdFusion.Grid.getGridObject('yourgridname').getSelectionModel

RE: CFGRID Select Row

2007-10-11 Thread Dale Fraser
posted here. Regards Dale Fraser http://learncf.com -Original Message- From: Azadi Saryev [mailto:[EMAIL PROTECTED] Sent: Thursday, 11 October 2007 10:40 PM To: CF-Talk Subject: Re: CFGRID Select Row simple as everything ajax seems to be: refreshgrid = function

CFGRID Input Types

2007-10-05 Thread Dale Fraser
Ok, No one is answering my CFGRID questions, I think that means that no one knows. I've worked a lot out anyway, and am achieving what I want to do. I would like to know if the CFGRID html supports different edit modes. I would like to be able to put a drop down combo and a checkbox

Re: CFGRID Input Types

2007-10-05 Thread Andrew Scott
Dale, Yes you can I didn't see your message, but you need to look at custom rendering that Ray Camden did on his blog and use that to output the html you need. On 10/5/07, Dale Fraser [EMAIL PROTECTED] wrote: Ok, No one is answering my CFGRID questions, I think that means that no one

CFGrid HTML Questions

2007-10-04 Thread Dale Fraser
I have a host of grid questions, google has helped me a lot but stuck on some. 1. Can I deselect the selected row using javascript so that either a different row or no row is selected. 2. Can the binded CFC modify the HTML, ie can the CFC do a Grid.refresh or even change the element of a

RE: CFGrid HTML Questions

2007-10-04 Thread Dale Fraser
Also, I think I have a bug. I am manually controlling the page in a paged list by setting the page variable. It works fine, so that (20 per page) when record 21 is added it takes you to page two, all is good except, the paging controls don't refresh, it does display that there are 2 pages, but

Re: CFGRID Binding without Paging

2007-10-04 Thread gary gilbert
Hi Dale, You should be able to access the underlying EXT Grid and remove the footer panel. script language=javascript removeFooter = function() { mygrid = ColdFusion.Grid.getGridObject('thegridname'); mygrid.getView().getFooterPanel().remove(); } /script then at the end of your cfm page cfset

CFGRID Binding without Paging

2007-10-03 Thread Dale Fraser
Is it possible to have a CFGRID with a binding to a CFC that doesn't automatically give you the paged interface. I know in my example that my grid will only ever contain 10-20 items from the bind and just want to have a scrolling grid and not a paged one. Regards Dale Fraser http

CF8 get cfgrid totalrowcount with ajaxonload() function

2007-10-02 Thread Azadi Saryev
i have a cfgrid bind to a cfc which returns a structure (a queryConvertForGrid() applied to a query resultset) the grid works fine. i want to add a line to the cgid's footer XX total records found. and while i can add the text 'total records found', i can't seem to be able to get the number

Coldfusion5, cfgrid does not load,a icon in top left corner(Javascript software)

2007-09-27 Thread ismail cassiem
Hi, My cfgrid use to work, onload of grid it installed javascript software once off. Over the last few months I installed new instances of javascript software and now my grid does not load returns an icon in the top left corner. I uninstalled all java software. How do I fix this, what do

RE: CFGRID and javscript validation

2007-09-27 Thread Bhakti Pingale
HI, We have done this. Are you facing any problems doing this. Thanks, Bhakti Adobe ColdFusion team -Original Message- From: Rusty Owens [mailto:[EMAIL PROTECTED] Sent: Thursday, September 27, 2007 1:19 AM To: CF-Talk Subject: CFGRID and javscript validation I have an application

Re: CFGRID and javscript validation

2007-09-27 Thread Rusty Owens
CFGRID to do this. I want to be able to do some validation on submit using JavaScript. Has anyone done this for multiple dynamic numbers of records? ~| Get involved in the latest ColdFusion discussions, product development sharing

Re: CFGRID and javscript validation

2007-09-27 Thread Rusty Owens
decided to use CFGRID to do this. I want to be able to do some validation on submit using JavaScript. Has anyone done this for multiple dynamic numbers of records? ~| ColdFusion 8 - Build next generation apps today, with easy PDF

cfgrid border in CF8

2007-09-27 Thread Jim Rising
anyone know how to remove the border of cfgrid? i know you can do that in the straight up extjs. -jim ~| Download the latest ColdFusion 8 utilities including Report Builder, plug-ins for Eclipse and Dreamweaver updates. http

Re: cfgrid border in CF8

2007-09-27 Thread gary gilbert
You should be able to do it the same way, just add the correct style to your page to override the included stylesheet -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Get the answers you are looking for on the ColdFusion

CFGRID and javscript validation

2007-09-26 Thread Rusty Owens
I have an application where I need to add child records on the fly. I have decided to use CFGRID to do this. I want to be able to do some validation on submit using JavaScript. Has anyone done this for multiple dynamic numbers of records

Re: Numberformat and cfgrid

2007-09-23 Thread Steve Sequenzia
Ray Camden has blogged about column rendring, maybe you check that out. On 9/21/07, Steve Sequenzia [EMAIL PROTECTED] wrote: I just need to add commas to a grid column that are displaying numbers. I think I need to use numberformat but I am not sure how to use it. Any help would

Re: Numberformat and cfgrid

2007-09-21 Thread gary gilbert
Hi Steve, I also have a post about cell renderers you can see it here http://www.garyrgilbert.com/blog/index.cfm/2007/8/24/CFGRID-Cell-Renderer-Revisited -- Gary Gilbert http://www.garyrgilbert.com/blog ~| ColdFusion 8

Numberformat and cfgrid

2007-09-20 Thread Steve Sequenzia
I just need to add commas to a grid column that are displaying numbers. I think I need to use numberformat but I am not sure how to use it. Any help would be great. ~| ColdFusion is delivering applications solutions at at top

Re: Numberformat and cfgrid

2007-09-20 Thread Andrew Scott
Ray Camden has blogged about column rendring, maybe you check that out. On 9/21/07, Steve Sequenzia [EMAIL PROTECTED] wrote: I just need to add commas to a grid column that are displaying numbers. I think I need to use numberformat but I am not sure how to use it. Any help would be great.

RE: CFGrid does not appear...

2007-09-18 Thread E C list
web browser everything works fine--the cfgrid displays immediately with no problems again and again... and when I try to display the grid in an iFrame it only works when the page is reloaded--the first time it loads, no go. If I right click and choose refresh, there is my grid. The data

RE: CFGrid does not appear...A New Clue

2007-09-18 Thread E C list
One more clue. I should have mentioned that I am using some DHTML tabs on the page in question. The CFFORM/CFGRID is in an iFrame on one of the tabs. Normally this tab is not the default displayed. If I click on the tab in question when the page is still loading, then the cfgrid loads. If I

CFGrid does not appear...

2007-09-17 Thread Eron Cohen
I am using ColdFusion 8 and I am running into an odd issue that I can't figure out. I have an HTML cfgrid on an HTML CFFORM that is supposed to appear in an IFRAME. The thing is that the CFGRID doesn't appear as anything but a gray line until I refresh the IFRAME's contents. Then it is fine

Re: CFGrid does not appear...

2007-09-17 Thread Mike Chabot
the URL into the Web browser and that the CFC is set up to allow for remote access. -Mike Chabot On 9/17/07, Eron Cohen [EMAIL PROTECTED] wrote: I am using ColdFusion 8 and I am running into an odd issue that I can't figure out. I have an HTML cfgrid on an HTML CFFORM that is supposed to appear

Re: CFGrid does not appear...

2007-09-17 Thread Eron Cohen
Unfortunately, my issue is that the grid doesn't appear at all. Just a gray line. In doing more troubleshooting, I have found that it doesn't matter if it is in an i-frame or not, just making it part of the page on my site where the iframe was still shows the same issue. If I just refresh

Re: CFGrid does not appear...

2007-09-17 Thread Mike Chabot
When I wrote empty grid, I was referring to the symptom you described. A grid that isn't visible because there are no cells, leaving you with just a collapsed outline of a table. Make sure you view the rendered HTML to see what the code looks like. -Mike Chabot On 9/17/07, Eron Cohen [EMAIL

cfgrid row highlight color

2007-09-14 Thread Mike Chabot
I want to change the highlight color that you see when you roll your mouse over rows in an HTML cfgrid. The default color is cyan, but I don't see any attribute for modifying this highlight color. Can anyone point me in the right direction? Thanks, Mike

RE: Ajax cfgrid bind problem

2007-09-13 Thread Rakshith N
Yes, 69915 is the bug that is causing this to happen. We are aware of this issue and are working on it. Rakshith Adobe ColdFusion Team -Original Message- From: Mike Chabot [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 12:03 AM To: CF-Talk Subject: Re: Ajax cfgrid bind

Re: Ajax cfgrid bind problem

2007-09-12 Thread Mike Chabot
Yes, there is a CF mapping that is equivalent to the virtual directory. -Mike Chabot On 9/12/07, James Holmes [EMAIL PROTECTED] wrote: Do you have a CF mapping to go with that virtual directory? ~| ColdFusion is delivering

Re: Ajax cfgrid bind problem

2007-09-12 Thread Mike Chabot
Dale, Thanks for helping me troubleshoot this. I used your basic example to step back and try to troubleshoot this from the start to see where things break. The Web root folder is C:\inetpub\wwwroot\ My code is here C:\projects\ If I stay inside the Web root, all combinations of virtual

Re: Ajax cfgrid bind problem

2007-09-12 Thread gary gilbert
Hi Mike, if you are using a virtual directory and your cfc is located somewhere else you still need to be able to get to the cfc using a standard URL. I have found the the bind always starts at the webroot and goes from there so in your example you have. http://mysite/projects Your bind

Re: Ajax cfgrid bind problem

2007-09-12 Thread Mike Chabot
Thanks Gary, I confirmed that the CFC is accessible over a standard URL by loading it in the Web browser. Turing the Ajax debugging on, I can see the exact request that is being made. I take that request, fix the URL so that it now looks in the correct location, paste the corrected URL into the

Re: Ajax cfgrid bind problem

2007-09-12 Thread Mike Chabot
To clarify slightly: http://mysite/project/test.cfm works http://mysite/project/myCFC.cfc works The CFC path is project.myCFC.function. I can use this path successfully on the server-side. The problem is that when I bind cfgrid to the path of project.myCFC.function, the generated JavaScript

Re: Ajax cfgrid bind problem

2007-09-12 Thread gary gilbert
Mike, But thats not your problem is it? Its the fact that as soon as you move your directory out of wwwroot/projects into c:/projects and point your virtual directory to that you code stops working and inspecting the url no matter what you try or what mappings you have in CF admin you still

Re: Ajax cfgrid bind problem

2007-09-12 Thread Mike Chabot
Fantastic Gary. Thanks for looking into this. Bug 69915 is what the problem is. Luckily my site is still under development, so I can live with a suboptimal setup while I wait for a hotfix. -Mike Chabot On 9/12/07, gary gilbert [EMAIL PROTECTED] wrote: Mike, But thats not your problem is it?

Ajax cfgrid bind problem

2007-09-11 Thread Mike Chabot
I am trying to use the cfgrid CFC binding feature in CF8 but I am having trouble getting the CFC to populate the Ajax grid. URL: http://site/ Folder: c:\inetpub\wwwroot URL: http://site/projects/ (virtual directory) Folder: c:\projects\ This folder has a cfc called myCFC My bind attribute

RE: Ajax cfgrid bind problem

2007-09-11 Thread Dale Fraser
: Wednesday, 12 September 2007 10:28 AM To: CF-Talk Subject: Ajax cfgrid bind problem I am trying to use the cfgrid CFC binding feature in CF8 but I am having trouble getting the CFC to populate the Ajax grid. URL: http://site/ Folder: c:\inetpub\wwwroot URL: http://site/projects/ (virtual directory

Re: Ajax cfgrid bind problem

2007-09-11 Thread Mike Chabot
as the cfc you don't need the projects. Regards Dale Fraser http://learncf.com -Original Message- From: Mike Chabot [mailto:[EMAIL PROTECTED] Sent: Wednesday, 12 September 2007 10:28 AM To: CF-Talk Subject: Ajax cfgrid bind problem I am trying to use the cfgrid CFC binding

RE: Ajax cfgrid bind problem

2007-09-11 Thread Dale Fraser
Do you have a CFIDE virtual directory, this is required for all the AJAX stuff. Regards Dale Fraser http://learncf.com -Original Message- From: Mike Chabot [mailto:[EMAIL PROTECTED] Sent: Wednesday, 12 September 2007 11:15 AM To: CF-Talk Subject: Re: Ajax cfgrid bind problem Windows

Re: Ajax cfgrid bind problem

2007-09-11 Thread Mike Chabot
Fraser http://learncf.com -Original Message- From: Mike Chabot [mailto:[EMAIL PROTECTED] Sent: Wednesday, 12 September 2007 11:15 AM To: CF-Talk Subject: Re: Ajax cfgrid bind problem Windows 2003 Standard 32 bit with IIS6. My example is simplified. The cfm file is not in the same

Re: Ajax cfgrid bind problem

2007-09-11 Thread vishnu prasad
Hi Mike How you are binding the local cfquery ? can you post the sample cfgrid which binds the cfquery? Yes. The full CFIDE directory is there. The grid works fine when I change the binding to be a local cfquery. However, ultimately I want to bind to a CFC on the server. When I view

Re: Ajax cfgrid bind problem

2007-09-11 Thread Mike Chabot
You just write query=variables.qryGetData as an attribute for the cfgrid tag, just like you do for flash grids and java grids. You have to give the grid a name and put it in a cfform, but that is pretty much it. Binding wasn't the most accurate word to use in this case. -Mike On 9/12/07, vishnu

RE: Ajax cfgrid bind problem

2007-09-11 Thread Dale Fraser
To: CF-Talk Subject: Re: Ajax cfgrid bind problem You just write query=variables.qryGetData as an attribute for the cfgrid tag, just like you do for flash grids and java grids. You have to give the grid a name and put it in a cfform, but that is pretty much it. Binding wasn't the most accurate word

Re: Ajax cfgrid bind problem

2007-09-11 Thread James Holmes
Do you have a CF mapping to go with that virtual directory? On 9/12/07, Mike Chabot [EMAIL PROTECTED] wrote: I am trying to use the cfgrid CFC binding feature in CF8 but I am having trouble getting the CFC to populate the Ajax grid. URL: http://site/ Folder: c:\inetpub\wwwroot URL: http

Re: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-07 Thread Eron Cohen
. 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: CFSET QuerySetCell(searchResults, test,Complete: input type=checkbox name=install_complete_date

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: CFSET

RE: CFGrid Ajax Results

2007-09-06 Thread Eron Cohen
Thank you for the answers. I will look into this. Complicated for me would be defined not-so-easy. So this might be beyond me. -Original Message- From: Brian Kotek [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 04, 2007 7:40 PM To: CF-Talk Subject: Re: CFGrid Ajax Results

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: CFSET

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: CFSET

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: CFSET

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

Re: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-05 Thread Chris Martin
grids. Chris Martin Shy Boy wrote: 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

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 cfinput type=checkbox name=checkboxname 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

Re: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-05 Thread Chris Martin
If you are calling the query from cfgrid tag, do this: cfgridcolumn name=printThis header=Select width=50 select=yes type=boolean display=yes Chris Martin Asim . wrote: what code did u use to show the checkbox in cfgrid? when i use cfinput type=checkbox name=checkboxname inside the cfgrid

Re: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-05 Thread Asim .
either. I hope someone used it here who can help. Thanks, If you are calling the query from cfgrid tag, do this: cfgridcolumn name=printThis header=Select width=50 select=yes type=boolean display=yes Chris Martin Asim . wrote

Re: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-05 Thread Asim .
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 either. I hope someone used it here who can help. Thanks, If you are calling the query from cfgrid tag, do

Re: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-05 Thread Chris Martin
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 either. I hope someone used it here who can help. Thanks, If you are calling the query from cfgrid tag, do

Re: CF8 HTML CFGRID with checkbox possible with binding?

2007-09-05 Thread Chris Martin
the query from cfgrid tag, do this: cfgridcolumn name=printThis header=Select width=50 select=yes type=boolean display=yes Chris Martin Asim . wrote: ~| Download the latest ColdFusion 8

CFGrid Ajax Results

2007-09-04 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Hello, I am wondering if someone could clear something up for me. I am working on a datagrid using CFGRID in HTML format. I would like to be able to manipulate the data a little bit before throwing it into the grid. Two examples are that I want CITY AND STATE to be in one column, and I want

Re: CFGrid Ajax Results

2007-09-04 Thread Brian Kotek
of binding the grid to a JavaScript function, I don't see much use for the old-style HREFKEY. On 9/4/07, [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello, I am wondering if someone could clear something up for me. I am working on a datagrid using CFGRID in HTML format. I

Re: CFGrid Ajax Results

2007-09-04 Thread Cutter (CFRelated)
Hold up, you should be able to. The query passed in to the cfgrid is only setting the data.Store property of the ExtJS grid behind it, you are using the cfgridcolumn tags to define your ColumnModel (another ExtJS construct). You should be able to define a custom renederer, pulling information

Re: CFGrid Ajax Results

2007-09-04 Thread Cutter (CFRelated)
_ http://blog.cutterscrossing.com Cutter (CFRelated) wrote: Hold up, you should be able to. The query passed in to the cfgrid is only setting the data.Store property of the ExtJS grid behind it, you are using the cfgridcolumn tags to define your ColumnModel (another ExtJS

Re: CFGrid Ajax Results

2007-09-04 Thread Brian Kotek
: Hold up, you should be able to. The query passed in to the cfgrid is only setting the data.Store property of the ExtJS grid behind it, you are using the cfgridcolumn tags to define your ColumnModel (another ExtJS construct). You should be able to define a custom renederer, pulling information

Re: CFGrid Ajax Results

2007-09-04 Thread Andrew Scott
YUI grid then all bets are off. Of course, as Cutter points out, this will be much more complicated. On 9/4/07, Cutter (CFRelated) [EMAIL PROTECTED] wrote: Hold up, you should be able to. The query passed in to the cfgrid is only setting the data.Store property of the ExtJS grid behind

Re: CFGrid Ajax Results

2007-09-04 Thread Brian Kotek
However you define complicated, it's far more complicated than just using what is built in to cfgrid. Furthermore, the custom renderer examples are just changing the format of the displayed grid, and don't even touch on the issue of building up your own data (based on a ColdFusion structure

Extending the CFGrid

2007-09-01 Thread Andrew Scott
Though everyone might enjoy this. http://www.andyscott.id.au/index.cfm/2007/9/1/How-to-add-functionality-to-the-CFGrid -- Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613 8676 4223 Mobile: 0404 998 273

CFGrid on CF 7

2007-08-27 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
I am using ColdFusion 7 version 7,0,2,142559. I am trying to work with CFGrid. My first issue is that I wanted to use the HREF= feature, but it doesn't seem to work at all. I started looking around at sites like ASFusion.com and there I learned about some nifty tricks that I am supposed

Re: cfgrid bind method with null values

2007-08-25 Thread Raymond Camden
changed all the variable names used in cfgrid tag. Now I don't get any error messages, but I don't get anything at all. Its just an empty grid. I ran the query in mysql directly with the values passed from the form, and I get 388 rows returned. I ran the page with query attribute

cfgrid bind method with null values

2007-08-24 Thread Jaysheel Bhavsar
Hey guys, I am having huge difficulty figuring this out. I am trying to get cfgrid to work with bind attriute, along with format=html. I am trying to pass some values to the function (name: get2) along with the required cfgridpage, cfgridpagesize, cfgridsortcolumn, cfgridsortdirection (code

Re: cfgrid bind method with null values

2007-08-24 Thread Raymond Camden
Are all the values null or only your custom ones? On 8/24/07, Jaysheel Bhavsar [EMAIL PROTECTED] wrote: Hey guys, I am having huge difficulty figuring this out. I am trying to get cfgrid to work with bind attriute, along with format=html. I am trying to pass some values to the function

Re: cfgrid bind method with null values

2007-08-24 Thread Jim Rising
i could not get that to work with named attributes myself... i wound up doing it ordered. -jim On 8/24/07, Jaysheel Bhavsar [EMAIL PROTECTED] wrote: Hey guys, I am having huge difficulty figuring this out. I am trying to get cfgrid to work with bind attriute, along with format=html. I

Re: cfgrid bind method with null values

2007-08-24 Thread Jaysheel Bhavsar
i could not get that to work with named attributes myself... i wound up doing it ordered. -jim Hey Jim, I am not sure what you mean by this. ~| Get the answers you are looking for on the ColdFusion Labs Forum direct from

Re: cfgrid bind method with null values

2007-08-24 Thread Jaysheel Bhavsar
Yes, all my values were null, and for some reason one of the values passed showed more null values than what should have been there. So I changed all the variable names used in cfgrid tag. Now I don't get any error messages, but I don't get anything at all. Its just an empty grid. I ran

cfgrid and bind attribute cf8

2007-08-23 Thread Jaysheel Bhavsar
hey guys I have being trying to use cfgrid to display my information and I have run into several problems I have attached my code. here my get2 function needs some arguments to query the data. The way I am calling my get function right now it does not work. I get an error that library or any

Re: cfgrid and bind attribute cf8

2007-08-23 Thread Raymond Camden
As far as I know, you can't use named positions when doing a bind. You have to use positional arguments. Again - afaik. On 8/23/07, Jaysheel Bhavsar [EMAIL PROTECTED] wrote: hey guys I have being trying to use cfgrid to display my information and I have run into several problems I have

Re: cfgrid and bind attribute cf8

2007-08-23 Thread Jaysheel Bhavsar
. Please help. updated code attached. cfform name=temp width=100% cfgrid format=html width=1024 pageSize=35 name=sResult

Re: cfgrid and bind attribute cf8

2007-08-23 Thread Chris Martin
--- www.gandyink.com Jaysheel Bhavsar wrote: hey guys I have being trying to use cfgrid to display my information and I have run into several problems I have attached my code. here my get2 function needs some arguments to query the data. The way I am calling my get function

Re: cfgrid and bind attribute cf8

2007-08-23 Thread Raymond Camden
Well, I'd change your library argument to be any, then cflog it so you can see what is being passed. On 8/23/07, Jaysheel Bhavsar [EMAIL PROTECTED] wrote: Hey Raymond, I made the change as you suggested. I have attached the code at the end. I have also turned on debugging for ajax and

Re: ajax cfgrid and custom buttons

2007-08-21 Thread Jim Rising
anyone have any additional input on this? Jim Rising Sr. Cold Fusion Developer ICGLink Inc. www.icglink.com ~| Check out the new features and enhancements in the latest product release - download the What's New PDF now

Re: ajax cfgrid and custom buttons

2007-08-21 Thread Raymond Camden
' attribute for cfgrid would also be the ID? Jim Rising Sr. Cold Fusion Developer ICGLink Inc. www.icglink.com On 8/20/07, Raymond Camden [EMAIL PROTECTED] wrote: It is definitely ColdFusion.getElementValue. The first arg would be the name of the grid, and the second the column name. On 8

issue with multiple cfwindow / cfgrid / model glue

2007-08-21 Thread Jim Rising
I have two cfwindows that i'm attempting to place into the same layout within a model glue application. one of the cfwindows contains a cfgrid, the other cfwindow contains some text. i get the following error: Ext.grid.DefaultColumnModel has no properties http://127.0.0.1:8500/translator

ajax cfgrid and custom buttons

2007-08-20 Thread Jim Rising
(xe.windowTitle) cfwindow initshow=true draggable=false width=400 height=300 title=#windowTitle# x=0 y=200 cfform method=post format=html cfformgroup type=panel label=Accountants cfgrid name=accountants format=html pagesize=5 striperows=true bind=cfc: translator.controller.controller.getAdvisors

<    1   2   3   4   5   6   7   8   9   10   >