Same for me (St. Louis, MO). J From: fusebox5@yahoogroups.com [mailto:fusebox5@yahoogroups.com] On Behalf Of pictureman20024u Sent: Monday, December 31, 2007...
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...
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...
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...
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...
I tried that and now I get: This is the template "errortemplates/fusebox.missingParsedFile.cfm" An Error of type "fusebox.missingParsedFile" has occured Parsed...
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...
The fuseaction app.initialize is still running your layout, but its missing the body variable. Is app.initialize calling that particular postfuseaction? ...
I think your first FA should look like this: <fuseaction name="welcome"> <do action="display.main" contentvariable="body"/> </fuseaction> Your layout was...
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)...
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 --...
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...
Ugh. That was it - and so obvious. Thanks everyone. ... -- =========================================================================== Raymond Camden, Camden...
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"> ...
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...
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...
... 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...
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...
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 ...
... 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...
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. ...
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...
... 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...
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...
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...