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 h

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

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 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 of the return values

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, Ste

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 wrote: > > I didn't see scopes on the variables in your return statement. > > > Not sure if that matters, but I would scope them just in case. I'm not sure how to correctly scope pilots. It's the name of the query but if it try query.pilots or var.pilo

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

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. Not sure if that matters, but I would scope them just in case. On Tue, Jul 22, 2014 at 4:47 PM, Stephen Hait wrote: > > On Tue, Jul 22, 2014 at 4:40 PM, Maureen wrote: > >> >> I know some things have changed with scope over the la

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 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 to be with var.

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 wrote: > > A

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 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, removed 2 of the 3

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

2014-07-22 Thread Andrew Scott
Andrew, 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 u

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

2014-07-22 Thread Stephen Hait
hat'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 String

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+: http://plus.google.com/1130

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 wrote: > > On Tue, Jul 22, 2014 at 1:08 PM, Stephen Hait > 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 WHERE > > clauses to see why they m

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 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 out how to view t

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

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 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 > replaced it with 1 = 1?

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,

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

2014-07-22 Thread Andrew Scott
clicking column headers correctly sorts the grid. > > This is the contents of the cfgrid tag: > > format="html" > name="pilotGrid" > pagesize="10" > autowidth="yes" > selectmode="row" > appendKey="yes" &g

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: The bind parameter specifies a function, getPilots, in pilot_search.cfc. It passes 3 attributes/parameters to the function which are the contents of the 3 text filters - pil_email, pil_lname, pil_n_number. The function

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

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 appe

Re: Custom Rendering on CFGRID

2014-01-15 Thread Andrew Scott
gt; > happening. > > > > Regards, > > Andrew Scott > > WebSite: http://www.andyscott.id.au/ > > Google+: http://plus.google.com/113032480415921517411 > > > > > > > > On Wed, Jan 15, 2014 at 9:35 AM, Anthony Doherty >wrote: > > > >

Re: Custom Rendering on CFGRID

2014-01-14 Thread Anthony Doherty
y 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 rendering everything in the

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

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

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) wrote: > > Since applying the latest hotfix, cfgrid applets no longer appear on my > web

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

cfgrid autosuggest problem

2012-07-03 Thread Ray Meade
My client's application has a Coldfusion HTML form that contains a Coldfusion HTML grid which binds to a cfc to retrieve and update the grid's data. My client would like one of the grids columns to have an autosuggest feature like the other input fields on the page has. (he wants to be able to

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

Re: ColdFusion 9 cfgrid refresh problem

2012-06-25 Thread Steve 'Cutter' Blades
0 AM, Ray Meade wrote: > 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 bin

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

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 i

CF9 cfgrid get value from added textbox

2012-05-29 Thread Shaun McCoy
What I am trying to do is get the value of a textbox that I have added to my grid via button click. Here is the code that I have used so far: This is where I add the button and textbox. [code] ",currentrow)> ", currentrow)> [/code] Here is

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 informatio

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: But when it comes to cfselect, I can't figure out how to do the same thing. Any help would be appreciated. Thanks in adv

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 t

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! http://www.am

Re: implementing CFGRID filter on CF9, blog examples fail

2011-08-25 Thread Patricia Geneva
1. 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

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

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 an

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:

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

2011-08-11 Thread Steve 'Cutter' Blades
ing-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 1:18 PM, Luiz Milfont wrote: > Could it be an EXT issue? Is there any way to update EXT on production > serve

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 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 c

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

2011-08-11 Thread Steve 'Cutter' Blades
ning Ext JS 3.2" 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, > >

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 to the

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 {-webkit-user

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 tim

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

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 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 gri

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 on the

cfgrid bind question

2010-12-04 Thread fun and learning
Hi All- I am trying to use cfgrid, as below . I also have a application.cfm file which is checking for a URL variable as below: The problem is the call to remote cfc is checking for this URL variable. How can I pass a URL variable in the bind attribute

cfgrid bind question

2010-12-04 Thread fun and learning
Hi All- I am trying to use cfgrid, as below . I also have a application.cfm file which is checking for a URL variable as below: The problem is the call to remote cfc is checking for this URL variable. How can I pass a URL variable in the bind attribute

cfgrid bind question

2010-12-04 Thread fun and learning
Hi All- I am trying to use cfgrid, as below . I also have a application.cfm file which is checking for a URL variable as below: The problem is the call to remote cfc is checking for this URL variable. How can I pass a URL variable in the bind attribute? Thanks

cfgrid bind question

2010-12-04 Thread funand learning
Hi All- I am trying to use cfgrid, as below . I also have a application.cfm file which is checking for a URL variable as below: The problem is the call to remote cfc is checking for this URL variable. How can I pass a URL variable in the bind attribute? Thanks

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 cfl

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 201

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! http://www.amaz

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.

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 dataty

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? T

How Update 2 Tables from CFGRID - CF 9

2010-08-05 Thread Joy Rose
Need Help Updating 2 Tables from a Grid Is there a way to do this in CF 9? Some of the grid columns need to update the table "contract". The update code for the other table, "fte" is below. It will fail, obviously, since several columns in the update query belong to the "contract" table. Here's

Re: Bind to a CFINPUT from a CFGRID

2010-08-04 Thread Michael Grant
gt; header="REGION" > headeralign="center" > headerbold="Yes"> > > > bind="url:gridOutput.cfm?PARKNAME={GridForm:Brand_Grid.PARKNAME}"> > > gridOutput.cfm > Echoing main page input: > > >

Re: Bind to a CFINPUT from a CFGRID

2010-07-29 Thread Ria Ragam
Park Name: No input > 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!

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-Anth

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 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 > the last par

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 -

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 wrote: > > I get  Element RCP_ID is undefined in FORM when I run the code below: If > possible, I

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:

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:

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 Scott Stewart
ciate the help. I am sure I will need more and I am > learning a lot just by listening in on the conversation here! > > Em > >>Emily, >> >>This line needs a "set" >> >> >> >>Ok, I have read and read and read and I can't figure ou

Re: CFGRID - Empty Response help

2010-05-25 Thread Emily McGill
ad 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 >d

RE: CFGRID - Empty Response help

2010-05-24 Thread Scott Stewart
Emily, This line needs a "set" -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 what I have got g

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

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 ' ' in the grid. I see several gets in the HTTP request. I have copied and pasted the details below. - {URL}messageWindow.cfm?PlayerID=5&_cf_containerId=myCFWindow_body&_cf_nodebug=true&_cf_nocache=true&

Re: ColdFusion 9 binding cfgrid

2010-05-13 Thread Alteria
Firebug shows an ' ' in the grid. I see several gets in the HTTP request. I have copied and pasted the details below. - {URL}messageWindow.cfm?PlayerID=5&_cf_containerId=myCFWindow_body&_cf_nodebug=true&_cf_nocache=true&

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 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 discovered the code was no

ColdFusion 9 binding cfgrid

2010-05-09 Thread Alteria
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 discovered the code was no longer working. It seems like the grid never stops loading. I have placed the code snippets below and parts from the cfdebug window to show th

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 QueryConv

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. > &

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 fi

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,

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 (s

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: 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=houseo

Re: Where do i find CFGRID Code?

2010-04-21 Thread Dave Watts
ories, so to create those involves 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 vi

Re: Where do i find CFGRID Code?

2010-04-21 Thread Mike Kear
-site or virtual host 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. Cheer

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 - O

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 CFG

Re: Where do i find CFGRID Code?

2010-04-21 Thread Azadi Saryev
age 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: > > > select EmployeeID, Giv

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

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: select Emplo

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 k

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

  1   2   3   4   5   6   7   8   9   10   >