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

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

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 3018 - 3047 of 4403   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3018
Same for me (St. Louis, MO). J From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of pictureman20024u Sent: Monday, December 31, 2007...
Jason Durham
fastlouis
Offline Send Email
Jan 2, 2008
1:37 pm
3019
There are many instances where I'd like to query the database or check user input against something and provide feedback to the user on the result. A simple...
Jason Durham
fastlouis
Offline Send Email
Jan 2, 2008
3:55 pm
3020
Ha... I spent all of that time typing it up and figured out a solution. I shouldn't be using <relocate> I should just <do> the display of the login form. Too...
Jason Durham
fastlouis
Offline Send Email
Jan 2, 2008
3:59 pm
3021
May not be local, but: http://www.teratech.com/go/training/class-schedule?trainingaction=detail&TID=308...
Josh Carrico
the_sigepjedi
Offline Send Email
Jan 2, 2008
4:35 pm
3022
As promised, I'm starting up a working group to discuss and come up with the Fusedoc 3.0 specification. This is long overdue and hopefully will address issues...
Sandra Clark
slclark2499
Online Now Send Email
Jan 4, 2008
1:37 pm
3023
Thanks Sandy, this is very much appreciated! I joined the group - I've never created a DTD before but if I can offer some pennies-worth of thought as a fusedoc...
Christian Ready
christianrea...
Offline Send Email
Jan 4, 2008
1:54 pm
3024
I've got <parameter name="debug" value="false" /> and yet debug info still shows up. I've got <parameter name="mode" value="development-full-load" /> and I...
cfjedimaster
Online Now Send Email
Jan 5, 2008
10:30 pm
3025
... Reload the page with your URL params to force a reload of the fusebox.xml file: ...
derekhed
Offline Send Email
Jan 5, 2008
11:07 pm
3026
I tried that and now I get: This is the template "errortemplates/fusebox.missingParsedFile.cfm" An Error of type "fusebox.missingParsedFile" has occured Parsed...
Raymond Camden
cfjedimaster
Online Now Send Email
Jan 5, 2008
11:09 pm
3027
I find that when you do the reload, you have to delete the parsed files as well.. Bug?...
Phillip M. Vector
lance_lake
Online Now Send Email
Jan 5, 2008
11:58 pm
3028
I have a very simple fb 5.5 app running when one fuseaction. <fuseaction name="welcome"> <do action="display.main" /> </fuseaction> This then runs: <fuseaction...
cfjedimaster
Online Now Send Email
Jan 6, 2008
12:52 am
3029
The fuseaction app.initialize is still running your layout, but its missing the body variable. Is app.initialize calling that particular postfuseaction? ...
Sandra Clark
slclark2499
Online Now Send Email
Jan 6, 2008
1:24 am
3030
I think your first FA should look like this: <fuseaction name="welcome"> <do action="display.main" contentvariable="body"/> </fuseaction> Your layout was...
Seth Johnson
cfx_user
Offline Send Email
Jan 6, 2008
1:36 am
3031
Check your Application.cfc or index.cfm file: I bet the debut parameter is being overridden there in the FUSEBOX_PARAMETERS struct. Sean Corfield -- (904)...
Sean Corfield
seancorfield
Offline Send Email
Jan 6, 2008
1:39 am
3032
Did you delete the whole parsed/ directory? Sounds like CF doesn't have permission to recreate it. Sean Corfield -- (904) 302-SEAN An Architect's View --...
Sean Corfield
seancorfield
Offline Send Email
Jan 6, 2008
1:40 am
3033
The postfuseaction is firing for app.initialize but body is not set there. This is why I tend to put initialize in my model circuit and also why I don't put...
Sean Corfield
seancorfield
Offline Send Email
Jan 6, 2008
1:43 am
3034
Nod, all of the above made sense. I got past that now and just have the issue I mentioned with debugging in the other thread. ... -- ...
Raymond Camden
cfjedimaster
Online Now Send Email
Jan 6, 2008
2:51 am
3035
Ugh. That was it - and so obvious. Thanks everyone. ... -- =========================================================================== Raymond Camden, Camden...
Raymond Camden
cfjedimaster
Online Now Send Email
Jan 6, 2008
2:52 am
3036
I'm trying to invoke in a fuseaction and use an alias for the object values, but that doesn't work. I have to use the 'real' name: <fuseaction name="state"> ...
cfjedimaster
Online Now Send Email
Jan 7, 2008
1:03 pm
3037
This regard the second part of the question. I get now that Attributes is the scope I'd use. I also see that I can use a <set> verb to param it. Still want to...
Raymond Camden
cfjedimaster
Online Now Send Email
Jan 7, 2008
1:15 pm
3038
I am using fusebox 5.1 and CF My page will not display between div tags. I am creating a XML document with a reference to an XSL. When I run the page in my...
mkomnenous
Offline Send Email
Jan 7, 2008
3:35 pm
3039
... Aliases are used with <instantiate> (only) to create objects. <invoke> can either operate on an existing object or on a type name. You either say: <invoke...
Sean Corfield
seancorfield
Offline Send Email
Jan 7, 2008
4:54 pm
3040
Hi I just configure FB5.5 and trying scaffolding extension as per Fusebox_Scaffolding_002.doc and discussion in the group: - I created a folder scaffolder...
Mohammad Qureshi
mohd4
Offline Send Email
Jan 7, 2008
6:23 pm
3041
Raymond, Your code here is basically correct, but I would suggest one change - use method instead of methodcall. Methodcall lets you write out the exact ...
Nathan Strutz
nathan_strutz
Offline Send Email
Jan 7, 2008
8:13 pm
3042
... This happened to me when the Scaffolder is unable to introspect the DB (and it silently fails). Check in the CF Admin to make sure your adworks datasource...
Sean Corfield
seancorfield
Offline Send Email
Jan 7, 2008
8:55 pm
3043
Kinda makes sense. Thanks. Still wrapping my head around this. I'm a bit surprised- and overwhelmed, by how many different ways you can do things in FB 5.5. ...
Raymond Camden
cfjedimaster
Online Now Send Email
Jan 7, 2008
10:02 pm
3044
Yeah, true story, there are a lot of ways to do the same thing. The decision really comes down to how OO vs how procedural you want to be. It gives a lot of...
Nathan Strutz
nathan_strutz
Offline Send Email
Jan 7, 2008
10:26 pm
3045
... Simple Fusebox 5.5 XML cheat sheet: Don't use XML :) Seriously, I'm not sure much changed in the XML between 5.1 and 5.5. I restored the conditionalParse...
Sean Corfield
seancorfield
Offline Send Email
Jan 7, 2008
11:04 pm
3046
You're right, there's very few changes between 5.0 and 5.5. ConditionalParse is one, I would call dynamic do another. Still, the XML is totally viable and I...
Nathan Strutz
nathan_strutz
Offline Send Email
Jan 8, 2008
3:09 pm
3047
Since switching to noxml I feel I am able to concentrate more on what the app needs to do than how to do it. On the maintenance front, It used to be such a...
Seth Johnson
cfx_user
Offline Send Email
Jan 8, 2008
3:23 pm
Messages 3018 - 3047 of 4403   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