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
Stephen, Is this what you're experiencing? https://forums.adobe.com/thread/1490328 Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/113032480415921517411 On Wed, Jul 23, 2014 at 5:38 AM, Stephen Hait wrote: > > On Tue, Jul 22, 2014 at 3:04 PM, A

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

2014-07-22 Thread Stephen Hait
On Tue, Jul 22, 2014 at 3:04 PM, Andrew Scott wrote: > > 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. Andrew, That's a good suggestion

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-Right-Way/blob/master/chapters/cfgrid/index.md

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, Andrew Scott wrote: > > wher

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

2014-07-22 Thread Andrew Scott
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? Other than that I really can't see any other issue with it. Wh

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 pages, on the produ

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
No, you can't update Ext on the server. You could write a straight Ext implementation, skipping the cfajax components all together. Or, it could be a data issue, where something in the data is breaking cfgrid's js. If you're server versions, hotfix levels, etc are all the same then it should j

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

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
Have you checked that the prod server is running the same version of CF? Hotfix levels, all that? Steve 'Cutter' Blades Adobe Community Professional Adobe Certified Expert Advanced Macromedia ColdFusion MX 7 Developer http://blog.cutterscrossing.com Co-Author "Learning Ext JS 3.2"

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

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 >

Re: CFGRID - Empty Response help

2010-05-25 Thread Scott Stewart
Emily.. no problem at all.. sometimes the worst bugs, just need a fresh set of eyes ...no time wasted, glad I could help On Tue, May 25, 2010 at 11:19 AM, Emily McGill wrote: > > Thanks for the help. I went in yesterday to try this change and noticed at > that point (after hours of staring at

Re: CFGRID - Empty Response help

2010-05-25 Thread Emily McGill
Thanks for the help. I went in yesterday to try this change and noticed at that point (after hours of staring at it last week), it was a darn typo actually. Fixed it right up. This line - has the double a in the invoiceActive line. No wonder my response was empty! Isn't that always the way i

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 going on here. I have

Re: cfgrid flash href

2010-02-04 Thread Svetlin Roussev
Right after you are closing your cfgrid you can do something like that: http://mygrid.selecteditem.id/>}'>Edit"> ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing

Re: cfgrid flash href

2010-02-04 Thread Svetlin Roussev
> } else { > > return data; > > } > > } > > > > /*called by init for grid render on cellclick*/ > > gridfunc = function(grid,rowIndex,columnIndex,e){ > > var record = grid.getDataSource().getAt(rowIndex); > > var fieldName = grid.getColumnModel().getDataI

Re: cfgrid flash href

2010-02-04 Thread Paul Ihrig
r record = grid.getDataSource().getAt(rowIndex); >      var fieldName = grid.getColumnModel().getDataIndex(columnIndex); > /*On Cell Click logic*/ >    if(record.get(fieldName) != null){ >        /* Build hyperlink */ >        window.location.href = "somepage.cfm?urlval="+rec

Re: cfgrid flash href

2010-02-04 Thread Martin Franklin
ot;Svetlin Roussev" To: "cf-talk" Sent: Wednesday, February 03, 2010 6:25 PM Subject: ***SPAM*** Re: cfgrid flash href > > You can do optionitem and bind it with the href. > > On Wed, Feb 3, 2010 at 7:10 AM, morchella > wrote: > >> >> hey guys. &

Re: cfgrid flash href

2010-02-03 Thread Svetlin Roussev
You can do optionitem and bind it with the href. On Wed, Feb 3, 2010 at 7:10 AM, morchella wrote: > > hey guys. > i know cfgrid flash doesn't support href in cfgridcolumn > but there has to be a way? > > height="210" width="800" rowheaders="no" > onchange="getUrl('_edit_hoverArea.cfm?ha_1Id=' +

Re: cfgrid display error

2010-01-28 Thread Kamru Miah
The cfgrid display problem has been resolved. The cause was a cfhtmlhead related code Application.cfm, which was interfering with the CFC ajax calls. By excluding the cfhtmlhead code when the CFC call is made, solved the problem. The &cfdebug window did not show the extra cfhtmlhead contents, h

RE: CFGrid in CF9 changes

2009-12-31 Thread Brook Davies
:22 AM To: cf-talk Subject: Re: CFGrid in CF9 changes The CF9 controls now use ExtJS 3.0. One of the major changes in ExtJS 3.x was to totally tear down the CSS and reorganise it, so old themes will not work. This does however mean that it's easier to replace them. mxAjax / CFAjax docs and

Re: CFGrid in CF9 changes

2009-12-31 Thread James Holmes
The CF9 controls now use ExtJS 3.0. One of the major changes in ExtJS 3.x was to totally tear down the CSS and reorganise it, so old themes will not work. This does however mean that it's easier to replace them. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 20

Re: cfgrid

2009-11-23 Thread Won Lee
New book on the way? When I first learned EXT, about a year ago, your blog was goto reference. I'm not sure why I never bought your book but a new book would be on the top of my purchase list. Once again, thanks for the help. PS one of the reasons I'm avoiding a full EXT implementation is I n

Re: cfgrid

2009-11-23 Thread Cutter (ColdFusion)
Right on the money! Man, that sounds so much easier than what I wrote ;) Steve "Cutter" Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer Co-Author of "Learning Ext JS" http://www.packtpub.com/learning-ext-js/book _ http://blog.cuttersc

Re: cfgrid

2009-11-23 Thread Won Lee
NVM. I just reread your post and realized what you were trying to teach me. Basically, The user types data into the first row. I put that row into the DB. Update the datastore. Reload the Grid. then the user can click on insert again and a new row will be appended to the grid. Repeat as ma

Re: cfgrid

2009-11-23 Thread Won Lee
NVM. I just reread your post and realized what you were trying to teach me. Basically, The user types data into the first row. I put that row into the DB. Update the datastore. Reload the Grid. then the user can click on insert again and a new row will be appended to the grid. Repeat as ma

Re: cfgrid

2009-11-23 Thread Won Lee
Sorry for the poor explanation of my problem. This is always a new grid. There is no data I am binding. I do not create the store. I assume the CF server is creating the DataStore. I want the user to be able to add as many rows to the grid as they need. As of right now I am not making any DB

Re: cfgrid

2009-11-23 Thread Cutter (ColdFusion)
Ah, yes. But, a complete ExtJs solution would be much more... OK, that (not) said, cfgrid does have problems with multiple insertions. Or, rather, it doesn't really deal with them well. When you insert a line, it gives the underlying Ext store record some default values. This includes the id,

Re: cfgrid loading data

2009-08-10 Thread RamaDevi Dobbala
Grid itself is taking long time to load the data, why it is happening like that >Rama, > >IMO, 62 MS is not a significant enough difference in time to be worrying >about page loading > >Dave > >On Mon, Aug 10, 2009 at 7:07 AM, RamaDevi Dobbala wrote: > >> ~~

Re: cfgrid loading data

2009-08-10 Thread Dave Sueltenfuss
Rama, IMO, 62 MS is not a significant enough difference in time to be worrying about page loading Dave On Mon, Aug 10, 2009 at 7:07 AM, RamaDevi Dobbala wrote: > > Mozilla:Time=7110ms, Records=109 > IE:Time=7172ms, Records=109 > > >HI Rama, > > > >can you please provide more information? H

Re: cfgrid loading data

2009-08-10 Thread RamaDevi Dobbala
Mozilla:Time=7110ms, Records=109 IE:Time=7172ms, Records=109 >HI Rama, > >can you please provide more information? How many records are you tying to >load. What is the time difference? > >Dave > >On Fri, Aug 7, 2009 at 11:42 AM, RamaDevi Dobbala wrote: > >> ~

Re: cfgrid loading data

2009-08-07 Thread Dave Sueltenfuss
HI Rama, can you please provide more information? How many records are you tying to load. What is the time difference? Dave On Fri, Aug 7, 2009 at 11:42 AM, RamaDevi Dobbala wrote: > > hi , > > If i am using cfgrid in IE, while it is loading data it is taking more > time,how can i reduce that,

Re: cfgrid - data layout options vs some other method

2009-08-02 Thread Cutter (ColdFusion Related)
You can control the layout, by using custom column renderers, which you'll have to define after the fact. Here's a short post on creating your own custom column renderers: http://blog.cutterscrossing.com/index.cfm/2007/11/30/CF8-Ajax-Grid-Renderers-and-Events Les Mizzell wrote: > If using cfgr

Re: cfgrid

2009-07-17 Thread Cutter (ColdFusion)
He would be better off using a custom column renderer, as Scott suggested. This would allow him to set other columns (such as 'State') to hidden, but they would be available should he want to sort the grid on those other columns. Steve "Cutter" Blades Adobe Certified Professional Advanced Macr

Re: cfgrid

2009-07-17 Thread RamaDevi Dobbala
select *,Area_Mgr_RDO as Director,Area_Note as dire_Note, IsNull(address,'') +IsNull(address2,'') + IsNull(address3,'') + IsNull(city,'') + IsNull(state,'') + IsNull(zip,'') +IsNull(country,'') as office_address from sourcebook_1 i am writings like this, but still it is giving the error >

Re: cfgrid

2009-07-17 Thread Dave Sueltenfuss
You would want to wrap each column in the query in an IsNull(coulmnName,'') Dave On Fri, Jul 17, 2009 at 8:46 AM, RamaDevi Dobbala wrote: > > if i use like this, if any value is getting null value means all the value > is becoming null, how to avoid this > > > > > concatenate the 3 columns into

Re: cfgrid

2009-07-17 Thread RamaDevi Dobbala
if i use like this, if any value is getting null value means all the value is becoming null, how to avoid this > concatenate the 3 columns into one in your query. eg: > > SELECT address1 + ', ' + address2 + ', ' + address3 AS address > FROM sometable > > > > Azadi Saryev > Sabai-dee.com >

Re: cfgrid

2009-07-17 Thread Scott Stroz
You can also tap into the Ext Grid object and handle formatting the columns after the data has been loaded. Check out this link for a good start: http://blog.cutterscrossing.com/index.cfm/2007/11/30/CF8-Ajax-Grid-Renderers-and-Events On Fri, Jul 17, 2009 at 6:42 AM, RamaDevi Dobbala wrote: > > H

Re: cfgrid

2009-07-17 Thread Azadi Saryev
concatenate the 3 columns into one in your query. eg: SELECT address1 + ', ' + address2 + ', ' + address3 AS address FROM sometable Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ On 17/07/2009 17:42, RamaDevi Dobbala wrote: > Hi frnds, > > i need to pass address column to cfgrid colum

RE: CFGRID (Flash) I need a checkbox as input UPDATED

2009-03-02 Thread Scott Stewart
I've gotten the form side to work, however what it posts to the action page is a mess.. As follows: Form Fields: FIELDNAMES=SUBMIT,__CFGRID__NEWCONTENT__GRID_TABLES SUBMIT=Approve Articles __CFGRID__NEWCONTENT__GRID_TABLES=__CFGRID__EDIT__=5OD_Content_IDYOD_Cont ent_TitleYOD_Content_typeY

Re: CFGrid: Calling custom javascript on click.

2009-02-10 Thread Cutter (CFRelated)
Anthony, To do this kind of thing, you'll need to tap into the underlying Ext library used by cfgrid. I have a rough example of this sort of thing in the depths of this post: http://blog.cutterscrossing.com/index.cfm/2007/11/30/CF8-Ajax-Grid-Renderers-and-Events You can also find a log of inf

Re: cfgrid format="html" and copy

2009-01-30 Thread John Bliss
I suspect this post was a "victim" of the houseoffusion mail server issue so this is a semi-shameless "bump:" I'm using cfgrid with no onChange wired up (per client). However, client requires copy (Ctrl-C) from cells in grid. So I added so now end-user can double-click in a cell to get a cu

Re: CFGRID - using object in memory with bind attribute?

2009-01-08 Thread Doug Smidt
This isn't my argument - it's yours. I'm not going to get into another endless debate on best practices. Simply dropping my data into the query attribute doesn't solve my problem, as I need the same thing to happen in the onChange attribute. I'm not aware of a replacement for that, and what

Re: CFGRID - using object in memory with bind attribute?

2009-01-08 Thread Raymond Camden
On Wed, Jan 7, 2009 at 6:07 PM, Doug Smidt wrote: > I do want to use a persisted CFCbut I want to use it on the spot, in the > CFGRID tag. I don't want to: > > 1) Do exactly what you stated is generally recommended against. I don't want > to be accessing a shared scope directly in a CFC.

Re: CFGRID - using object in memory with bind attribute?

2009-01-07 Thread Doug Smidt
I do want to use a persisted CFCbut I want to use it on the spot, in the CFGRID tag. I don't want to: 1) Do exactly what you stated is generally recommended against. I don't want to be accessing a shared scope directly in a CFC. I've taught others not to do it, and I'm not going to do it

Re: CFGRID - using object in memory with bind attribute?

2009-01-07 Thread Raymond Camden
So I'm confused - are you saying the only reason you don't want to use a persisted CFC is what? Why isn't this CFC (myPeeps) cached in the app scope? You could then make another CFC, just for AJAX purposes, that works with this app scoped CFC. I know that - in general - folks recommend against

Re: CFGRID - using object in memory with bind attribute?

2009-01-07 Thread Doug Smidt
Sorry - I should have been more clear. I'm not necessarily referring to an object (variable) in a shared scope, though I want that to be an option. I also don't want to have to access a variable containing my CFC directly from a shared scope inside of another CFC. A very basic, quick exampl

Re: CFGRID - using object in memory with bind attribute?

2009-01-07 Thread Raymond Camden
Why not point to a CFC that uses the object in memory? Or am I misreading you? There is no need for the CFC you call to rerun cfquery. It can simply use an application (or session, whatever) cached query and perform QofQ on it for sorting. On Wed, Jan 7, 2009 at 3:02 PM, Doug Smidt wrote: > I re

Re: cfgrid - difficulty with IE

2008-12-29 Thread Dave Watts
> I'm at wits' end trying to make the cfgrid appear in IE6-7 - it works fine in > firefox, but client uses IE. I know I'm doing something stupidly wrong, but > what?? > > It chokes on the following line (when I view source): > > CF_RunContent(' classid=\'clsid:D27CDB6E-AE6D-11cf-96B8-44455354

Re: cfgrid with and auto size cfgridcolumn

2008-12-17 Thread Andrew Scott
If it follows the extJS guidelines, there are some serious known issues with grids. This will flow into Coldfusion as it still only uses extJS 1.1 and extJS is now 2.2+, I would suggest looking into the forums as it is not an easy solution to conquer across all browsers without using the latest ext

Re: cfgrid is slow

2008-11-25 Thread Cari Davies
> I am experimenting with binding a cfc to a HTML cfgrid tag in CF8. > > It is only returning 13 records and it takes like 10seconds for the > grid to display. > > The CFC is not complicated so I don't think it is the CFC that is slow. > I think it is the CFGrid tag that is slow. > > Anyway t

Re: cfgrid is slow

2008-11-25 Thread Cari Davies
> I am experimenting with binding a cfc to a HTML cfgrid tag in CF8. > > It is only returning 13 records and it takes like 10seconds for the > grid to display. > > The CFC is not complicated so I don't think it is the CFC that is slow. > I think it is the CFGrid tag that is slow. > > Anyway t

Re: CFGRID (html) column a href issue (CF8)

2008-09-25 Thread vishnu prasad
did find fix for this? > Hello All, > > I am using the new cf8 html cfgrid. My Grid column is as follows: > pageSize=5 sort=true> > href="ViewReport.cfm?status=new" hrefkey="REP_REPORT_ID" > target="_blank"> > > > on the rows that do not have data (example if the query returns only 1 > row.

Re: cfgrid bind component path not working

2008-09-06 Thread Azadi Saryev
Brad Wood wrote: > Nowhere in any of the docs have I found a statement > saying "Your CFC must be in the same directory as the calling page." > > ~Brad > > it does not have to be in the same dir, that's for sure. i just ran some quick tests and was able to bind a grid to a cfc no matter where

Re: cfgrid bind component path not working

2008-09-06 Thread Brad Wood
t;[EMAIL PROTECTED]> To: "CF-Talk" Sent: Sunday, September 07, 2008 12:08 AM Subject: Re: cfgrid bind component path not working > strange indeed... where is you calling page located in relation to the > path you specify to your cfc?

Re: cfgrid bind component path not working

2008-09-06 Thread Azadi Saryev
strange indeed... where is you calling page located in relation to the path you specify to your cfc? Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Brad Wood wrote: > Yeah, you do. It throws an error if you don't. > Here's the thing though-- the whole access of the function/CFC doesn't e

Re: cfgrid bind component path not working

2008-09-06 Thread Brad Wood
give it and creating JavaScript that attempts to find the CFC in the web root like so: /userDAO.cfc ~Brad - Original Message - From: "Azadi Saryev" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Saturday, September 06, 2008 11:57 PM Subject: Re: cfgrid bind component p

Re: cfgrid bind component path not working

2008-09-06 Thread Azadi Saryev
ories. > > ~Brad > > - Original Message - > From: "Azadi Saryev" <[EMAIL PROTECTED]> > To: "CF-Talk" > Sent: Saturday, September 06, 2008 11:49 PM > Subject: Re: cfgrid bind component path not working > > > ~~

Re: cfgrid bind component path not working

2008-09-06 Thread Brad Wood
They are not virtual directories. They are bona fide, honest-to-goodness directories. ~Brad - Original Message - From: "Azadi Saryev" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Saturday, September 06, 2008 11:49 PM Subject: Re: cfgrid bind component path not

Re: cfgrid bind component path not working

2008-09-06 Thread Azadi Saryev
is any of the directories in the path to your cfc a CF mapping or a virtual dir? i had trouble binding to components in a virtual dir path - had to move them to a dir physically under web root... and components in a cf mapped dir do not bind. Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/

Re: cfgrid bind component path not working

2008-09-06 Thread Brad Wood
An update: This does work if I use the following syntax: bind="url:/com/myapp/www/DAOs/userDAO.CFC?method=getAllUsers&etc... I never did figure out how to use the "cfc:" syntax since Ajax calls that CF created kept looking in the root folder for the CFC. I would still like someone to explain th

Re: Cfgrid Javascript function not working if not put inside tags

2008-08-21 Thread dev losh
Hey Great Joy it worked !! Thanks Charilie :) > > your javascript stuff here > > > >On Thu, Aug 21, 2008 at 1:53 PM, dev losh <[EMAIL PROTECTED]> wrote: > >> ~| Adobe® ColdFusion® 8 software 8 is the most important and dram

Re: Cfgrid Javascript function not working if not put inside tags

2008-08-21 Thread Charlie Griefer
your javascript stuff here On Thu, Aug 21, 2008 at 1:53 PM, dev losh <[EMAIL PROTECTED]> wrote: > I having an issue with ajaxOnLoad function to use with gfgrid. > > if i call a function say 'myfun' using for a > cfgrid, > the function will work ONLY IF PUT INSIDE tags. i need to > make

RE: Cfgrid Javascript function not working if not put inside tags

2008-08-21 Thread Dave Watts
> if i call a function say 'myfun' using ajaxOnLoad("myfun")> for a cfgrid, the function will work > ONLY IF PUT INSIDE tags. i need to make that js > dynamic.. please some one can help me with any tweaks that > will allow JS to be placed anywhere in the code ? I'm not sure what you mean by "

Re: cfgrid with Ajax question...

2008-08-02 Thread Tom Jones
Nevermind, I just figured it out, by adding (select="no") to the cfgridcolumn that did the trick. tom On Aug 2, 2008, at 5:21 PM, Tom Jones wrote: > Hello, > I have just started to play with Coldfusion 8 and I really like the > Ajax integration. I have been following some the guide info on how

Re: CFGRID & CFGRIDUPDATE - updating an array value before using CFGRIDUPDATE

2008-06-30 Thread Marty Rock
Did you ever get an answer to this? I need to do this also. Marty >I'm using Flash forms to write an email front and. The Address Book >portion of the app uses an updateable CFGRID element to add, edit, or >delete contacts. The table is pretty straightforward: > >recordid(int, pk) >ownerid(int,

Re: CFGRID Stylesheet

2008-06-19 Thread Cutter (CFRelated)
Yes, you write a custom stylesheet to override the class declarations used in the ext-all.css. Steve "Cutter" Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com Asim . wrote: > its html grid.. > > ~~

Re: CFGRID Stylesheet

2008-06-19 Thread Asim .
its html grid.. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://www.houseoffusion.com/groups/CF-Talk/m

Re: CFGRID / SQL - am I dreaming?

2008-05-15 Thread Claude Schneegans
>>I'd need someting like IF create_d between <3 months ago> and Then INSERT(title,0,0,'NEW') AS new_title Check if you can use the IIf function in your database, ie: SELECT IIF (create_d > <3 months ago>, 'NEW' , '') & title AS new_title, ... Or try to use a UNION: SELECT 'NEW' & title AS

Re: CFGRID / SQL - am I dreaming?

2008-05-15 Thread Developer MediaDoc
Hi Matts, I would suggest the following: This will work in cfgrid, you will get your results displayed in cfgrid with the HTML code to support a bolded, coloured "NEW". > Hi Everyone, > > I have a great ajax/cfgrid mockup working. Sorting, filtering

RE: CFGrid & 508

2008-05-14 Thread Sandra Clark
Its not. There are no wai-roles present which means that while it definitely isn't 508 compliant now because of the javascript and inability to use it without a mouse, that even with the 508 refresh that is coming up, it still isn't compatible. The only grid that I know that will be compatible wi

RE: cfgrid search facility

2008-04-24 Thread Jason Durham
I have used this within a flash form... http://www.asfusion.com/blog/entry/filtering-a-grid-as-you-type---using -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Thursday, April 24, 2008 1:40 PM To: CF-Talk Subject: cfgrid search facility Hi Can anyone tell me i

Re: cfgrid / cfgirdcolumn selectmode="edit" checkbox

2008-04-23 Thread Rob Parkhill
Good Evening, This is a problem that I had some time ago. I wanted to have a check all box to for the check boxes in the cfgrid, and I had to create a cfsavecontent to do that. IF you want that info, let me know. As for updating only the selected rows in a grid based on the check box, I use the

Re: cfgrid / cfgirdcolumn selectmode="edit" checkbox

2008-04-23 Thread shakti misra
i'm dealing with the same problem mate, ive got a cfgrid type java applet and select mode single, coz i use href attribute for some columns, but i can't then edit the checkboxes, they r not clickable. if i change the select mode to edit, the checkboxes work but the hrefkey then becomes the value

Re: cfgrid flash formating questions

2008-04-21 Thread Paul Ihrig
Q2: remove column, rowheaders="no" colheaders="yes" ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archive: http://ww

RE: cfgrid and text

2008-04-09 Thread Chad Gray
;left:0;} -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 09, 2008 12:29 PM To: CF-Talk Subject: RE: cfgrid and text Thanks Dan! Works great in firefox, but not IE. I will keep experimenting and see if I can get IE to do it. -Original

RE: cfgrid and text

2008-04-09 Thread Chad Gray
Thanks Dan! Works great in firefox, but not IE. I will keep experimenting and see if I can get IE to do it. -Original Message- From: Dan Vega [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 09, 2008 11:49 AM To: CF-Talk Subject: Re: cfgrid and text I actually just saw that someone

Re: cfgrid and text

2008-04-09 Thread Dan Vega
I actually just saw that someone came up with a hack to solve this. http://www.dwmommy.com/?day=4/5/2008&rss=true#blog623 Dan On Wed, Apr 9, 2008 at 10:02 AM, Chad Gray <[EMAIL PROTECTED]> wrote: > I am about ready to give up on CFGrid and switch back to a standard html > table. I just can't g

Re: cfgrid / cfgirdcolumn selectmode="edit" checkbox

2008-04-09 Thread LSD 4Me
Ok. so ive made some headway. Apparently, the functionality I was looking for was CFGRIDUPDATE. Now Im able to manipulate the values for the checked box to true or false in the table for each specific ID selected. My question now is there functionality to update session variables as opposed to t

Re: cfgrid / cfgirdcolumn selectmode="edit" checkbox

2008-04-09 Thread LSD 4Me
Im not using ExtJSim using flash cfgrids that automatically create the JS. Are there coldfusion methods to deal with my issue or is advanced JS the only way? I find it diffuclt to believe the CF doesnt offer any method of manipulating data from cfgrids. (Dont take that the wrong way...i do a

Re: cfgrid / cfgirdcolumn selectmode="edit" checkbox

2008-04-09 Thread Cutter (CFRelated)
If you read through the ExtJS 1.1 documentation you will see that you can apply a RowSelectionModel to a grid. I'm pretty sure you can use this to define single or multi selection, to which you can act upon the selected (DataStore) records, etc. Steve "Cutter" Blades Adobe Certified Profession

Re: cfgrid / cfgirdcolumn selectmode="edit" checkbox

2008-04-09 Thread LSD 4Me
I want to reiterate that Im not looking for a free snipet of code...I am merely looking for how to work with the data that is selected via checkbox in a cfgrid. How would i pass the selected information (probably based on the uniquie ID in the table) to another page or directly into the DB?

Re: cfgrid column types

2008-04-04 Thread Richard White
does anyone also know how to have a search facility on the cfgrid? thanks richard ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516

Re: cfgrid column types

2008-04-03 Thread Richard White
hi dan thanks for the reply can you send me a sample of the To create a checkbox just make sure the values are boolean values. I tested >it with 0/1 and it worked just fine. I am not sure about a multi select I >will have to look into that. > >Dan > >On Thu, Apr 3, 2008 at 2:44 PM, Richard White <

Re: cfgrid column types

2008-04-03 Thread Dan Vega
To create a checkbox just make sure the values are boolean values. I tested it with 0/1 and it worked just fine. I am not sure about a multi select I will have to look into that. Dan On Thu, Apr 3, 2008 at 2:44 PM, Richard White <[EMAIL PROTECTED]> wrote: > Hi Dan > > that is fantastic and so ea

Re: cfgrid column types

2008-04-03 Thread Richard White
Hi Dan that is fantastic and so easy :) we are very impressed, thanks very much do you have any ideas on how we could do the checkbox and a multi select combo box in the cfgrid too thanks very much again dan richard >Richard, >I wrote an article on using a combo box in the grid, hope this

  1   2   3   4   >