[cfaussie] Query Structure

2007-07-11 Thread KNOTT, Brian
I'm having a slow mind afternoon How do I look at a particular record in a query using structure notation. E.g. results[5].field Brian Knott MIS Specialist Pricing and MIS CFO Banking Level 8 Suncorp Centre 36 Wickham Tce, Brisbane Q 4000 ext 61984 ph 07 3836 1984 fax 07 3835 5455 --

[cfaussie] Re: Query Structure

2007-07-11 Thread KNOTT, Brian
[5] Blair On 7/12/07, KNOTT, Brian <[EMAIL PROTECTED]> wrote: I'm having a slow mind afternoon How do I look at a particular record in a query using structure notation. E.g. results[5].field Brian Knott MIS Specialist Pricing and MIS

[cfaussie] OT SQL Server Enterprise Manager

2007-07-23 Thread KNOTT, Brian
Got a weird problem. If I try to open a file through SQL server enterprise manager the file list is never in order, I must be ordered by date or something. I can right click and do an arrange by name and that reorders it but I have to do this for every directory I go into. Once I close the box

[cfaussie] Re: Where are the CF7 downloads?

2008-02-13 Thread KNOTT, Brian
Stephen, This page has the developers edition.. http://www.adobe.com/support/coldfusion/downloads.html Brian Knott -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stephen M Sent: Thursday, 14 February 2008 9:15 AM To: cfaussie Subject: [

[cfaussie] Re: CF702 - cfquery caching

2008-04-07 Thread KNOTT, Brian
Just create 2 separate queries with cfif tags around them. It means you will have 2 separate queries but its easier to understand. e.g.

[cfaussie] Re: OT - Remove .Net Framework

2008-04-28 Thread KNOTT, Brian
I think SQL Sever and tools use the .net framework Thanks Brian Knott -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kay Smoljak Sent: Tuesday, 29 April 2008 12:08 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: OT - Remove .Net Frame

[cfaussie] Multiply Queries

2008-06-24 Thread KNOTT, Brian
Can a cfstoredproc return multiply queries. I have a stored proc that returns 2 or 3 queries. When I use cfstoredproc it only returns the first query. Is there any way to return all queries or do I have to break the stored procedure in to separate stored procs that only return 1 query each.

[cfaussie] RE: Multiply Queries

2008-06-24 Thread KNOTT, Brian
Its OK I worked it out Brian Knott ext 61984 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of KNOTT, Brian Sent: Wednesday, 25 June 2008 8:47 AM To: cfaussie@googlegroups.com

[cfaussie] Dynamic Query

2008-08-19 Thread KNOTT, Brian
I have a stored proc that returns a query. Problem is I don't know what columns are retutned. I can use qryReport.getColumnList() to get me a list of columns that are returned. I can display these in a table with the following code

[cfaussie] Passing HTML Code

2008-08-20 Thread KNOTT, Brian
I want to create an email cfc so I just pass the arguments that I require through and it sends an email. Only issue I have is passing HTML code. How do I set a variable to equal a block of code. e.g. Order number #url.id# is in FX4YOU system and needs to be processed. Email sent #timeformat

[cfaussie] Re: Passing HTML Code

2008-08-21 Thread KNOTT, Brian
u, Aug 21, 2008 at 2:56 AM, KNOTT, Brian <[EMAIL PROTECTED]<mailto:[EMAIL PROTECTED]>> wrote: I want to create an email cfc so I just pass the arguments that I require through and it sends an email. Only issue I have is passing HTML code. How do I set a variable to equal a block of co

[cfaussie] Mapping Software

2008-10-08 Thread KNOTT, Brian
Anyone got some mapping software that would allow me to create a map of Australia with data based on a postcode. i.e. average property value in 4000 is $xxx, in 4039 is $yyy. Thanks Brian Knott MIS Specialist | Pricing and MIS CFO Banking | CFO Retail Banking ext 61984 ph 07 3836 1984 fax 07 3

[cfaussie] Dreamweaver and templates

2008-10-29 Thread KNOTT, Brian
Ok this is any easy question and I figure its quicker to post it here than to look it up. I have created a template in DW CS3, all lovely. Problem is when I create a file from the template in a directory below the first file, all the link are broken. So all the images are in a folder called i

[cfaussie] Re: Dreamweaver and templates

2008-10-29 Thread KNOTT, Brian
Thanks guys I will have a better look at it. Brian Knott ext 61984 -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Kear Sent: Thursday, 30 October 2008 1:05 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Dreamweaver and templates

[cfaussie] Working with PDF's

2008-12-16 Thread KNOTT, Brian
OK people I have not really used the PDF features in CF8 so I have a couple of questions. I have a PDF document that I want to insert data into , i.e.name etc. Can I insert place holders into the PDF and have CF8 replace these with data. Or is there a better way to add data to an existing PDF

[cfaussie] Re: Working with PDF's

2008-12-16 Thread KNOTT, Brian
It's a static form that I just want to insert some values into. Brian Knott ext 61984 From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Kai Koenig Sent: Wednesday, 17 December 2008 10:49 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Working with PDF's A

[cfaussie] OT : Flex

2009-05-10 Thread KNOTT, Brian
Guys getting into more flex applications at the moment. I thought there was a similar group for flex programmers on google groups.Does anyone know what this group is called or other good flex groups for beginners. Brian Knott This e-mail is sent by Suncorp-

[cfaussie] XML Import Issue

2009-07-21 Thread KNOTT, Brian
Hi guys. Got an XML import issue. I am trying to import an XML file but I'm having issues with some nodes not being defined in the XML. For example the node 'duration' may not be define for every record in the XML file. So I need to check to see if the node exists before I reference it, if i

[cfaussie] Re: XML Import Issue

2009-07-21 Thread KNOTT, Brian
: [cfaussie] Re: XML Import Issue Just regular old structKeyExists should do it for you. if( StructKeyExists(xmlfile.body.GetListItemsResponse.GetListItemsResult.listitems.data.row[a].XmlAttributes, "ws_Buildlevel") ) { doSomething(); } On Tue, Jul 21, 2009 at 6:32 PM, KNOTT, Brian mailt

[cfaussie] Inserting Queries

2009-07-21 Thread KNOTT, Brian
Guys having a slow brain day. I have a query that I have created from code using the QueryNew command. I now want to insert this into a database, something like INSERT INTO databaseTable SELECT Title, title as Modelname, ModelPath, ModelEmailString, CubePublishPath, PPESPublishPath, ModelUserS

[cfaussie] Re: Inserting Queries

2009-07-21 Thread KNOTT, Brian
" (in-memory query) and put it into the "db layer" (inserts into db tables) just a thought barry.b On Wed, Jul 22, 2009 at 10:21 AM, KNOTT, Brian wrote: > Guys having a slow brain day. > > I have a query that I have created from code using the QueryNew command. &g

[cfaussie] Stripping out characters

2009-08-17 Thread KNOTT, Brian
Guys what's the easiest way to strip the names out of the following string. I was thinking of just removing the names between the #'s and then working with the last #. 2879;#Brian Knott;#2549;#Mr Happy Thanks Brian Knott Software Engineer (COGNOS Developer) | MIS Front End | Banking & Life MI

[cfaussie] Re: Stripping out characters

2009-08-17 Thread KNOTT, Brian
you want "Brian Knott Mr Happy" As a string, or as two strings? Regards Dale Fraser http://dale.fraser.id.au http://learncf.com http://flexcf.com From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of KNOTT, Brian Sent: Tuesday, 18 August 2009 1:52 PM To:

[cfaussie] Re: Stripping out characters

2009-08-17 Thread KNOTT, Brian
ott' change, or is it always after the first ;# ? Easiest way in my mind - delim = ";#"; split = line.split(delim); newline = split[1] & delim & split[3] & delim & split[4] But it kinda depends what you are doing. Mark On Tue, Aug 18, 2009 at 1:51 PM, KNOTT, Br

[cfaussie] Re: Coldfusion 9 trial hosting accounts

2009-08-27 Thread KNOTT, Brian
Thanks Steve. Just signed up but the site gives a SMTP error. No SMTP server specified for the cfmail tag. To send SMTP mail messages, you must specify a default SMTP server. You can set the default SMTP server using the Mail page of the ColdFusion Administrator. Alternatively, you can ensur

[cfaussie] Re: Coldfusion 9 trial hosting accounts

2009-08-27 Thread KNOTT, Brian
stalled the update the other night. Go for it now From: KNOTT, Brian [mailto:brian.kn...@suncorp.com.au] Sent: Friday, 28 August 2009 1:13 PM To: 'cfaussie@googlegroups.com' Subject: [cfaussie] Re: Coldfusion 9 trial hosting accounts Thanks Steve. Just

[cfaussie] Masking a URL

2009-10-20 Thread KNOTT, Brian
Is there a way to mask a URL. My problem is that when IE prints a page it also prints the URL. The customer is happy to see a URL but not the actual page URL. They want to see a dummy URL. It can be the same domain, just needs to be a direct page. So from http://www.cf.com/reports/securityl

[cfaussie] Re: Masking a URL

2009-10-21 Thread KNOTT, Brian
and have a hidden form submit to an empty windowor an iframe and have that window call the print() function From: KNOTT, Brian [mailto:brian.kn...@suncorp.com.au] Sent: Wednesday, 21 October 2009 5:11 PM To: 'cfaussie@googlegroups.com' Subject:

[cfaussie] Trusted Connection

2006-02-19 Thread KNOTT, Brian
CF 4.5 had a trusted connection in the ODBC setup where you could connect to a SQL database with out using a username and password.  This does not appear in MX.  How do I get a trusted connection to work.  Is it basically a matter of starting the CF service as a windows user and not specify

[cfaussie] Images in email

2006-02-19 Thread KNOTT, Brian
Has any one got a good example of using cfmailparam to include a image in a mail message.   Brian Knott --- This e-mail is sent by Suncorp-Metway Limited ABN 66 010 831 722 or one of its related entities

[cfaussie] Re: Images in email

2006-02-19 Thread KNOTT, Brian
"   contentID="image1">   There should be an image here      This text follows the picture     Best regards,   Dmitry Yakhnov Web Developer http://www.yakhnov.info/ From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of KNOTT, Brian Sen

[cfaussie] Re: ColdFusion Performance Book

2006-03-20 Thread KNOTT, Brian
Thanks Grant. Any idea when it will be published in print? Brian Knott -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] Sent: Tuesday, 21 March 2006 1:52 PM To: cfaussie@googlegroups.com Subject: [cfaussie] ColdFusion Performance Book Hi All, I was asked

[cfaussie] Select Boxes

2006-03-26 Thread KNOTT, Brian
Is there any way to have to items in a select box, one left aligned and one right aligned.  I have a customer who want to display 2 pieces of information in the dropdown box, but have the second piece right aligned.   Brian Knott ---

[cfaussie] Re: Select Boxes

2006-03-26 Thread KNOTT, Brian
PROTECTED]On Behalf Of KNOTT, Brian Sent: Monday, March 27, 2006 9:28 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Select Boxes Is there any way to have to items in a select box, one left aligned and one right aligned.  I have a customer who want to display 2 pieces of information in the

[cfaussie] Re: Select Boxes

2006-03-26 Thread KNOTT, Brian
nal Message- From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com]On Behalf Of KNOTT, Brian Sent: Monday, March 27, 2006 9:28 AM To: cfaussie@googlegroups.com Subject: [cfaussie] Select Boxes Is there any way to have to items in a select box, one left aligned and one right aligned

[cfaussie] Re: Select Boxes

2006-03-26 Thread KNOTT, Brian
was pretty small On 3/27/06, KNOTT, Brian <[EMAIL PROTECTED]> wrote: > > > > Is there any way to have to items in a select box, one left aligned and one > right aligned. I have a customer who want to display 2 pieces of > information in the dropdown box, but have the second

[cfaussie] Date Checker

2006-03-26 Thread KNOTT, Brian
I have a _javascript_ date checker that I use to check forms.  Problem is that it wants the date in the format of dd/mm/, thus is thinks 1/3/2006 is invalid.  It needs to be 01/03/2006.   Does anyone have a good form validation routine   Brian Knort -

[cfaussie] Creating session variables

2006-03-29 Thread KNOTT, Brian
I want to set up some session variables witha loop. However I can't seem toget the syntax correct. It does not like the session.order.currency#counter# part. Any ideas Brian -

[cfaussie] Dates

2006-05-16 Thread KNOTT, Brian
How can I get SQL to order dates by financial year not calendar year.  I want to order a query from1/72005 to 30/06/2006.   Brian Knott --- This e-mail is sent by Suncorp-Metway Limited ABN 66 010 831 72

[cfaussie] Re: Dates

2006-05-16 Thread KNOTT, Brian
    DateField   That will do the trick, but it’s not ordering it’s the Where bit your after. Regards Dale Fraser From: cfaussie@googlegroups.com [mailto:cfaussie@googlegroups.com] On Behalf Of KNOTT, Brian Sent: Wednesday, 17 May 2006 14:50 PM To: cfaussie@googlegroups.com Subject

[cfaussie] Re: Dates

2006-05-16 Thread KNOTT, Brian
Thanks Scott this looks like a good option. Brian -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Thornton Sent: Wednesday, 17 May 2006 3:02 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Dates Hi, when I wish to do crazy stuff

[cfaussie] Re: Dates

2006-05-16 Thread KNOTT, Brian
@googlegroups.com [mailto:[EMAIL PROTECTED] Behalf Of Chris Velevitch Sent: Wednesday, May 17, 2006 3:32 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Dates On 5/17/06, KNOTT, Brian <[EMAIL PROTECTED]> wrote: > That only works if you know what financial year you are operating in. I

[cfaussie] Rotating Banners

2006-06-20 Thread KNOTT, Brian
Does anyone have some quick and easy code for a rotating banner on a web page.  Basically I have 3 images that need to be rotated.  I could write some CF code to write the image to a database and then read and add on next load, just wondering if there was some code already out there.   Br

[cfaussie] Flex 2

2006-06-27 Thread KNOTT, Brian
You those of you that are interested Flex 2 is now available from the Adobe site.   http://www.adobe.com/products/flex/?promoid=BINV   Brian Knott --- This e-mail is sent by Suncorp-Metway Limited ABN

[cfaussie] Frames

2006-07-12 Thread KNOTT, Brian
Does anyone know how to correctly use _javascript_ to target frames within frames.  I’m presently in a frame within a frame.  I want to go back to the root frame and target a page in a different frameset.   Brian Knott --

[cfaussie] Firefox Javascript problem

2007-02-22 Thread KNOTT, Brian
Got a problem populating a form in firefox from a page that opened the form. The below code works in IE but not Firefox. Any ideas. Function loadValues() { document.confirm.points.value = opener.order.mempoints.value; } Brian Knott --

[cfaussie] Re: Firefox Javascript problem

2007-02-22 Thread KNOTT, Brian
word. Maybe try another word. > > _ > From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of KNOTT, Brian > Sent: Friday, 23 February 2007 11:25 AM > To: cfaussie@googlegroups.com > Subject: [cfaussie] Firefox Javascrip

[cfaussie] Re: Firefox Javascript problem

2007-02-22 Thread KNOTT, Brian
Problem was the firefox needs document infrount of the form name so window.opener.document.form.field.value works window.opener.form.field.value does not work. Brian Knott BI Analyst Developer - BI Service Delivery ... Level 4, SMC ph. (07)

[cfaussie] Re: Firefox Javascript problem

2007-02-22 Thread KNOTT, Brian
then:-) That's what firebug is there for, oh well. I'll move on then. On 2/23/07, KNOTT, Brian <[EMAIL PROTECTED]> wrote: Problem was the firefox needs document infrount of the form name so window.opener.document.form.f

[cfaussie] OT: SQL Server Schema

2007-03-18 Thread KNOTT, Brian
Just a quick one from all you Microsoft Guru's. Can I get the database schema out of a SQL Server 2000 database via XML. What I want to do is build a data dictionary of an existing data and if I could suck the schema out and the manipulate it in CF I could get an almost automated data dictionary.

[cfaussie] Re: OT: SQL Server Schema

2007-03-18 Thread KNOTT, Brian
;> 'INFORMATION_SCHEMA' ORDER BY T.TABLE_NAME, C.ORDINAL_POSITION FOR XML AUTO hth Rod -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of KNOTT, Brian Sent: Monday, 19 March 2007 3:04 PM To: cfaussie@g

[cfaussie] Queries

2007-04-01 Thread KNOTT, Brian
How do I refer to a row in a query. i.e. I want to look at row 5 in a query called sales. Brian --- This e-mail is sent by Suncorp-Metway Limited ABN 66 010 831 722 or one of its related entities "Suncorp". Suncor

[cfaussie] Re: Queries

2007-04-01 Thread KNOTT, Brian
don't worry I worked it our query.colum[5] brian From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of KNOTT, Brian Sent: Monday, 2 April 2007 3:09 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Queries How do I refer to a row

[cfaussie] Re: Queries

2007-04-01 Thread KNOTT, Brian
Doesn't QueryName[5].FieldName work? Andrew Scott Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au <http://www.aegeon.com.au> Phone: +613 8676 4223 Mobile: 0404 998 273 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of KNOTT, Brian Sent

[cfaussie] Re: Affordable Flex Training

2007-04-03 Thread KNOTT, Brian
Grant, Can this course be offered in other locatons. Brian -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Grant Straker Sent: Wednesday, 4 April 2007 1:36 PM To: cfaussie Subject: [cfaussie] Affordable Flex Training Hi All, Many people

[cfaussie] Re: Affordable Flex Training

2007-04-03 Thread KNOTT, Brian
I just house trained my dog. Cost me nothing. -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dale Fraser Sent: Wednesday, 4 April 2007 1:45 PM To: cfaussie@googlegroups.com Subject: [cfaussie] Re: Affordable Flex Training Grant, That is fant

[cfaussie] '' in SQL statement

2007-04-09 Thread KNOTT, Brian
Whats the quickest way to remove the double ' that appears in sql statements when you use a CF variable. Ie Gives me 'jan-07','feb-07','mar-07' When its pasted in SQL it becomes Select amount From table Where runDate not in (''jan-07'',''feb-07'',''mar-07'' ) Cf statement is Select amount F

[cfaussie] Re: '' in SQL statement

2007-04-09 Thread KNOTT, Brian
statement PreserveSingleQuotes(string) From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of KNOTT, Brian Sent: Tuesday, 10 April 2007 1:30 PM To: cfaussie@googlegroups.com Subject: [cfaussie] '' in SQL statement Whats the quickest way to remo

[cfaussie] Flash Charts

2007-04-09 Thread KNOTT, Brian
I'm creating flash charts and they have that nice function where the bar graphs grow. Is there any way to turn this off as its now becoming anoying. Brian --- This e-mail is sent by Suncorp-Metway Limited ABN 66 010

[cfaussie] Text on Graphs

2007-04-25 Thread KNOTT, Brian
I'm producing some nice graphs out of CF7. Oneof these graphs has a large number of columns, to fit all these in I have had to shrink the font size to 6px, making it very hard to read. Is it possible to have the rollover text a different size to the bar label text on these graphs. Brian ---

[cfaussie] Re: Text on Graphs

2007-04-25 Thread KNOTT, Brian
Brian I had the same problem. I used the graph config tool and made the labels display on a slant which sorted that out. Maybe an option? Steve From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of KNOTT, Brian Sent: Thursday, 26 April 2007 9:23

[cfaussie] Re: Force expiry of a page

2007-04-30 Thread KNOTT, Brian
I just put In the application file. Works for me. Brian Knott -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stephen M Sent: Tuesday, 1 May 2007 1:02 PM To: cfaussie Subject: [cfaussie] Re: Force expiry of a page On May 1, 11:20 am

[cfaussie] Re: CFAussie Community Head Count

2007-05-31 Thread KNOTT, Brian
I'm here -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Voerman Sent: Friday, 1 June 2007 12:02 PM To: cfaussie Subject: [cfaussie] CFAussie Community Head Count Hi Guys, Just a quick note to let you guys know that we at the Adobe Austral

[cfaussie] email attachments

2010-04-12 Thread KNOTT, Brian
Is it possible to create an email attachment on the fly. Got a customer that wants me be emailed an order confirmation but by attachment not in the email body. Brian Knott This e-mail is sent by Suncorp-Metway Limited ABN 66 010 831 722 or one of its related e

RE: [cfaussie] email attachments

2010-04-12 Thread KNOTT, Brian
Yes, just add cfmailparam between your cfmail tags with a path to the file. It will attach it to the email. On Mon, Apr 12, 2010 at 8:01 PM, KNOTT, Brian mailto:brian.kn...@suncorp.com.au>> wrote: attachment -- /Kevin Pepperman "They who can give up essential liberty to obta

RE: [cfaussie] email attachments

2010-04-12 Thread KNOTT, Brian
. http://www.bennadel.com/blog/1700-Ask-Ben-Creating-A-PDF-And-Attaching-It-To-An-Email-Using-ColdFusion.htm Google is a wonderful thing! ;) A.J. On 13 April 2010 10:14, KNOTT, Brian mailto:brian.kn...@suncorp.com.au>> wrote: Presently there is no file. I want to do it on the fly with out cr

RE: [cfaussie] cfmamil problem

2010-04-15 Thread KNOTT, Brian
Scott, Have a look in the mail error log. It will tell you why what emails are failing and why. You may have to increase your level of error capture if no log exists or there is not enough details. Stick the failed emails back in the spool folder, let them run through and check the er

RE: [cfaussie] cfmamil problem

2010-04-15 Thread KNOTT, Brian
quot;Message" "Information","jrpp-2408","03/09/10","16:41:24",,"C:\CFusionMX\logs\mail.log initialized" The emails are in the spool folder, just not going anywhere... I might have to schedule a service restart. Scott Thornton, Centralised Bil

[cfaussie] JSON/REST

2010-09-14 Thread KNOTT, Brian
Hi Guys, Been asked if I can create expose part of a web site through the JSON/REST technology instead on XML. Has anyone done this with CF, is it even possible. I not familiar with this technology but from what I have read its going to take over from XML and SOAP. Brian Knott

RE: [cfaussie] JSON/REST

2010-09-14 Thread KNOTT, Brian
Do you know of any good information / tutorials on this technology Brian Knott Ph: 07 313 52618 | Ext: 52618 | Mob: 0404 319078 From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Kai Koenig Sent: Wednesday, 15 September 2010 8:58 AM To: cfaussie@googlegroups.com Subj

[cfaussie] Hiding table rows

2010-10-05 Thread KNOTT, Brian
Guys looking at hiding and showing table rows via a link. Some basic (untested) code below. click here to hide/show this row needs to show once the above is clicked Css file .hiderow { Display:none; } .showr

RE: [cfaussie] Hiding table rows

2010-10-05 Thread KNOTT, Brian
le.display == "") { myRow.style.display = "none"; } else { myRow.style.display = ""; } } From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of KNOTT, Brian Sent: Wednesday, 6 October 2010 10:52 AM To: '

RE: [cfaussie] Hiding table rows

2010-10-05 Thread KNOTT, Brian
idea. So use function clickLink() { myRow = document.getElementById('hiderow'); if(myRow.style.display == "") { myRow.style.display = "none"; } else { myRow.style.display = ""; } } From: cfaussie@googlegroups.com [mai

[cfaussie] Submitting a form

2010-10-12 Thread KNOTT, Brian
Guys I using images as buttons to submit form. Bit like the code below I would normally then refer to the form field in the next page i.e. This works fine in firefox but in IE it send through the x and y co-ords of the image, i.e form.step3Submitx = 56. Is there a way to get IE to pass the

RE: [cfaussie] Submitting a form

2010-10-12 Thread KNOTT, Brian
ubject: RE: [cfaussie] Submitting a form Why don't you just do it with a normal submit button and style it to use the image? That way you can still use the image but submit it properly From: KNOTT, Brian [mailto:brian.kn...@suncorp.com.au] Sent: Wednesday, 13 October 2010 2:38 P

RE: [cfaussie] Submitting a form

2010-10-14 Thread KNOTT, Brian
used inline to demonstrate what i meant. It is also better that way as you can just have a background for the button and use the value to change the label instead of creating a different button for every label From: KNOTT, Brian [mailto:brian.kn...@suncorp.com.au] Sent: Wednesday, 13 October

RE: [cfaussie] Re: Submitting a form

2010-10-14 Thread KNOTT, Brian
Thanks Guys seems to be working. Brian Knott Ph: 07 313 52618 | Ext: 52618 | Mob: 0404 319078 -Original Message- From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Andrew Scott Sent: Friday, 15 October 2010 9:03 AM To: cfaussie@googlegroups.com Subject: RE:

[cfaussie] Sessions problem with IE8

2010-10-24 Thread KNOTT, Brian
Guys, Got a session issue with IE 8 but only when its inside a frame set. The customer wants to put the site in a vanity URL. Its just a frame at 100% from there site. With IE8 it does not seem to retain session variables from page to page. I can set some session variables on

RE: [cfaussie] Sessions problem with IE8

2010-10-24 Thread KNOTT, Brian
I done up some dummy pages. If you go to http://www.jbk.com.au/test.html it will open a frameset, showing you a dump of the session variables and the CFID and CFTOKEN. This is page http://www.fx4you.info/australia/test/page1.cfm . Page 1 CFID-1098982 CFTOKEN-48951408 If you click on the subm

RE: [cfaussie] Sessions problem with IE8

2010-10-24 Thread KNOTT, Brian
Forgot to add. The frames work in Firefox. The session variables work in IE 8 if you go directly to the site (http://www.fx4you.info/australia/test/page1.cfm ) I think it has something to do with the frame set being form another URL. If I create a frameset on the same server (http://www.fx4y

RE: [cfaussie] Sessions problem with IE8

2010-10-24 Thread KNOTT, Brian
IE8 That is classed as cross domain cookies thus your session does not get retained because the browser does not accept the cookies from the frameset domain [cid:image001.png@01CB7445.8380C190] -Original Message- From: KNOTT, Brian [mailto:brian.kn...@suncorp.com.au] Sent: Monday

RE: [cfaussie] Sessions problem with IE8

2010-10-24 Thread KNOTT, Brian
: [cfaussie] Sessions problem with IE8 On 25/10/2010 14:07, KNOTT, Brian wrote: > Is there a way around this? There must be as it doesn't happen on the clubsonline sites. I will check with their developers and see what they did. -- Yours, Kym Kovan mbcomms.net.au -- You received this

RE: [cfaussie] Sessions problem with IE8

2010-10-25 Thread KNOTT, Brian
Message- From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of Kym Kovan Sent: Monday, 25 October 2010 4:06 PM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] Sessions problem with IE8 On 25/10/2010 15:41, KNOTT, Brian wrote: > That would be great. Thanks Kym

RE: [cfaussie] JSON/REST

2010-11-09 Thread KNOTT, Brian
To: cfaussie@googlegroups.com Subject: Re: [cfaussie] JSON/REST On 15/09/2010 08:55, KNOTT, Brian wrote: > Hi Guys, > > Been asked if I can create expose part of a web site through the > JSON/REST technology instead on XML. Has anyone done this with CF, is it > even possible. JSON a

[cfaussie] Daily Rate

2011-03-10 Thread KNOTT, Brian
Guys what's the current daily rate for an experienced CF developer. Short term project. Brian Knott | Budget and Forecast Specialist | Group Budget, Planning & Forecasting | Gr