Re: Coldfusion XML Case Sensitivity

2007-11-10 Thread Dominic Watson
Also, take a look at this if you are needing to manage xml docs in any way: http://betterxml.riaforge.org/ It lets you do use XPath for CRUD operations on XML which can speed things up and simplifies code, e.g. to delete all comments from an xml file: cfinvoke component=BetterXML_Editor

Re: changing a css file via coldfusion

2007-11-10 Thread Dominic Watson
A simple solution: store the name of the preffered style sheet for the user (db/cookie etc) and just do: LINK href=#usersCSSChoice# rel=stylesheet type=text/css I don't see why you should want to do this client side as it is very minimal processing for the server. Why alienate the users who

Session Timeout

2007-11-10 Thread Richard White
Hi, Just wondering what you guys think is the best way to implement and handle session timeouts. i have seen some people putting it in the cflogin tag and others doing it in other ways. i would appreciate a very simple example or a link to a site that provides the simple example, i know its

Re: Coldfusion XML Case Sensitivity

2007-11-10 Thread Richard White
Hi Dominic, Thanks for this, this looks very interested. Thanks again Richard ~| Create robust enterprise, web RIAs. Upgrade to ColdFusion 8 and integrate with Adobe Flex

Version Controll with IIS

2007-11-10 Thread robert . rawlins
Hello Chaps, I know many of you are running SubVersion for your version control on your Apache based servers, and to be honest I think its about time I got up and running with some proper source control, the number of Projects I have 'on the go' is growing and I need to tidy up my management a

Re: Version Controll with IIS

2007-11-10 Thread J.J. Merrick
To answer your questions... 1. It is optional to run SVN on apache. Some people do it for the security control you have and if you are running it on the web it gives you true HTTP access. 2. Subversion has a server built into it that I prefer to use since my requirements are basic. It probably

cfgrid showing number of records

2007-11-10 Thread Dan Vega
I am just playing around with cfgrid and I have a paging example setup just great. The only thing is my client would like to see stats for where they are paging such as Showing 1-10 of 2000 records. In all of the extjs examples this is possible I am just wondering if there is anyway for me to

RE: Version Controll with IIS

2007-11-10 Thread Paul Vernon
I know many of you are running SubVersion for your version control on your Apache based servers, and to be honest I think its about time I got up and running with some proper source control, the number of Projects I have 'on the go' is growing and I need to tidy up my management a little

RE: Version Controll with IIS

2007-11-10 Thread Eric Roberts
Subversion just fine on windows with IIS... Eric -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Saturday, November 10, 2007 7:51 AM To: CF-Talk Subject: Version Controll with IIS Hello Chaps, I know many of you are running SubVersion for your version

RE: Version Controll with IIS

2007-11-10 Thread Eric Roberts
I use the svnserver as well...I like having the separate protocol to access the repositories than just using HTML. I agree that there is no difference between using IIS and Apache as far as svn is concerned. Eric -Original Message- From: J.J. Merrick [mailto:[EMAIL PROTECTED] Sent:

Javascript enabled

2007-11-10 Thread Richard White
Hi, before we set up the application.cfc to handle the login in of users we had an index page that was told the user that they didn't have javascript enabled. at the top p fhte form we had code in javascript that redirected them to the login page. therefore if javascript was enabled it would

Re: cfgrid showing number of records

2007-11-10 Thread Richard White
if you want a more robust grid with great manageability and features, it is definitely worth taking a look into dhtmlxgrid from www.dhtmlx.com. it also has paging on this grid we found that cfgrid is too early on in its lifecycle to be flexible enough for what we need. Don't know much about

RE: Javascript enabled

2007-11-10 Thread Bobby Hartsfield
You could set up your login page like... div id=noJSMessage style=display:block;You need javascript/div div id=theForm style=display:none;form name=login... etc...,/form/div Then run some js that changes the display for each. script document.getElementById('theJSMessage').style.display='none';

Re: Javascript enabled

2007-11-10 Thread Josh Nathanson
we would appreciate some help on how you guys to do your checks when you have the application.cfc handling the logging in of users. We would like the application.cfc onrequeststart method to check this all the time so that if the user turns of javascript while using the software it will

Re: Javascript enabled

2007-11-10 Thread Casey Dougall
On Nov 10, 2007 2:32 PM, Josh Nathanson [EMAIL PROTECTED] wrote: we would appreciate some help on how you guys to do your checks when you have the application.cfc handling the logging in of users. We would like the application.cfc onrequeststart method to check this all the time so that

ANN: http://coldfusioncommunity.org/

2007-11-10 Thread Nick Tong
Check out the new coldfusion community website: http://coldfusioncommunity.org/ -- Nick Tong web: http://talkwebsolutions.co.uk blog: http://succor.co.uk f..works:http://cfframeworks.com short urls: http://wapurl.co.uk green link: http://wapurl.co.uk/?4Z2YDLX

Re: Javascript enabled

2007-11-10 Thread Richard White
Hi Casey... Wow, what a simple but very clever solution. very impressed. thanks :) thanks for all your replies, i was just wondering josh.. i was interested in what you said about the ajax call, is this something simple to do... if so could you provide a short example of the ajax call? thanks

Re: Javascript enabled

2007-11-10 Thread Josh Nathanson
thanks for all your replies, i was just wondering josh.. i was interested in what you said about the ajax call, is this something simple to do... if so could you provide a short example of the ajax call? Sure, I use jQuery and it looks like this - keep in mind I have already cfparam'd

Re: Javascript enabled

2007-11-10 Thread Andrew Grosset
My vote goes to Bobby's solution...elegant and simple There is a typo in the example though change: document.getElementById('theJSMessage').style.display='none'; to: document.getElementById('noJSMessage').style.display='none'; Andrew. You could set up your login page like... div