Ext JS 4 Plugin: Live-Search-Grid - How to modify my Grid definition

2012-01-22 Thread Tom Small
I am trying to replace my grid with 'Live-Search-Grid' plugin. Would appreciate some help! Thanks Tom ~| Order the Adobe Coldfusion Anthology now!

Re: Escaping #

2012-01-22 Thread Rob Voyle
Hi Claude Thanks I still have a problem The value comes from the form itself. The first time the form is read the values are set to default with: cfloop index = i from = 1 to = 50 cfparam name=namefirst#i# default= /cfloop In the form I use cfloop index = i from = 1 to = 50

Re: Ext JS 4 Plugin: Live-Search-Grid - How to modify my Grid definition

2012-01-22 Thread Andrew Scott
Tom this is a ColdFusion mailing list, and your questions on ExtJS are best suited over at sencha's website and forums. Now I personally don't mind answering your questions, but you need to consider that there isn't that many people here who can help you, as compared to the relevant places. So

Re: Ext JS 4 Plugin: Live-Search-Grid - How to modify my Grid definition

2012-01-22 Thread Tom Small
Ok Andrew thanks, and have posted the same question on extjs forum. Is it possible for me to send you a snippet of my code? Thanks Tom ~| Order the Adobe Coldfusion Anthology now!

Re: Escaping #

2012-01-22 Thread Captain Obvious
/* note: your cfparam needs form.namefirst not just namefirst */ cfoutput cfloop index = i from = 1 to = 50 cfparam name= form.namefirst#i# default= /cfloop cfloop index=i from=1 to=50 input type=text class=txt name=namefirst#i#

Re: Escaping #

2012-01-22 Thread Claude Schnéegans
/* note: your cfparam needs form.namefirst not just namefirst */ Furthermore, if they are text fields, you don't need to set default values. Only for checkboxes or radios ~| Order the Adobe Coldfusion Anthology now!

Re: Ext JS 4 Plugin: Live-Search-Grid - How to modify my Grid definition

2012-01-22 Thread Andrew Scott
Sure. On Mon, Jan 23, 2012 at 1:34 AM, Tom Small t...@re-base.net wrote: Ok Andrew thanks, and have posted the same question on extjs forum. Is it possible for me to send you a snippet of my code? Thanks Tom ~| Order

Re: (ot) SEO

2012-01-22 Thread Dave Hatz
Dave, Thanks for the feedback. Let me try to explain how the client site is currently set up. Client has a search results page on his site, like this http://www.mydomain.com/car_results.cfm?make=toyotamodel=tacoma where the Car Model and Type are passed in as parameters. The page uses CSS, JS

Re: (ot) SEO

2012-01-22 Thread Russ Michaels
why not just use URL rewriting to point http://www.mydomain.com/cars/toyota/tacoma at http://www.mydomain.com/car_results.cfm?make=toyotamodel=tacoma seems like this would be a much simpler solution On Sun, Jan 22, 2012 at 4:30 PM, Dave Hatz daveh...@hatzventures.orgwrote: Dave, Thanks for

Re: Ext JS 4 Plugin: Live-Search-Grid - How to modify my Grid definition

2012-01-22 Thread Tom Small
// configure whether filter query is encoded or not (initially) var encode = false; // configure whether filtering is performed locally or remotely (initially) var local = true; var filters = { ftype: 'filters', // encode and local

MySQL date problem

2012-01-22 Thread Dean Lawrence
I have an app that I have created using CF 9.01, MySQL 5.1.41 and ORM. One of the properties of my object is a start date. Everything inserts and updates to the MySQL database without a problem. This issue that I am having is when I try to perform any CF date functions on the stored date. If

Re: MySQL date problem

2012-01-22 Thread Dean Lawrence
Nevermind. Stupid mistake. I was looping over a number of records and it turns out that one of the records had a null value set which was what caused the error. Had nothing to do with MySQL dates at all. Ugh. I have an app that I have created using CF 9.01, MySQL 5.1.41 and ORM. One of the

Re: MySQL date problem

2012-01-22 Thread Russ Michaels
can you perform any date functions on it at all ? Try running it through CreateDate() or CreateODBCDate() first and see if that helps On Sun, Jan 22, 2012 at 8:48 PM, Dean Lawrence dean...@gmail.com wrote: I have an app that I have created using CF 9.01, MySQL 5.1.41 and ORM. One of the