Displaying page loading message

2014-03-24 Thread fun and learning
All, I have an issue with displaying a page loading message on a page with heavy database queries. My page has two frames, and I am trying to display loading message on the second frame. I am using cfflush to show the loading message but to no avail. The frame looks blank for 15 seconds and

cfquery multiple column search

2014-02-10 Thread fun and learning
All - I am working on a search functionality for multiple columns of data. I using 'OR' condition for searching on a single search input. For example on front end i have a search input box, and I can enter either numeric or alphabets or alphanumeric characters. How can I handle this using

Element undefined in SESSION scope

2013-08-06 Thread fun and learning
All - I am converting a form variable to a session variable.I enabled session management in application.cfm in cfapplication tag. The change works fine only on my system, but when others try it, they get 'Element undefined in SESSION'. What could be the possible reason? Thanks.

java.lang.IllegalArgumentException

2013-03-18 Thread fun and learning
We have hidden form variable whose value is set to #cgi.remote_address#. For testing security vulnerabilities, add on like hackbar is used to inject a different value for the hidden variable like below. Variable1=%u002e%u002e%u2215%u002e%u002e%variable2= When the form is run using the

Issue with Session scope

2013-03-15 Thread fun and learning
I am converting a hidden variable to session variable. I am setting a session variable when a page loads. The page consists of a form cfset session.host = cgi.remotehost When the form is submitted, the session variable is saved to a file. The form submits to the same page except there is a

question on cfloop

2013-02-28 Thread fun and learning
I have a query on looping in coldfusion.Why does the below loop run twice? cfloop from=1 to=1 index=j cfoutput#j#/cfoutput /cfloop I thought the above code should return only 1, but it returns 1 2 ~| Order the Adobe

question on cfloop

2013-02-28 Thread fun and learning
I have a query on looping in coldfusion.Why does the below loop run twice? cfloop from=1 to=1 index=j cfoutput#j#/cfoutput /cfloop I thought the above code should return only 1, but it returns 1 2 ~| Order the Adobe

Re: Coldfusion app response slow

2013-02-18 Thread fun and learning
Try to Check and fine tune your jvm settings. On Feb 5, 2013 11:06 PM, J.J. Merrick j...@panos.cc wrote: Would there be a performance hit if the server monitor is enabled for long periods of time? ~| Order the Adobe

Coldfusion log file setting

2013-02-07 Thread fun and learning
All - I have a question related to the Coldfusion directory structure I have the main folder which has all coldfusion files related to website. The folder name is appFolder. On the same server, there is another folder called appFolderCF that has folders like bin, cache, logs, Mail, registry

Coldfusion app response slow

2013-02-05 Thread fun and learning
All - Since couple of months, every couple of days one of the coldfusion app has slow response times. It gets fine once we recycle the coldfusion server. What are the possible ways to troubleshoot or identify the cause? Thanks.

Redirecting PDF documents

2012-12-20 Thread fun and learning
Just wondering if it possible to redirect a pdf document. In coldfusion, I am assuming no since we need to have some kind of redirect code on that particular page we want to redirect? ~| Order the Adobe Coldfusion Anthology

cfftp with SSL (Coldfusion 8)

2012-12-18 Thread fun and learning
All - Is it possible to use cfftp to connect to a secure ftp server over SSL? Thank you. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: cfftp with SSL (Coldfusion 8)

2012-12-18 Thread fun and learning
From memory, SFTP support was added to ColdFusion in version 8. So, yes. SSL FTP is available to you. nathan strutz [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Tue, Dec 18, 2012 at 11:35 AM, fun and learning funandlrnn...@gmail.comwrote: All - Is it possible to use

Re: cfftp with SSL (Coldfusion 8)

2012-12-18 Thread fun and learning
[www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz] On Tue, Dec 18, 2012 at 11:35 AM, fun and learning funandlrnn...@gmail.comwrote: All - Is it possible to use cfftp to connect to a secure ftp server over SSL? Thank you

Changes do not show up on live website

2012-12-14 Thread fun and learning
Hi All - We are using Coldfusion with farcry CMS. I made some changes and pushed them live, but changes do not seem to reflect on the site. We recycled the servers, and the change showed up, but after a page refresh it stopped showing up. Can anyone have any clues on why this could be

Re: Changes do not show up on live website

2012-12-14 Thread fun and learning
Try switching off save class files and getting rid of all the files in the cfclasses dir. They are more of a blight than a help in my experience. -- Adam On 14 December 2012 15:40, fun and learning funandlrnn...@gmail.com wrote: This option is already unchecked in Coldfusion admin

duplicate keys in rss xml feed

2012-12-05 Thread fun and learning
Hi All - I am parsing rss feed. The feed has custom data and custom data can have duplicate attributes. I am following the example at http://www.raymondcamden.com/index.cfm/2008/4/23/Ask-a-Jedi-Handling-RSS-feeds-with-custom-data. For example if the feed has following data, and the last

Re: parsing rss feed in Coldfusion

2012-12-05 Thread fun and learning
-Is-Not-Allowed-In-Prolog-ColdFusion-XML-And-The-Byte-Order-Mark-BOM-. htm Matt Sent from my iPhone On 4 Dec 2012, at 21:45, fun and learning funandlrnn...@gmail.com wrote: Hi All - I am trying to parse a wordpress feed in Coldfusion. Below is the code I have. cfhttp url

cfftp error 533

2012-12-05 Thread fun and learning
Hi All - I am trying to ftp files using cfftp coldfusion tag. It worked fine until this evening, and all of a sudden, the following error is being thrown An error occurred during the FTP putFile operation. Error: 553 Could not create file However, when I ftp the files using filezilla it

parsing rss feed in Coldfusion

2012-12-04 Thread fun and learning
Hi All - I am trying to parse a wordpress feed in Coldfusion. Below is the code I have. cfhttp url=http://test.com/feed/; result=objGet/cfhttp The result dump works fine cfdump var=#objGet# The problem is when parsing the XML. cfset xmlResult = XmlParse(objGet.FileContent) / I get this

parsing rss feed in Coldfusion

2012-12-04 Thread fun and learning
Hi All - I am trying to parse a wordpress feed in Coldfusion. Below is the code I have. cfhttp url=http://test.com/feed/; result=objGet/cfhttp The result dump works fine cfdump var=#objGet# The problem is when parsing the XML. cfset xmlResult = XmlParse(objGet.FileContent) / I get this

cflocation not working

2012-11-15 Thread fun and learning
Hi All - I am using the following code to redirect a page cfif cgi.http_host EQ abc.com cfif cgi.http_url EQ /test/folder1 cflocation statuscode=301 addtoken=false url=http://abc.com/test/folder2; /cfif /cfif The second if statement does not work. if I do the redirect just

cflocation not working

2012-11-15 Thread fun and learning
Hi All - I am using the following code to redirect a page cfif cgi.http_host EQ abc.com cfif cgi.http_url EQ /test/folder1 cflocation statuscode=301 addtoken=false url=http://abc.com/test/folder2; /cfif /cfif The second if statement does not work. if I do the redirect just

Issue with scheduled task

2012-11-07 Thread fun and learning
All - I have a scheduled a task to run weekly. When it did not run (it should send an email when it finished running), I tried running it by going to scheduled tasks page in cf admin and clicking on 'Run Scheduled task'. AFter a min or so, it throws the following error There was an error

alias URL not recognizing relative paths

2012-10-29 Thread fun and learning
Hi All - I have an issue with the following scenario. I have a website www.abc.com. For the path www.abc.com/test, an alias is defined as test.com which points to www.abc.com/test. The new alias test.com is not recognizing the relative paths defined in www.abc.com/test. I am using IIS

Re: alias URL not recognizing relative paths

2012-10-29 Thread fun and learning
I have a website www.abc.com. For the path www.abc.com/test, an alias is defined as test.com which points to www.abc.com/test. The new alias test.com is not recognizing the relative paths defined in www.abc. com/test. I am using IIS server. Do I need to update any other settings in

Re: alias URL not recognizing relative paths

2012-10-29 Thread fun and learning
I have a website www.abc.com. For the path www.abc.com/test, an alias is defined as test.com which points to www.abc.com/test. The new alias test.com is not recognizing the relative paths defined in www.abc. com/test. I am using IIS server. Do I need to update any other settings in

converting EST to CST

2012-10-10 Thread fun and learning
Hi ALl - Here is the scenario I am working on. We have certain data that should not be displayed until a certain date and time. For example, in database we save this date and time and on web page we check if the data has passed that date and time. All the data is assumed to be saved in CST

Re: converting EST to CST

2012-10-10 Thread fun and learning
Have you looked at the date functions? Like, say, dateAdd()? On Wed, Oct 10, 2012 at 4:34 PM, fun and learning funandlrnn...@gmail.comwrote: Yes, I did see that after posting the message. I think this would do it DateAdd(h, -1, #Now()#) Thanks

Resolving security vulnerability

2012-10-04 Thread fun and learning
Hi All, I am using input hidden fields for some CGI variables. The security scan has issued 'information leakage' threat. These variables are defined in a file and the file is included in various places. What is the best way to resolve this vulnerability? Thanks

Re: Resolving security vulnerability

2012-10-04 Thread fun and learning
what information is passed around in the hidden fields, is it anything that could be used to hijack sessions, get into users accounts or personal details etc ? On Thu, Oct 4, 2012 at 3:11 PM, Rob Voyle robvo...@voyle.com wrote: It is remotehost,remoteaddress

calling coldfusion page from SSIS package

2012-09-18 Thread fun and learning
Hi All - I have the following scenario 1) Coldfusion page is run as a scheduled job 2) After the above script is run, a SSIS package is run. I want to make sure that the Coldfusion job is successful before running the SSIS package. Is there a way to call the coldfusion job from SSIS package

Re: calling coldfusion page from SSIS package

2012-09-18 Thread fun and learning
If it is the CF job that executes the SSIS package, surely the very fact that it running is proof that the cf job executed. On Tue, Sep 18, 2012 at 4:35 PM, fun and learning funandlrnn...@gmail.comwrote: No it is not the cf job that executes the SSIS job. They are run independent of each

question on cfhtmlhead

2012-08-21 Thread fun and learning
Hi - I want to exclude one of the page from search engine crawling. I am using the following tag meta name=robots content=noindex,nofollow Also I am inserting the above tag through cfhtmlhead. My question is if search engine would recognize this meta tag that is inserted into head later in

Re: question on cfhtmlhead

2012-08-21 Thread fun and learning
They will. Before search engine sees your pages, CF processes the cfhtmlhead and inserts the meta tag into the head of the page. Same as with an end-user. On Tue, Aug 21, 2012 at 3:09 PM, fun and learning funandlrnn...@gmail.comwrote: Thanks a lot. all your answers are really helpful

cfcalendar does not work in chrome

2012-08-20 Thread fun and learning
Hi All - I am using cf 9 version and cfcalendar. This does not seem to be working only on chrome. The date value is not getting passed to the next page. I get the following error in chrome console Uncaught ReferenceError: updateHiddenValue is not defined And in network tab of chrome, the

The requested URL not found

2012-07-24 Thread fun and learning
Hi All, We have youtube video with a link to our website embedded on it. The URL has query string as below: www.abc.com/?visitfrom=youtube The above URL is causing an error as The requested URL /?visitfrom=youtube not found on this server. Could this be happening due to / before the start

cfhttp issue

2012-05-24 Thread fun and learning
Issue with cfhttp I am using cfhttp get to request an xml file that resides on the same server. It was working fine until yesterday, but it throws the following error now I keep getting that the user trying to access the page has ben logged in successfully but the user does not have

Re: cfhttp issue

2012-05-24 Thread fun and learning
Issue with cfhttp I am using cfhttp get to request an xml file that resides on the same server. It was working fine until yesterday, but it throws the following error now I keep getting that the user trying to access the page has ben logged in successfully but the user does not have

Re: cfhttp issue

2012-05-24 Thread fun and learning
Issue with cfhttp JUST for the information, I am able to access the xml file directly in the browser Never mind it was some anonymous user authentication issue. got it working now ~| Order the Adobe Coldfusion Anthology

query of query strange error

2012-05-22 Thread fun and learning
Hi All- I am facing a strange error with query of query as follows: I am first constructing a query using 'QueryNew' as Cfset newQuery = QueryNew(id, status, label, name) the status column is a numeric column in database with values of 1,2,3,4,5,6 and NULL When I do a query of query as

apache for both coldfusion and php at same time

2012-05-12 Thread fun and learning
Hi All, On local development at home, I use coldfusion built in Jrun. I am trying to install farcry and learn on friendly urls, so thought it is good idea to install coldfusion with apache. I already using WAMP on local machine for learning wordpress. Is it possible to use apache

FarCry CMS question

2012-05-09 Thread fun and learning
I hope someone with knowledge of farcry CMS sees this question I am new to farcry and looking at some existing code. I have a question on friendly URL. At what time of the application do the actual URL gets parsed to friendly URL. Suppose I have a href link as a

Re: FarCry CMS question

2012-05-09 Thread fun and learning
. Everything friendly should filter through the go.cfm file in your root. Look in farcry's wiki, there are rules for how to set up the parsing of friendly urls for apache and ISAPI. Hope that gets you going in the right direction. -Jake On Wed, May 9, 2012 at 12:30 PM, fun and learning funandlrnn

Coldfusion MS acess question

2012-04-19 Thread fun and learning
Hi All - I am have a strange problem with a query which works directly on MS Access but fails when used inline in Coldfusion. I am using SELECT datepart(q, datecolumn), column1, column2 FROM table When I remove the datepart in coldfusion, it works fine.

Re: Coldfusion MS acess question

2012-04-19 Thread fun and learning
datepart(q, datecolumn), column1, column2 It might be that the query has no name for the datepart column. Try datepart(q, datecolumn) AS quarter, column1, column2 The error says Too few parameters. Expected 1. I did use an alias for the column, but it does not help

Re: Coldfusion MS acess question

2012-04-19 Thread fun and learning
Too few parameters. Expected 1 This is supposed to mean that one of le column names is not found in the table. Why don't you post the whole query here? ~| Order the Adobe Coldfusion Anthology now!

Re: Coldfusion MS acess question

2012-04-19 Thread fun and learning
Too few parameters. Expected 1 This is supposed to mean that one of le column names is not found in the table. Why don't you post the whole query here? The query works fine in MS Access, but creating problems in ColdFusion. Instead I have decided to use ColdFusion quarter function to achieve

Coldfusion 9 certification

2012-03-28 Thread fun and learning
Hi All - Having worked with Coldfusion for the past three years, I am planning to get a Coldfusion certification. Since Coldfusion 9 is the latest stable version,I am planning to get certified in it (My main aim in getting certified is I may get to learn stuff I have never used, and to go in

Opening a word document saved on a server

2012-01-16 Thread fun and learning
Hi All - I have used cfcontent to write some data to excel docs. I am trying to do the following - I have a drop down, and when one of the value is selected, I need to open a word document that is saved on the server. opendoc.cfm cfset dir =

Re: Opening a word document saved on a server

2012-01-16 Thread fun and learning
What do you mean fails? On Mon, Jan 16, 2012 at 14:58, fun and learning funandlrnn...@gmail.comwrote: It does not work. It does not throw any error. It tries to open a tab and immediately closes it. ~| Order the Adobe

Troubleshooting slow web service calls

2012-01-10 Thread fun and learning
I have a web service created in coldfusion, and consumed from a coldfusion page. The problem is that the web service call is very fast in development environment, where as its very very slow in production environment. What is the best way to go about troubleshooting what is causing the problem?

cfstored proc question

2011-12-05 Thread fun and learning
Hi All - In our coldfusion code, there is a cfstoredproc block in which some parameters are being passed in. Couple of paramaters are of out type. cfstoredproc procedure=proc_save datasource=#Application.DSN# cfprocparam type=In cfsqltype=CF_SQL_VARCHAR

Re: cfstored proc question

2011-12-05 Thread fun and learning
Never mind. I understood my problem. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Question on scopes

2011-09-18 Thread fun and learning
Hi All- I have a question on variable scopes. I have the following scenario. Suppose I have a dropdown as below with some tax years: form name=frm method=post action=results.cfm select name=dd_year option value=20002000/option option value=20012001/option option

Re: Question on scopes

2011-09-18 Thread fun and learning
Or you can just do cfset session.dd_year = form.dd_year I swear.. Sometimes, people make things more convoluted then they have to. :) On Sun, Sep 18, 2011 at 11:18 AM, Steve 'Cutter' Blades cold.fus...@cutterscrossing.com wrote: Can we use Request scope in this type of situations?

coldfusion spreadsheet leading zeroes issue

2011-08-16 Thread fun and learning
Hi All - I am facing an issue with coldfusion9 spreadsheet functions. It cuts of leading zeroes. This is what I am trying. I am getting array of data and using spreadsheetaddrows. When I am constructing an array, am using quotes so as to preserve the zeroes but with no effect. Adding some

excel sheets poiutility.cfc

2011-08-16 Thread fun and learning
Hi All - This is a third version of generating to excel options that I am trying. I was going through the examples. If I am using apache poi, should I always write to excel, then read it and display it to the user? Is it possible to just read it directly from the query and display it to the

quick excel question

2011-08-11 Thread fun and learning
Hi All - I am trying to generate excel using xml. I have a scenario where only 7 columns will be static and other columns are dynamic and may range from 1 to as many as 300 columns. And number of rows would be around 1000. What is the best approach for this situation. I tried new cf9

Using excel NumberFormat in coldfusion

2011-08-09 Thread fun and learning
Hi All - As suggested by a couple of coldfusion developers a weeks ago, I am using xml to generate excel sheets from coldfusion. I am stuck with the following issue. Style ss:ID=s71 Borders Border ss:Position=Bottom ss:LineStyle=Continuous ss:Weight=1 ss:Color=#00/ Border

cf9 multiple sheet excel

2011-08-01 Thread fun and learning
Hi All - I am trying to generate a multiple tabs excel sheet. I have the following code. The excel code is copied from coldfusionjedi.com cfset q = queryNew(Name,Beers,Vegetables,Fruits,Meats, cf_sql_varchar,cf_sql_integer,cf_sql_integer,cf_sql_integer,cf_sql_integer) cfloop index=x

cfspreadsheet question

2011-07-29 Thread fun and learning
Hi All - In coldfusion 8, we use cfcontent and html to display data in excel, and a save dialog box would be shown. In coldfusion 9, is it possible to show save dialog box when using cfspreadsheet? ~| Order the Adobe

IIS Question

2011-04-23 Thread fun and learning
Hi All - I have a IIS/coldfusion question. I am working with a client, who has both production and development stuff on the same machine. He has two drives, C and E. C drive has development files and E drive has production. The IIS configuration points to E drive. C drive the has the

IIS Question

2011-04-23 Thread fun and learning
Hi All - I have a IIS/coldfusion question. I am working with a client, who has both production and development stuff on the same machine. He has two drives, C and E. C drive has development files and E drive has production. The IIS configuration points to E drive. C drive the has the

What does this URL mean?

2011-04-09 Thread fun and learning
http://localhost/students/index.cfm/register?action=studentreg I did not understand the use of 'register' after index.cfm. Can anyone please help me understand what it could mean? There is a index.cfm file in students folder. Could register be a folder name?

Javascript question

2011-03-13 Thread fun and learning
Hi All - I am trying to get the following working. It seemed to work initially, but somehow it stopped working I have a row like below tr id=row_1_4_2009_abc class=rowclick td/td /tr I am using jquery to get the id on click of a row: $(.rowclick).click(function() { var row_id =

Javascript question

2011-03-13 Thread fun and learning
Hi All - I am trying to get the following working. It seemed to work initially, but somehow it stopped working I have a row like below tr id=row_1_4_2009_abc class=rowclick td/td /tr I am using jquery to get the id on click of a row: $(.rowclick).click(function() { var row_id =

Jquery ajax and CFC ioutside webroot

2011-03-12 Thread fun and learning
Hi All - Can I use jquery ajax to call a cfc that is located outside the webroot? I tried it but I think it is trying to look for the cfc within web root. How can I get it to point to a cfc outside the webroot? Thanks ~|

Re: Jquery ajax and CFC ioutside webroot

2011-03-12 Thread fun and learning
Hello, in your jquery ajax call, just give the full http address of your cfc, like so : $.ajax({ url: 'http://www.yoursite.com/cfc/yourCFC. cfc?yourmethodyourargumentsIfAny', type: POST, dataType:json}); Cheers Hi All - Can I use jquery ajax to call a cfc that is located

cfdocument and javascript

2011-03-06 Thread fun and learning
Hi All, I am using cfdocument with format = pdf. I am displaying some dynamic data. I need to have an expand/collapse functionality within the pdf. Is it possible to implement the same using javascript in cfdocument? Thanks

Multiline - Dynamic Tabs

2011-02-23 Thread fun and learning
Hi All, I am creating dynamic tabs using Coldfusion, HTML(ul and li). I was just wondering if its possible to make them like windows styled tabs, that is if a tab in first line is selected, I want to push it to the second line. The problem I have is I am creating dynamic tabs. Is it possible

Re: Multiline - Dynamic Tabs

2011-02-23 Thread fun and learning
Hi All, I am creating dynamic tabs using Coldfusion, HTML(ul and li). I was just wondering if its possible to make them like windows styled tabs, that is if a tab in first line is selected, I want to push it to the second line. The problem I have is I am creating dynamic tabs. Is it

HTML to excel format

2011-02-09 Thread fun and learning
Hi All - I have been using cfcontent to generate excel files in coldfusion. The problem is I need to write two different sets of HTMl code because the cfcontent does not recognize .css files. So for cfcontent part I am using inline style for each row and column. There are lot of reports I

Re: HTML to excel format

2011-02-09 Thread fun and learning
I doubt cfcontent is the issue. How are you including the css? Get your own web address. Have a HUGE year through Yahoo! Small Business. http://smallbusiness.yahoo.com/domains/?p=BESTDEAL I am using it in

Re: Coldfusion webroot and multiple domain names

2011-01-26 Thread fun and learning
The client said that using one IP address, several domain names can be used- multiple sites using host header names. I am not sure what that means It means that you'll probably have to create virtual directories for both sites, as several people have mentioned. Dave Watts, CTO, Fig

Re: Coldfusion webroot and multiple domain names

2011-01-25 Thread fun and learning
You'll want to create an alias to the images folder between sites. What web server are you using? Sent from my HTC on the Now Network from Sprint! - Reply message - From: fun and learning funandlrnn...@gmail.com Date: Mon, Jan 24, 2011 20:02 Subject: Coldfusion webroot

Coldfusion webroot and multiple domain names

2011-01-24 Thread fun and learning
Hi All - I am new to this multiple domain thing. Am working on a project, where there multiple domain projects under on webroot. Like www.abc.com, www.def.com under one root. The folder structure is something like below: E: webroot --INCLUDES --IMAGES --image.gif --

relative path for images

2011-01-21 Thread fun and learning
Hi All - I have a strange situation with relative paths. When I use a relative path in cfinclude it works. But when I use a relative path is src attribute of img, it does not work. Can anyone suggest why could this be happening? Thanks

debugging information and scrollbar

2011-01-20 Thread fun and learning
Hi All - I am getting a vertical scrollbar even when the contents fit properly on the screen. I am using jqgrid, and using cfsetting showdebugoutput=no on all pages. The scrollbar does not make any sense as there is no content to scroll. Is there a way to remove this, or any pointers on why

CGI.querystring

2011-01-09 Thread fun and learning
Hi All - I have the following piece of code. form name=langchooser action= select name=language size=1 onChange=javascript:if(this.form.language.options[this.form.language.selectedIndex].value!='null'){location.href=this.form.language.options[this.form.language.selectedIndex].value}

Re: CGI.querystring

2011-01-09 Thread fun and learning
Russ, I think you really meant cfset QS = ListAppend(QS, key '=' url[key], ) Azadi On 10/01/2011 07:00 , Russ Michaels wrote: cfset QS = ListAppend(QS,key,) Thanks Russ, Azadi, That worked. ~| Order the Adobe Coldfusion

Coldfusion Array/List questions

2011-01-06 Thread fun and learning
Hi All- I am trying to build a list with following values: cfset list = {name:'col1', index:'col1', sorttype:'string'},{name:'col2', index:'col2', sorttype:'string'},{name:'col3', index:'col3', sorttype:'string'} So the above list has 3 values with each value enclosed within the brackets.

Re: Coldfusion Array/List questions

2011-01-06 Thread fun and learning
So the above list has 3 values with each value enclosed within the brackets. ColdFusion doesn't know that and is seeing ALL of the commas as list delimiters. You'll need to change the delimiter to something else and then break it apart: cfset list = {x,x,x},{x,x,x},{x,x,x} / cfset list =

Grid Suggestion

2011-01-05 Thread fun and learning
Hi All- Currently i have a grid with around 25 to 30 columns. a)The first 5 columns are frozen columns. The data for these columns are text values or simple numbers b) The values for other 25 columns are images. c) Also implementing highlight row functionality on hover and on click of the

Re: Grid Suggestion

2011-01-05 Thread fun and learning
Not sure about column freezing but I'd take a look at SlickGrid: https://github.com/mleibman/SlickGrid/wiki On Wed, Jan 5, 2011 at 10:05 AM, fun and learning funandlrnn...@gmail.comwrote: Hi Michael, Thanks for the suggestion. is there an example of using slickgrid with coldfusion

display html in coldfusion

2010-12-30 Thread fun and learning
Hi All- I have a database column whose values are anchor tags: a href=http://www.website.com; target=_blank When I query the table and try to display the column, the value would not display. What could be the reason? Thanks

question for jquery experts here

2010-12-17 Thread fun and learning
hi All - I am using the following jquery script to hover and click on table rows: $(.simplehighlight).click(function() { $(this).children().addClass('clicked'); $(this).siblings().children().removeClass('clicked'); }); $(.simplehighlight).hover(function() {

coldfusion json truncates leading zeroes

2010-12-13 Thread fun and learning
Hi All - I am using jquery jqgrid with Coldfusion. I have a cfc whose return format is JSON. I have a database column of type varchar, but it returns values which starts with zeroes. On displaying data, the leading zeroes are truncated. I verified in firebug, the JSON response itself is

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

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}).

cfselect and autosuggest

2010-11-17 Thread fun and learning
Is there a way to implement autosuggest within cfselect using coldfusion without using javascript or javascript libraries? ~| Order the Adobe Coldfusion Anthology now!

Coldfusion and Jquery UI Dialog

2010-11-13 Thread fun and learning
HI All - I am trying to create a login popup form using Jquery UI Dialog plugin and coldfusion. I am not able to understand how to authenticate the user on the popup. Whenever I say login, the form is submitted with form variables appended to the url. Can anyone let me know the flow that has

converting excel to text file

2010-11-09 Thread fun and learning
HI All - I am uploading an excel file using coldfusion. Once the file has been uploaded, I want to convert it to a text file. What I am trying to do now is once the file is uploaded, I am reading the excel file and then writing the output to text file. but the write method creates all junk

dropdown question

2010-11-08 Thread fun and learning
Hello All - I have a dropwown with multiple option. When the user selects a value, goes to some other screen, and comes back he will be able to see the value selected. This is all fine. But if the user selects some last value in the dropdwon, he has to scroll down to see what has been

Re: dropdown question

2010-11-08 Thread fun and learning
you just need to set the selected item as selected in the dropdown select name=acme option value=abc selectedtext/option /select when the user submit the form, just store the seelected value in a session variable and use this to set the SELECTED attribute. e.g. select name=acme option

MS Access Coldfusion

2010-10-31 Thread fun and learning
Hi All - I am trying to make a query to work in Coldfusion. The query works in MS Access though. I have a column called 'language' in the database table. When I try to refer the column in Coldfusion, I get an error like value '' is invalid. Query is something like select * from table where

Re: MS Access Coldfusion

2010-10-31 Thread fun and learning
When using reserved word you can put them in [square brackets] and it should still work. So select * from [table] -- Russ Michaels http://www.bluethunderinternet.com: B2B hosting, VPS's, Exchange, CF, Railo www.cfmldeveloper.com : CFML community, FREE ColdFusion/Railo hosting

href mailto

2010-10-27 Thread fun and learning
Hi All - I am trying to use mailto functionality with email addresses populated from database and separated by semicolons.. a href=mailto:cfoutput query=email#email#;/cfoutput the funcionaility works sometimes and it does not. I hardcoded around 85 emails and seen that it does not open the

generating eticket

2010-10-21 Thread fun and learning
Hi All - I was just curious if this can be done using coldfusion. Can we generate an e-ticket in Coldfusion. Suppose a user books a movie ticket or a bus ticket, can we send an email with eticket embedded in it ~| Order the

  1   2   >