CFGrid and CSS collisions.

2015-01-09 Thread LRS Scout
Is there a way you can wrap a cfgrid or protect it from getting it's css overridden? I'm working on reskinning a legacy application and we're trying to minimize the impact of this new design that has essentially hosed everything

Submitting form with file and CFGRID - Exception in The submitted cfgrid form field is corrupt

2014-10-22 Thread Chad Baloga
I have a form with a file upload and a CFGRID. When submitted the following error occurs: Exception in The submitted cfgrid form field is corrupt This works with CF10 Update 13. When we upgraded to Update 14 this error started occurring

CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Stephen Hait
headers correctly sorts the grid. This is the contents of the cfgrid tag: cfgrid format=html name=pilotGrid pagesize=10 autowidth=yes selectmode=row appendKey=yes href=index.cfm?fuseaction=dsp_adm-pilot-detail hrefKey=userid bind=cfc:pilot_search.getPilots({cfgridpage},{cfgridpagesize

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Andrew Scott
headers correctly sorts the grid. This is the contents of the cfgrid tag: cfgrid format=html name=pilotGrid pagesize=10 autowidth=yes selectmode=row appendKey=yes href=index.cfm?fuseaction=dsp_adm-pilot-detail hrefKey=userid bind=cfc:pilot_search.getPilots({cfgridpage},{cfgridpagesize

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread John M Bliss
Here's the official replacement for cfgrid. Double-quotes because there're many way to replace cfgrid...this is just one suggestion. https://github.com/cfjedimaster/ColdFusion-UI-the-Right-Way/blob/master/chapters/cfgrid/index.md On Tue, Jul 22, 2014 at 1:34 PM, Andrew Scott andr

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Stephen Hait
On Tue, Jul 22, 2014 at 1:34 PM, Andrew Scott andr...@andyscott.id.au wrote: where 0 = 0 looks like its obsolete in that query, in other words it shouldn't be needed if you have no if statements there. As you said it works on ColdFusion 10, what would happen if you removed the 0 = 0 or

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Stephen Hait
On Tue, Jul 22, 2014 at 1:38 PM, John M Bliss bliss.j...@gmail.com wrote: Here's the official replacement for cfgrid. Double-quotes because there're many way to replace cfgrid...this is just one suggestion. https://github.com/cfjedimaster/ColdFusion-UI-the-Right-Way/blob/master/chapters

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Maureen
On Tue, Jul 22, 2014 at 1:08 PM, Stephen Hait stephenh...@gmail.com wrote: Does anyone know why the WHERE clauses in the query appear to be ignored when running the app with CF11 but work correctly with CF10? Or does anyone have a suggestion of how to best debug this? I can't seem to figure

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Stephen Hait
On Tue, Jul 22, 2014 at 2:01 PM, Maureen mamamaur...@gmail.com wrote: On Tue, Jul 22, 2014 at 1:08 PM, Stephen Hait stephenh...@gmail.com wrote: Or does anyone have a suggestion of how to best debug this? I can't seem to figure out how to view the contents of the 3 arguments used in the

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Andrew Scott
You could check your Chrome developer tools, to then see what ColdFusion via its Ajax / JS stuff is actually sending across as parameters as well. This would help to see what is actually being passed. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+:

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Stephen Hait
, That's a good suggestion, too. With Chrome developer tools and inspecting pilot_search.cfc, when using CF10, under Headers, Query String Parameters, it reports argumentCollection which includes a list of all the arguments and values passed from the CFGRID tag. When using CF11, under Headers, Query

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Andrew Scott
suggestion, too. With Chrome developer tools and inspecting pilot_search.cfc, when using CF10, under Headers, Query String Parameters, it reports argumentCollection which includes a list of all the arguments and values passed from the CFGRID tag. When using CF11, under Headers, Query String

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Stephen Hait
On Tue, Jul 22, 2014 at 4:10 PM, Andrew Scott andr...@andyscott.id.au wrote: Stephen, Is this what you're experiencing? https://forums.adobe.com/thread/1490328 Andrew, I don't think this is the same problem but it might be related. I had not noticed any javascript errors. Just to test,

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Maureen
I know some things have changed with scope over the last few versions but not sure what changed when. Local scope for functions was added at some point. Make sure you are scoping all variables and declaring any that need to be with var. On Tue, Jul 22, 2014 at 2:53 PM, Stephen Hait

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Stephen Hait
On Tue, Jul 22, 2014 at 4:40 PM, Maureen mamamaur...@gmail.com wrote: I know some things have changed with scope over the last few versions but not sure what changed when. Local scope for functions was added at some point. Make sure you are scoping all variables and declaring any that need

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Maureen
I didn't see scopes on the variables in your return statement. cfreturn queryconvertforgrid(pilots, page, pagesize) / Not sure if that matters, but I would scope them just in case. On Tue, Jul 22, 2014 at 4:47 PM, Stephen Hait stephenh...@gmail.com wrote: On Tue, Jul 22, 2014 at 4:40 PM,

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Andrew Scott
Not sure what you're thinking their Maureen but what he has looks fine, he has nothing that needs var scoping in the function. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Wed, Jul 23, 2014 at 6:51 AM, Maureen

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Stephen Hait
On Tue, Jul 22, 2014 at 4:51 PM, Maureen mamamaur...@gmail.com wrote: I didn't see scopes on the variables in your return statement. cfreturn queryconvertforgrid(pilots, page, pagesize) / Not sure if that matters, but I would scope them just in case. I'm not sure how to correctly scope

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Andrew Scott
It will be in the variables scope for the query, but as this is an issue with the Ajax sending rather than receiving I doubt that is the issue. Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Wed, Jul 23, 2014 at 7:02 AM,

Re: CFGrid filter stops working after move from CF10 to CF11

2014-07-22 Thread Stephen Hait
On Tue, Jul 22, 2014 at 5:06 PM, Andrew Scott andr...@andyscott.id.au wrote: It will be in the variables scope for the query, but as this is an issue with the Ajax sending rather than receiving I doubt that is the issue. Thanks, Andrew - I confused var variables. And none of that scoping

cfform layout issues. cfinput autosuggest vs cfgrid

2014-02-19 Thread Michael Gueterman
I've got a form layout with a header on top that includes a cfinput using autosuggest, then below that a cflayout type=tab. The drop down produced by the autosuggest normally appears fine unless the cflayoutarea contains a cfgrid. In that case, the drop down seems to appear behind the cfgrid

form design issues; cfinput autosuggest vs cfgrid

2014-02-19 Thread Michael Gueterman
(sorry in advance is this is a double post) I've got a form layout with a header on top that includes a cfinput using autosuggest, then below that a cflayout type=tab. The drop down produced by the autosuggest normally appears fine unless the cflayoutarea contains a cfgrid. In that case

Re: Custom Rendering on CFGRID

2014-01-15 Thread Andrew Scott
/113032480415921517411 On Wed, Jan 15, 2014 at 9:35 AM, Anthony Doherty anthony...@gmail.com wrote: Hi Guys, I have this custom rendering applied from this site http://alagad.com/2010/03/31/ask-an-alagadian-how-can-i-style-a-cell-in-lt-cfgrid-gt-based-on-the-data-it-contains/ But its only

Custom Rendering on CFGRID

2014-01-14 Thread Anthony Doherty
Hi Guys, I have this custom rendering applied from this site http://alagad.com/2010/03/31/ask-an-alagadian-how-can-i-style-a-cell-in-lt-cfgrid-gt-based-on-the-data-it-contains/ But its only rendering everything in the first style - it wont change the style based on the IF statement. Below is my

Re: Custom Rendering on CFGRID

2014-01-14 Thread Andrew Scott
://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Wed, Jan 15, 2014 at 9:35 AM, Anthony Doherty anthony...@gmail.comwrote: Hi Guys, I have this custom rendering applied from this site http://alagad.com/2010/03/31/ask-an-alagadian-how-can-i-style-a-cell-in-lt-cfgrid-gt-based

Re: Custom Rendering on CFGRID

2014-01-14 Thread Anthony Doherty
rendering applied from this site http://alagad.com/2010/03/31/ask-an-alagadian-how-can-i-style-a-cell-in-lt-cfgrid-gt-based-on-the-data-it-contains/ But its only rendering everything in the first style - it wont change the style based on the IF statement. Below is my code: script

CFGrid

2013-05-17 Thread Huff, Jerome P (IS)
Since applying the latest hotfix, cfgrid applets no longer appear on my web pages, on the production server. If I view source, the call to /CFIDE/scripts/ajax is there, but no applet appears. Anyone have any idea how to correct this? Thanks, Jerome Huff

Re: CFGrid

2013-05-17 Thread Russ Michaels
the links being there doesn't say much. click the links in the source and make sure they actually work and the files can be loaded. On Fri, May 17, 2013 at 4:26 PM, Huff, Jerome P (IS) jerome.h...@ngc.comwrote: Since applying the latest hotfix, cfgrid applets no longer appear on my web

RE: EXT :CFGrid

2013-05-17 Thread Huff, Jerome P (IS)
: EXT :CFGrid Since applying the latest hotfix, cfgrid applets no longer appear on my web pages, on the production server. If I view source, the call to /CFIDE/scripts/ajax is there, but no applet appears. Anyone have any idea how to correct this? Thanks, Jerome Huff

cfgrid autosuggest problem

2012-07-03 Thread Ray Meade
hope someone can help me with this. Grid code: cfgrid name=grdProjectDetails format=html width=820 selectMode=edit insert=yes delete=yes italic=no bold=no gridLines=yes colHeaders=yes colHeaderItalic=no colHeaderBold=yes enabled=Yes visible=Yes rowheaders=no bindonload=yes bind

ColdFusion 9 cfgrid refresh problem

2012-06-25 Thread Ray Meade
I've been trying to solve this problem for over a week now to no avail and it's driving me crazy. Basically, I have an html form with an html cfgrid containing the columns Quantity, TaskName, UnitPrice and ExtendedPrice. I managed to bind the grid to a cfc function that populates it from

Re: ColdFusion 9 cfgrid refresh problem

2012-06-25 Thread Andrew Scott
The CFGrid is based on the ExtJS 3.1 (from memory, not sure if it was upgraded past that point), on ColdFusion 9. So unless stated otherwise I am going to assume ColdFusion 9. There is a way where you can intercept, or take control of the save or hook into a listener in to do further things, one

Re: ColdFusion 9 cfgrid refresh problem

2012-06-25 Thread Steve 'Cutter' Blades
this problem for over a week now to no avail and it's driving me crazy. Basically, I have an html form with an html cfgrid containing the columns Quantity, TaskName, UnitPrice and ExtendedPrice. I managed to bind the grid to a cfc function that populates it from the database and I've created

Re: ColdFusion 9 cfgrid refresh problem

2012-06-25 Thread Ray Meade
Actually, the save and refresh buttons are a part of the html cfgrid, I didn't create them and you're correct that I'm using CF9. The CFGrid is based on the ExtJS 3.1 (from memory, not sure if it was upgraded past that point), on ColdFusion 9. So unless stated otherwise I am going to assume

CF9 cfgrid get value from added textbox

2012-05-29 Thread Shaun McCoy
[/code] Here is the code for the grid. [code] cfform name=iResults id=iResults br / bSearch:/b input type=text name=search id=search cfinput type=checkbox checked=no name=guide id=guide My Guidebr/ cfgrid

cfgrid

2012-02-23 Thread Stephens, Larry V
New to using cfgrid and have a question or two. I'm using a cfselect input with a query. It's possible that two or more items that are displayed will be very similar so I'll have the cfgrid in a hidden div that the user can pop open and do a lookup there where more information is displayed

Binding cfselect to cfgrid

2011-09-23 Thread Tim Stutzman
Having a hard time finding any resources on how to bind a cfselect to cfgrid. I can bind a cfinput to a cfgrid easily. For example: cfinput type=text width=300 name=txtPartNumber label=Part Number: bind={FGRMBufferData_grid.dataProvide[FGRMBufferData_grid.selectedIndex

Re: implementing CFGRID filter on CF9, blog examples fail

2011-08-26 Thread Larry Lyons
Oh drat, I got so caught up in typing up my reply that I forgot to thank you for taking the time to offer a suggestion. I really did mean to write that first. -Patti N/P. it was only a small suggestion. ~| Order the

Re: implementing CFGRID filter on CF9, blog examples fail

2011-08-25 Thread Larry Lyons
Off the top of my head, do you have a mapping to the /CFIDE/scripts directory, or is it accessible to the browser? It may be that CF is not finding the scripts it needs to run cfgrid. hth, larry Running ColdFusion Server Standard 9,0,0,251028 and using CFGRID for the first time in years

Re: implementing CFGRID filter on CF9, blog examples fail

2011-08-25 Thread Patricia Geneva
. AT the very least, using the header toolbar is hosed for 9.0 and i don't have the time to dig into how to manipulate EXTjs directly. I did find that one thing I was doing wrong was populating my CFGRID with a CFQUERY. In order to get the bottom toolbar and paging to work, I needed to get rid

Re: implementing CFGRID filter on CF9, blog examples fail

2011-08-25 Thread Patricia Geneva
Oh drat, I got so caught up in typing up my reply that I forgot to thank you for taking the time to offer a suggestion. I really did mean to write that first. -Patti ~| Order the Adobe Coldfusion Anthology now!

implementing CFGRID filter on CF9, blog examples fail

2011-08-24 Thread Patricia Geneva
Running ColdFusion Server Standard 9,0,0,251028 and using CFGRID for the first time in years. It was going just fine until I started trying to implement a filter. First I found Dan Vega's blog: http://www.danvega.org/blog/2008/3/10/ColdFusion-8-Grid-Filtering I downloaded his source and ran

CFGRID strange behaviour in Production Server (Windows 2000 + ISS)

2011-08-11 Thread Luiz Milfont
Dear Sirs/Madams, I am facing a strange issue with CFGRID component, just in production server. In my development machine or any other, if I install Coldfusion8 and my application, it works just fine. I double-click a grid cell and edit its contents. Then I press the TAB key to move

Re: CFGRID strange behaviour in Production Server (Windows 2000 + ISS)

2011-08-11 Thread Steve 'Cutter' Blades
Packt Publishing 2010 https://www.packtpub.com/learning-ext-js-3-2-for-building-dynamic-desktop-style-user-interfaces/book The best way to predict the future is to help create it On 8/11/2011 11:16 AM, Luiz Milfont wrote: Dear Sirs/Madams, I am facing a strange issue with CFGRID component

Re: CFGRID strange behaviour in Production Server (Windows 2000 + ISS)

2011-08-11 Thread Luiz Milfont
Dear Steve, Yes, I´ve checked versions. All the same. I´ve applied all kinds of patches from Adobe site... I have even copied the CFIDE folder from my machine to production machine, thinking that it might be a CSS problem... Nothing has solved the problem yet. What I can say, if that maybe a

Re: CFGRID strange behaviour in Production Server (Windows 2000 + ISS)

2011-08-11 Thread Luiz Milfont
Could it be an EXT issue? Is there any way to update EXT on production server? I ask this, because my CFGRID component uses EXT. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp

Re: CFGRID strange behaviour in Production Server (Windows 2000 + ISS)

2011-08-11 Thread Steve 'Cutter' Blades
-desktop-style-user-interfaces/book The best way to predict the future is to help create it On 8/11/2011 1:18 PM, Luiz Milfont wrote: Could it be an EXT issue? Is there any way to update EXT on production server? I ask this, because my CFGRID component uses EXT

RE: CFGRID strange behaviour in Production Server (Windows 2000 + ISS)

2011-08-11 Thread Brook Davies
Steve's right, if you have unescaped HTML inside the grid (in the data), then it can cause the grid display to be wonky. Brook -Original Message- From: Steve 'Cutter' Blades [mailto:cold.fus...@cutterscrossing.com] Sent: August-11-11 10:28 AM To: cf-talk Subject: Re: CFGRID strange

Re: cfgrid format=html and copy

2011-06-08 Thread aaron mclean
Try this css at the top of your page .x-grid3-td-0 {-moz-user-select:auto} .x-grid3-td-1 {-moz-user-select:auto} .x-grid3-td-2 {-moz-user-select:auto} .x-grid3-td-3 {-moz-user-select:auto} .x-grid3-td-4 {-moz-user-select:auto} .x-grid3-td-0 {-webkit-user-select::auto} .x-grid3-td-1

Adding more than 1 row in CFGRID

2011-03-24 Thread Chad Baloga
I am having a problem with CFGRID where I get Multiple row insert is not supported when a user clicks the insert row button more than once. Is there a way to disable the Add Row button after it is clicked, or does anyone know how to get CFGRID to insert more than 1 row at a time? Thanks

CF9 - cfgrid posting empty form data

2011-02-23 Thread Dominic Howard
Hi I'm having a mare with an HTML cfgrid which will not post any data whatever I do to it. I've used Flash grids before and not had any problems but this HTML grid I just cannot work out at all. It is bound to a CFC and populates itself just fine. However, once a row is selected and Submit

Re: Date format in HTML cfgrid

2011-02-05 Thread Pete Ruckelshaus
Well, it won't support properly in your SQL solution because you've converted it to a varchar. Pete On Thu, Feb 3, 2011 at 10:13 AM, Steve Sequenzia c...@thinksys.com wrote: I am trying to format dates in an HTML cfgrid. I cannot seem to make it work in CF when using HTML as the grid type

Date format in HTML cfgrid

2011-02-03 Thread Steve Sequenzia
I am trying to format dates in an HTML cfgrid. I cannot seem to make it work in CF when using HTML as the grid type. I have also tried doing it in MSSQL by using - CONVERT(VARCHAR(10), startDate, 101) AS startDate. When I do that it shows up right in the grid but the grid will not sort

cfgrid bind question

2010-12-04 Thread funand learning
Hi All- I am trying to use cfgrid, as below cfgrid name=usersgrid pagesize=5 format=html width=100% height=200 bind=cfc:SysAdmin.cfc.lookupUsers.getAllUsers({cfgridpage},{cfgridpa gesize},{cfgridsortcolumn},{cfgridsortdirection},{filtercolumn},{filte r}). I also have a application.cfm

cfgrid bind question

2010-12-04 Thread fun and learning
Hi All- I am trying to use cfgrid, as below cfgrid name=usersgrid pagesize=5 format=html width=100% height=200 bind=cfc:SysAdmin.cfc.lookupUsers.getAllUsers({cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection

cfgrid bind question

2010-12-04 Thread fun and learning
Hi All- I am trying to use cfgrid, as below cfgrid name=usersgrid pagesize=5 format=html width=100% height=200 bind=cfc:SysAdmin.cfc.lookupUsers.getAllUsers({cfgridpage},{cfgridpa gesize},{cfgridsortcolumn},{cfgridsortdirection},{filtercolumn},{filte r

cfgrid bind question

2010-12-04 Thread fun and learning
Hi All- I am trying to use cfgrid, as below cfgrid name=usersgrid pagesize=5 format=html width=100% height=200 bind=cfc:SysAdmin.cfc.lookupUsers.getAllUsers({cfgridpage},{cfgridpa gesize},{cfgridsortcolumn},{cfgridsortdirection},{filtercolumn},{filte r

CFGRID width

2010-10-06 Thread Glyn Jackson
in CF9 using CFGRID, for some reason I cannot get it to be 100% the width of the cflayout. I know you can set the width but it's in px which is no good to me. i would like it i could make the width just 100% but its not accepted. any other way to make the with 100% of when inside a cflayout

cfgrid dynamic row colour

2010-10-05 Thread Anthony Doherty
Hi i have a grid that displays a date field. Im looking some help in changing the colour of the row if the date is less than 2 weeks away?? also im using cf9 Thanks ~| Order the Adobe Coldfusion Anthology now!

RE: cfgrid dynamic row colour

2010-10-05 Thread Andrew Scott
http://www.andyscott.id.au/2010/10/5/ColdFusion-9-and-how-to-change-the-colo ur-of-the-row-in-a-CFGrid Regards, Andrew Scott http://www.andyscott.id.au/ -Original Message- From: Anthony Doherty [mailto:anthony.dohe...@oakleafcontracts.com] Sent: Wednesday, 6 October 2010 7:53 AM

For CF8, can CFGrid html format do drag and drop of rows?

2010-10-01 Thread Richard Tang
I'd like to create a cfgrid format=html and be able to drag and drop. What I'm trying to do is sort the rows of the grid by drag and drop and be able to save the updated sorting. I've seen examples in flash format, but can't find examples in html format. The reason I don't want to use

CFGRID sort order

2010-09-15 Thread Sarah LaValle
I've got a cfgrid that I put together using this tutorial: http://www.garyrgilbert.com/tutorials/coldfusion/intermediate/cfgrid.cfm It is working fine except there is an issue with the sorting of one column, the column is called DISPATCHNUM, but the data is not all numeric. The datatype

show Hide cfgrid?

2010-08-09 Thread Joy Rose
Is there any way to show a hidden cfgrid based on an OnChange event from another cfgrid? I've tried using a javascript function call with no results: Any suggestions on how I could show the hidden cfgrid from another cfgrid by some other method? Thanks

How Update 2 Tables from CFGRID - CF 9

2010-08-05 Thread Joy Rose
cfgrid name= Contract_EDIT title=Please update the following Contract/Task Information for your RCP selectmode=edit insert=no format=html striperows=yes bindonload=no bind=cfc:ATC._cfc.GetRCPsForContracts.ChosenContract

Re: Bind to a CFINPUT from a CFGRID

2010-08-04 Thread Michael Grant
: gridExample.cfm cfquery name=GetParks datasource=cfdocexamples cachedwithin=#CreateTimeSpan(0, 6, 0, 0)# SELECT PARKNAME, REGION, STATE FROM Parks Where REGION = 'Southeast Region' ORDER BY ParkName, State /cfquery cfform name=GridForm action= cfgrid name

Bind to a CFINPUT from a CFGRID

2010-07-29 Thread Chad Baloga
I can't seem to figure out how to bind a selected column value in a CFGRID to a text box later on the page. Any ideas? Thanks ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology

Re: Bind to a CFINPUT from a CFGRID

2010-07-29 Thread Ria Ragam
= cfgrid name=Brand_Grid selectmode=row selectonLoad=no BindOnLoad=no query=GetParks format='html' appendKey =yes cfgridcolumn name=PARKNAME header=PARKNAME headeralign=center headerbold=Yes cfgridcolumn name=REGION header=REGION headeralign=center headerbold=Yes /cfgrid /cfform cfdiv id

CFGrid and actionscript

2010-07-17 Thread DURETTE, STEVEN J (ATTASIAIT)
Hi all, I have a small dilemma and would like some suggestions. I have an app that has been working for a long time. It is a Flash Form using a cfgrid. ActionScript and Flash Remoting is used to deal with updating and saving changes, etc. If there is only a row or two in the grid

Re: CF9: How pass cfgrid values to a cfm page?

2010-06-13 Thread Raymond Camden
On Fri, Jun 11, 2010 at 9:00 PM, Azadi Saryev azadi.sar...@gmail.com wrote:  On 11/06/2010 23:40, Raymond Camden wrote: You've made your button use CF's navigate function, which is NOT going to pass the form fields along actually, it IS going to pass them if you specify form's name or id as

CF9: How pass cfgrid values to a cfm page?

2010-06-11 Thread Joy Rose
I get Element RCP_ID is undefined in FORM when I run the code below: If possible, Id like to continue to work with the ColdFusion.navigate function. RCPMngmnt.cfm excerpt: cfform name=faddRCP size=400 id=faddRCP cfgrid name=AddRCP title=Add New RCP selectmode=edit

CF9: How pass cfgrid values to a cfm page?

2010-06-11 Thread Joy Rose
I get Element RCP_ID is undefined in FORM when I run the code below: If possible, Id like to continue to work with the ColdFusion.navigate function. RCPMngmnt.cfm excerpt: cfform name=faddRCP size=400 id=faddRCP cfgrid name=AddRCP title=Add New RCP selectmode=edit

Re: CF9: How pass cfgrid values to a cfm page?

2010-06-11 Thread Raymond Camden
You've made your button use CF's navigate function, which is NOT going to pass the form fields along. Why not just get rid of that and use a normal submit? On Fri, Jun 11, 2010 at 8:16 AM, Joy Rose joycer...@gmail.com wrote: I get  Element RCP_ID is undefined in FORM when I run the code below:

Re: CF9: How pass cfgrid values to a cfm page?

2010-06-11 Thread Azadi Saryev
On 11/06/2010 23:40, Raymond Camden wrote: You've made your button use CF's navigate function, which is NOT going to pass the form fields along actually, it IS going to pass them if you specify form's name or id as the last parameter of ColdFusion.navigate() function - which Joy did. @Joy -

cfgrid refresh

2010-06-01 Thread Kevin Johnson
I have a bindable cfgrid in cf8 that updates just fine (I see the red triangle in the cell). What I need to know is how to refresh the grid after the update so the original cfc that fills the grid runs again to show new updated information. I found these commands but not sure where to put them

Re: CFGRID - Empty Response help

2010-05-25 Thread Emily McGill
read and read and read and I can't figure out what I have got going on here. I have a cfc which gets the data to populate the cfgrid. (I am so new to all this, not even funny). I do not have an application.cfc, so that rules out half the answers to this problem. I have another cfc to a different page

Re: CFGRID - Empty Response help

2010-05-25 Thread Scott Stewart
which gets the data to populate the cfgrid. (I am so new to all this, not even funny). I do not have an application.cfc, so that rules out half the answers to this problem. I have another cfc to a different page and when that has no data, it just shows the empty grid. So, I don't think

RE: CFGRID - Empty Response help

2010-05-24 Thread Scott Stewart
Emily, This line needs a set cf link = a href=AppExt.cfm?apprid= -Original Message- From: Emily McGill [mailto:cassadinec...@gmail.com] Sent: Friday, May 21, 2010 1:38 PM To: cf-talk Subject: CFGRID - Empty Response help Ok, I have read and read and read and I can't figure out

CFGRID - Empty Response help

2010-05-21 Thread Emily McGill
Ok, I have read and read and read and I can't figure out what I have got going on here. I have a cfc which gets the data to populate the cfgrid. (I am so new to all this, not even funny). I do not have an application.cfc, so that rules out half the answers to this problem. I have another cfc

CFgrid default save and cancel buttons

2010-05-19 Thread Chad Baloga
Does anyone know how to change the default save and cancel buttons in an editable cfgrid (html format)? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp

inserting a new record with identity key using cfgrid bind onchange

2010-05-18 Thread sarah mfr
I got an error message on trying to insert a row to a table with an identity column using cfgrid onchange I would like also to use a stored procedure instead of cfquery I just need how to call it and how to pass arguments to it Please look below is the code,component, and error message My

Re: ColdFusion 9 binding cfgrid

2010-05-13 Thread Alteria
Firebug shows an 'nbsp;' in the grid. I see several gets in the HTTP request. I have copied and pasted the details below. -

Re: ColdFusion 9 binding cfgrid

2010-05-13 Thread Alteria
Firebug shows an 'nbsp;' in the grid. I see several gets in the HTTP request. I have copied and pasted the details below. -

Re: ColdFusion 9 binding cfgrid

2010-05-10 Thread Raymond Camden
What does Firebug or Chrome's Dev Tools show you in the HTTP request? Is CF Debugging on? On Sun, May 9, 2010 at 2:41 PM, Alteria ljschab...@verizon.net wrote: I am having some issues figuring this one out. The code was all working with ColdFusion 8, then we moved to a CF 9 server and

ColdFusion 9 binding cfgrid

2010-05-09 Thread Alteria
there is one result displaying. I can't figure out what changed from 8 to 9. Any assistance would be appreciated. Main CFM file: cfform action=viewMsg.cfm cfgrid bind=CFC:messages.dispMessages({cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection}) format=html height

Re: Is CFGRID in CF9 solid enough for heavy use for CRUD functionality?

2010-05-07 Thread Eric .
Thanks Dan, Do you have any specific links that you've come across and deemed authoritative for some of those techniques? There's a lot of CFGRID examples but some lead to broken javascript errors in IE or other buggy functionality. On Thu, May 6, 2010 at 5:10 PM, Eric . wrote

Re: Is CFGRID in CF9 solid enough for heavy use for CRUD functionality?

2010-05-07 Thread Will Tomlinson
Playing with some CFGRID examples on ColdFusion 9, I noticed some major slowdown without a lot of records being loaded. Being on a locally hosted server off my workstation that concerned me even more. I like jqGrid. cfgrid bit me in the butt when I moved to Railo. jqGrid fixes

Re: Is CFGRID in CF9 solid enough for heavy use for CRUD functionality?

2010-05-07 Thread denstar
On Fri, May 7, 2010 at 11:27 AM, Will Tomlinson wrote: Playing with some CFGRID examples on ColdFusion 9, I noticed some major slowdown without a lot of records being loaded.  Being on a locally hosted server off my workstation that concerned me even more. I like jqGrid. cfgrid bit me

Re: Is CFGRID in CF9 solid enough for heavy use for CRUD functionality?

2010-05-07 Thread Cutter (ColdFusion)
I tell everyone that the cfajax tags are great for rapid prototyping, but it's best to go straight ExtJs for production implementation on anything but the simplest work. One of the biggest issues I've seen, in examples of paging with the cfgrid tags, is the use of the QueryConvertForGrid

Is CFGRID in CF9 solid enough for heavy use for CRUD functionality?

2010-05-06 Thread Eric .
Playing with some CFGRID examples on ColdFusion 9, I noticed some major slowdown without a lot of records being loaded. Being on a locally hosted server off my workstation that concerned me even more. I have a lot of CRUD pages for various parts of a management system we're re-writing

Re: Is CFGRID in CF9 solid enough for heavy use for CRUD functionality?

2010-05-06 Thread denstar
On Thu, May 6, 2010 at 5:10 PM, Eric . wrote: ... Am I just not customizing CFGRID well enough, or am I on to something you've realized as well? I don't know about cfgrid specifically, but the principal is sound, and works, and there are tricks to make it work better (splitting up some stuff

Re: Bind CFgrid data to Textbox

2010-05-05 Thread Joy Rose
As far as I can tell using CF9, the value field can't be used in CFGrid. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive

Where do i find CFGRID Code?

2010-04-21 Thread Mike Kear
I have an application where the client's code, containing some CFGrid tags works fine on the production server built by a previous developer, but when I load all that code onto my dev server, so i have a local working copy, the CFGRID tags dont work. I'm guessing this is because I have a non

Re: Where do i find CFGRID Code?

2010-04-21 Thread Dave Watts
So here's my question: [A]  do you think the cause of this problem is that the location of the CFGRID code is non-standard and therefore i need to use the scriptsrc= attibute of the CFFORM tag? Yes, I think that's the cause, although honestly I don't know whether changing SCRIPTSRC works

Re: Where do i find CFGRID Code?

2010-04-21 Thread Mike Kear
Can anyone tell me why this happens?? If i run a page in the root of a site, the CFGRID works. If i run the precise same file in the same relative location of a subdomain of that site, it doesnt. Can anyone see what i've got wrong here? Here is the relevant code: ! First collect

Re: Where do i find CFGRID Code?

2010-04-21 Thread Dave Watts
Can anyone tell me why this happens??   If i run a page in the root of a site, the CFGRID works.  If i run the precise same file in the same relative location of a subdomain of that site,   it doesnt.     Can anyone see what i've got wrong here? Well, first, a bit of clarification

Re: Where do i find CFGRID Code?

2010-04-21 Thread Azadi Saryev
in the root of a site, the CFGRID works. If i run the precise same file in the same relative location of a subdomain of that site, it doesnt. Can anyone see what i've got wrong here? Here is the relevant code: ! First collect the data from the database --- cfquery name=qtestquery

RE: Where do i find CFGRID Code?

2010-04-21 Thread brad
If you go to the working link: http://adcalpos.net/trygrid.cfm you'll see it works, therefore the CFGRID applet has been installed ok, then if you go to the subdomain version of the exact same file at http://shard.adcalpos.net/trygrid.cfm you'll see now it cant find the CFGRID applet

Re: Where do i find CFGRID Code?

2010-04-21 Thread Dan Blickensderfer
Mike, Make sure you have the virtual directory cfide setup on your sub domain website. That virtual directory needs to be pointing to your cfide directory of your server. I've ran into that as well but just not cfgrid. it was all cfide components. Thanks, Dan - Original Message

Re: Where do i find CFGRID Code?

2010-04-21 Thread Mike Kear
has its own copy of the CFGRID in a folder called /CFIDE/classes, that should work, I hope. There is no point in creating a mapping because unless I'm mistaken, CF Creates a mapping called CFIDE when it installs doesn't it? So that will already be there. Cheers Mike Kear Windsor, NSW, Australia

Re: Where do i find CFGRID Code?

2010-04-21 Thread Dave Watts
a support ticket.  I'd rather not do that if i can help it - so if each site or sub-site or virtual host has its own copy of the CFGRID in a folder called /CFIDE/classes, that should work, I hope. Yes, that should work. I would prefer to create a virtual directory, though, because if you have

  1   2   3   4   5   6   7   8   9   10   >