Search the web
Sign In
New User? Sign Up
fusebox5
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3905 - 3934 of 4396   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3905
Hey Adam- Thanks for all your work and willingness to step up to the challenge! You're right, Sean did an amazing Job with FB, and I'm pleased to hear all the...
Ryan Heldt
ryan.heldt
Offline Send Email
Oct 1, 2008
1:49 pm
3906
... Not sure what sort of offers you've made in the past, but last time the issue came up on the list, I went and updated the Volunteers page, which gives...
Peter Boughton
boughtonp
Offline Send Email
Oct 1, 2008
2:13 pm
3907
I did also write a couple of sample apps for the no XML approach. 1 was a conversion of Brian Kotek's Bookstore from 4 to 5.5, the other was a slimmed down...
aliaspooryorik
Offline Send Email
Oct 1, 2008
3:16 pm
3908
I totally agree with Ryans comments about the documentation. Although there is one good book (Fusebox 5 & FLIP - thanks to Mr. Peters), the documentation that...
Doug Smith
pegasust4
Offline Send Email
Oct 1, 2008
4:41 pm
3909
Unfortunately, you are correct, the documentation for Fusebox is totally lacking. Each Team Fusebox member has an area of responsibility. To date since ...
Sandra Clark
slclark2499
Offline Send Email
Oct 1, 2008
4:54 pm
3910
I think having one application for a sample that starts out simple and gets more complex is an excellent idea. It is hard with the current sample apps to...
Jeffrey Roberson
hippiex
Offline Send Email
Oct 1, 2008
4:58 pm
3911
The weGotWidgets apps used to be a great training tool. Maybe those could be run into noXML and noXML-OO versions. I liked how it had an "Add" fuseaction but...
Greg Luce
cf_greg
Offline Send Email
Oct 1, 2008
5:07 pm
3912
I'd like something that acts in the same manner as cfparam in the circuit file. I really like the behavior of <xfa name="blar" value="blar" overwrite="false"...
Jordan Reiter
reiterj@...
Send Email
Oct 3, 2008
8:08 pm
3913
You could always add a lexicon to the cf lexicon folder that emulates <cfparam>. ... From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf...
Sandra Clark
slclark2499
Offline Send Email
Oct 3, 2008
8:19 pm
3914
Or just use the built-in SET verb: <set name="myvar" value="thedefault" overwrite="false" /> cheers, barneyb ... <snip /> -- Barney Boisvert ...
Barney Boisvert
barneyboisvert
Offline Send Email
Oct 3, 2008
8:24 pm
3915
Jordan, I believe the Fusebox <set> verb DOES behave that way: i.e. overwrite="true/false" will work. Tested on CF FB 5.5.1 Derekhed ... =========== According...
Derek Hedstrom
derekhed
Offline Send Email
Oct 3, 2008
8:29 pm
3916
... Hmmm...looking at the generated code in the parse folder, this is what I see: <cfset myFusebox.enterStackFrame() > <cfif ...
Jordan Reiter
reiterj@...
Send Email
Oct 3, 2008
9:16 pm
3917
Where are you defining the variable? I am guessing you are using the NoXML version of Fusebox? I tested the traditional version, setting the variable in the ...
Derek Hedstrom
derekhed
Offline Send Email
Oct 3, 2008
9:39 pm
3918
... this works? Not at all. For this example, refer to the following URL: ...
hanzo55
Online Now Send Email
Oct 3, 2008
11:00 pm
3919
... blog so ... Adam, Congratulations on taking the helm of our next evolution of FB. A fellow blogger recommended I refer you to my blog post today regarding ...
hanzo55
Online Now Send Email
Oct 4, 2008
12:24 am
3920
I read your blog and agree with Adam's comments . . . You propose that you should be able to call your model, view, and controllers with the same name ...
Seth Johnson
cfx_user
Offline Send Email
Oct 4, 2008
3:13 pm
3921
... Hey, Seth. I saw your response and appreciate the discussion. I've responded on the blog with an alternate solution, which I think would adequately solve...
hanzo55
Online Now Send Email
Oct 4, 2008
4:09 pm
3922
I tried to post a reply in your blog but couldn't get the CAPTCHA image to show so I'm posting it here now: Remember these three things and you'll understand...
Mike
starkraving2002
Online Now Send Email
Oct 4, 2008
6:16 pm
3923
... This is *absolutely the winner* here, especially in regards to #2. I would expect that most developers, regardless of their FB experience level, should...
hanzo55
Online Now Send Email
Oct 4, 2008
8:34 pm
3924
Let's say I have a column in a DB that is called Messages. I can set the session variables this way.. <cfloop index="Permission" list="#Position.columnlist#"> ...
Phillip M. Vector
lance_lake
Online Now Send Email
Oct 11, 2008
5:33 pm
3925
I think you need to use some a list function. <cfif not listcontainsnocase(session.permission,myfusebox.originalcircuit)> ... seth ... From: Phillip M. Vector...
Seth Johnson
cfx_user
Offline Send Email
Oct 11, 2008
6:53 pm
3926
I'm not using the permissions anymore on the page. The loop was just to set all the session variables. It sets session.email to 1 session.messages to 1 ...
Phillip M. Vector
lance_lake
Online Now Send Email
Oct 11, 2008
7:04 pm
3927
Try cfdumping the variable you are trying to append to see what it contains, if it is not a string you may have to convert it to a string before appending. ......
Seth Johnson
cfx_user
Offline Send Email
Oct 11, 2008
7:14 pm
3928
Do you mean cfdump myfusebox.originalcircuit? It contains the circuit the user is on in string form....
Phillip M. Vector
lance_lake
Online Now Send Email
Oct 11, 2008
7:24 pm
3929
I am back at my computer now and have tested some of the code you sent and it seems to work fine. Here is my test case: <cfset session['residences'] = 1> <cfif...
Seth Johnson
cfx_user
Offline Send Email
Oct 11, 2008
8:25 pm
3930
That's not exactly what I was looking for... I was more looking for this... <cfset session.residences = 0> <cfif session[myFusebox.originalCircuit] EQ 0> Pass ...
Phillip M. Vector
lance_lake
Online Now Send Email
Oct 11, 2008
8:51 pm
3931
Your code and my code is synonymous, just uses different syntax, and both methods work. From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On...
Seth Johnson
cfx_user
Offline Send Email
Oct 11, 2008
10:05 pm
3932
No.. Not if you got yours to work. :) I keep getting a Element Calendar is undefined in a Java object of type class coldfusion.runtime.MemorySessionScope. and...
Phillip M. Vector
lance_lake
Online Now Send Email
Oct 11, 2008
11:21 pm
3933
Well, you must be making progress because that is a different error than you were getting before. I would suggest cfdumping the value right before your test,...
Seth Johnson
cfx_user
Offline Send Email
Oct 11, 2008
11:57 pm
3934
Has anyone seen SES urls return a status 200 empty/blank page with zero bytes of data? I have code which works fine in development, as well as another test ...
Josh Carrico
the_sigepjedi
Offline Send Email
Oct 16, 2008
6:00 pm
Messages 3905 - 3934 of 4396   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help