Re: setting the default font in FCK editor?

2006-12-15 Thread Mullai Subbiah
Did you have any luck? Thanks. Mullai In my FCK instance, the default font is displayed as Arial. My client's site uses verdana and she sometimes forgets to change the font manually. I'd like to know if it's possible to either remove all other fonts from the list or force the font selector to

Mysterious Session Timeout

2006-11-17 Thread Mullai Subbiah
I am using CFMX7. I am getting Session Timeouts when running the application. I have set the application and session timeout defaults to be 10 hour and maximum - 2 days (CF Admin). Within my application.cfm I have set them to be 9 hours (cfapplication). I have enabled SessionManagement and

Re: Mysterious Session Timeout

2006-11-17 Thread Mullai Subbiah
Just to let you know we have four users accessing the server at the same time. Mullai ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to

Re: Mysterious Session Timeout

2006-11-17 Thread Mullai Subbiah
Thank you. I have taken over this code from another programmer. I guess we set client cookies to no 'cause of security concerns. The clients dont have their cookies enabled. I am now totally confused on the settings of cfapplication. I am setting CFID to session.cfid and similar for CFToken so

Re: Mysterious Session Timeout

2006-11-17 Thread Mullai Subbiah
What makes you say that it is timming out? I think because in the application.log there is a message that one of the session variables Element userid is undefined in session. This variable is set in the page after the user's login/password is accepted. This is the code which processes the user

Re: Mysterious Session Timeout

2006-11-17 Thread Mullai Subbiah
Thanks for all your suggestions. I am going to turn the client cookies on and check with the client if they could. Then test it again. Thank you very much. Mullai ~| Introducing the Fusion Authority Quarterly Update. 80 pages

Re: Mysterious Session Timeout

2006-11-17 Thread Mullai Subbiah
, you are not passing the tokens with the url. You have clients that do not have cookies enabled, and you have switched it off on the application.cfm. It is not timing out, its being reset with new values for each page request its that simple. On 11/18/06, Mullai Subbiah [EMAIL PROTECTED] wrote

dynamic anchor in Coldfusion

2006-10-30 Thread Mullai Subbiah
I am trying to use anchor points within a long page (say X). This is to aid the user so that focus returns to the same area when user submits the page. (Until he quits the page he will always return to the same page.) I created anchors at different areas using a href=top/a where top will change

Re: dynamic anchor in Coldfusion

2006-10-30 Thread Mullai Subbiah
I am trying to use anchor points within a long page (say X). This is to aid the user so that focus returns to the same area when user submits the page. (Until he quits the page he will always return to the same page.) I created anchors at different areas using a href=top/a where top will

Re: dynamic anchor in Coldfusion

2006-10-30 Thread Mullai Subbiah
Thanks. Sorry I had a name=... a href= was a typo. Mullai ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four

Re: fckEditor and Coldfusion

2006-10-17 Thread Mullai Subbiah
Thank you. I will give it a try. I am using a fckEditor within my application to provide the user to enter his information. This was chosen as it has editing options similar to MS-Word. I am trying to set the width and height of this editor based on the user's browser's width and height.

Re: fckEditor and Coldfusion

2006-10-17 Thread Mullai Subbiah
Thank you. I will give it a try. Mullai ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year.

fckEditor and Coldfusion

2006-10-16 Thread Mullai Subbiah
I am using a fckEditor within my application to provide the user to enter his information. This was chosen as it has editing options similar to MS-Word. I am trying to set the width and height of this editor based on the user's browser's width and height. Unforutanely I have not been successful

Re: Cfquery in Javascript

2006-09-20 Thread Mullai Subbiah
Thank you very much for responding. Mullai ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year.

Cfquery in Javascript

2006-09-14 Thread Mullai Subbiah
Can we use Cfquery within Javascript. I am trying to populate a form based on what I do within the Javascript. Once I am done I need to populate the form fields by querying the database? Any thoughts will be appreciated ~|

Coldfusion and Java

2006-08-28 Thread Mullai Subbiah
I am trying to call a user-defined Java method. I am using CFMX7 and Java 1.4.2 One of the method within the class when called gets executed by Coldfusion. But another method does not seem to be seen by coldfusion. Every time I try to call the method I get a method not found error. The

Re: Coldfusion and Java

2006-08-28 Thread Mullai Subbiah
Thank you. It worked. So I guess if a string is passed we dont need to worry about Javacast. So for my problem I had to specify the type of the arguments with two things. Javacast for primitive types and I have to explicitly create a Java Date object abc. Assign the output of cal.getTime() to

Coldfusion and XPA

2006-08-27 Thread Mullai Subbiah
I am trying to integrate ultraseek (search engine) within a coldfusion application. Has anybody attempted it? I am having problems using the daterangequery(XPA) from within coldfusion. I tested the java program. It runs and returns the results. But when I call the same function from coldfusion

Re: trouble with java.util.Date and long datatypes

2006-08-16 Thread Mullai Subbiah
), and seeing if that works? ColdFusion can be funny about large numbers, because it tries ot fit them into java.lang.Integers, which can only go so high. Give that a shot, and let us know. Mark On 8/16/06, Mullai Subbiah [EMAIL PROTECTED] wrote: -- E: [EMAIL PROTECTED] W: www.compoundtheory.com

Re: Java/CF Question

2006-08-16 Thread Mullai Subbiah
I created a Java Class within a package. I included the location in the classpath upto classes directory using CF Admin C: - Java - classes - XPA - bin - dateRange - abc.class In CF I created an object createObject(java, XPA.bin.dateRange.abc); No class found was thrown. I stripped the package

Re: trouble with java.util.Date and long datatypes

2006-08-15 Thread Mullai Subbiah
I have the following code to convert timezones. session.currentTimeZone is the logged-in user's timezone and session.defaultTimeZone is the machine's timezone. both are java.util.TimeZone objects. cfset offset = session.currentTimeZone.getRawOffset()-session.defaultTimeZone.getRawOffset( )

Re: trouble with java.util.Date and long datatypes

2006-08-15 Thread Mullai Subbiah
I have the following code to convert timezones. session.currentTimeZone is the logged-in user's timezone and session.defaultTimeZone is the machine's timezone. both are java.util.TimeZone objects. cfset offset = session.currentTimeZone.getRawOffset()-session.defaultTimeZone.getRawOffset( )