<html>
<body>
<blockquote type=cite class=cite cite=""><font size=3>Date: Tue, 25 Sep
2007 20:34:56 +0200<br>
From: Mario Minati
<mario.minati@googlemail.com></font></blockquote>[snip]<br>
<blockquote type=cite class=cite cite=""><font size=3>BTW2:<br>
I would like to introduce a parameter in the form stash (or in form) for
<br>
catalyst to prevent the automatic call to 'process', so that I still can
add <br>
a callback to an element.<br>
Is there yet a way to populate the stash from yml?<br><br>
Greets,<br>
Mario</font></blockquote><br>
When I just had <br>
stash: "howdy"<br>
HTML::FormFu::ObjectUtil::stash() blew up on non-hashref, so I think
we're in the right area, and the below ought to work?<br><br>
---<br>
id: form<br>
stash:<br>
hello: "howdy"<br><br>
elements:<br>
- type: Fieldset<br>
: : : :<br><br>
Later, using Data::Dumper <br>
$HTML_FormFu_form = bless( {<br>
'_elements' => [<br>
bless( {<br>
'_elements' => [<br>
bless( {<br>
: : : :<br>
'stash' => {<br>
'hello' => 'howdy'<br>
},<br>
'submitted' => 2<br>
}, 'HTML::FormFu' );<br>
<br><br>
<br>
</body>
</html>