Brian Oeding
Member since Dec 11, 2008
- Profile: /members/2405-brian-oeding.htm
- Comments: 16
Recent Blog Comments By Brian Oeding
-
An Intensive Exploration Of jQuery With Ben Nadel (Video Presentation)
Posted on Feb 10, 2013 at 7:48 PM
I know this is a bit dated, but as I am just able to start using jQuery in my client's CF site recently, I've found this to be helpful. Good job. Thanks Ben!... read more »
-
ColdFusion Component Wrapper For POI To Read And Write Excel Files
Posted on Jun 23, 2010 at 10:58 AM
Ben, I have successfully been using your wrapper for a few years now (it was very helpful), but my crazy bleeding edge users now have started using Excel 2007 and are breaking my code :-,) The workaround is to get them to save their files as the older 2003 worksheets, but since our server admins hav... read more »
-
Ask Ben: Ending ColdFusion Session When User Closes Browser
Posted on Jun 9, 2010 at 3:32 PM
Ben, Thanks for the tip. I have not tried to incorporate jQuery in yet, but it is on my todo list to try. So far though my solution seems to be working correctly. I still need to roll it to our whole development site and confirm that the AJAX and onUnload event function does not break anything.... read more »
-
Ask Ben: Ending ColdFusion Session When User Closes Browser
Posted on Jun 4, 2010 at 8:08 AM
I also just made a change to handle the case where a user selects the 'File/Exit' or 'X (Close)' in IE. I have a onUnload="logout()" attribute for the body tag (actually onUnload="@@(onunload)@@logout()" to handle other requests I might need to add later; also onbeforeunload works in Win XP IE 7 tha... read more »
-
Ask Ben: Ending ColdFusion Session When User Closes Browser
Posted on Jun 2, 2010 at 6:00 PM
Ben, Your insights here and elsewhere help me much. On this subject, my CF8 system uses J2EE variables and I just added a logout page that I direct a logout link to. On that page is a typical logout message and only 2 other lines of code: <cfset session.setMaxInactiveInterval(javaCast( "int", ... read more »
-
Learning ColdFusion 8: Implicit Struct And Array Creation
Posted on Feb 27, 2009 at 11:22 AM
With 8.01 I'm trying to create a nested structure based on postprocessing a query and dynamically creating the keys and the following works fine with a single level structure with objQry being a valid query. However when I try a nested structure by uncommenting the commented lines I get a 'Invalid C... read more »
-
Ask Ben: Extending OnSessionStart() In A Sub Directory Application.cfc
Posted on Feb 16, 2009 at 6:14 PM
@Ben Nadel, Probably so. Interesting that my Application.cfcs use the component mapping I just mentioned in the this.mappings to do a database lookup via a cfc in the onSession methods for the main and sublevel Application.cfc, but the extends is earlier at least in the sublevel Application.cfc wher... read more »
-
Ask Ben: Extending OnSessionStart() In A Sub Directory Application.cfc
Posted on Feb 16, 2009 at 5:50 PM
@Ben Nadel, Unfortunately you are correct. I just tested it and although it works with the Administrator Server Settings > Mappings page, it fails with the mappings structure in Application.cfc. However all my other mappings do work fine using that structure as follows in the Application.cfc: &l... read more »
-
Ask Ben: Extending OnSessionStart() In A Sub Directory Application.cfc
Posted on Feb 16, 2009 at 3:11 PM
@dickbob, Sure. Also I've read you can now define your mappings in your code in Application.cfc (This.mappings). We're getting ready to move into an environment where I have no direct control over my Administrator settings and will probably use that.... read more »
-
Ask Ben: Extending OnSessionStart() In A Sub Directory Application.cfc
Posted on Feb 16, 2009 at 11:10 AM
dickbob, I chose to create a path in my CF Administrator to my root area and use it for the extends, so it looks like: extends="MyAppRoot.Application" It seems cleaner and clearer. I didn't like the thought of an extra file whose purpose was for this and the other suggested tip using an undocumente... read more »
-
Ask Ben: Extending OnSessionStart() In A Sub Directory Application.cfc
Posted on Feb 16, 2009 at 11:04 AM
shuns, I did find super referenced in the help docs under Building and Using ColdFusion Components/Using CFCs effectively at: http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=buildingComponents_30.html... read more »
-
Ask Ben: Extending OnSessionStart() In A Sub Directory Application.cfc
Posted on Feb 16, 2009 at 10:55 AM
Ben, I think what shuns is getting at is what I experienced as well. Here's my solution. I started with your approach and it worked in part. However, when I entered the app from the homepage (fine), then to one of the sublevel pages (fine) and then hit a second sublevel page in the same directory ... read more »
-
ColdFusion Component Wrapper For POI To Read And Write Excel Files
Posted on Apr 9, 2007 at 9:02 AM
That's fine. However, it would be great if you could update it. Thanks.... read more »
-
ColdFusion Component Wrapper For POI To Read And Write Excel Files
Posted on Apr 6, 2007 at 5:56 PM
I have your wrapper (04/04/2007 version) working for reading my multisheet workbook and I was able to manipulate the query data. Now I want to overwrite the spreadsheet data back into the old spreadsheet (about the 4th sheet). I tried the WriteExcelSheet method, but realize that this won't work beca... read more »
-
ColdFusion POIUtility.cfc Updates And Bug Fixes
Posted on Apr 5, 2007 at 5:49 PM
This helped fixed the bugs I experienced. Thanks!... read more »
-
ColdFusion Component Wrapper For POI To Read And Write Excel Files
Posted on Apr 5, 2007 at 8:21 AM
I have used a number of the POI methods successfully, but I have been searching for a couple more or their equivelant without success. 1) Essentially I'm trying to do a copy and paste on a range of cells. The Excel Macro equivelant is: Range("D1:Q28").Select Selection.Copy Range("C1").... read more »