<html>
<body>
<blockquote type=cite class=cite cite=""><font size=3>Date: Tue, 25 Sep
2007 20:34:56 +0200<br>
From: Mario Minati
&lt;mario.minati@googlemail.com&gt;</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>
&nbsp;&nbsp;&nbsp; stash: &quot;howdy&quot;<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>
&nbsp; hello: &quot;howdy&quot;<br><br>
elements:<br>
&nbsp; - type: Fieldset<br>
:&nbsp;&nbsp; :&nbsp;&nbsp; :&nbsp;&nbsp; :<br><br>
Later, using Data::Dumper <br>
$HTML_FormFu_form = bless( {<br>
&nbsp; '_elements' =&gt; [<br>
&nbsp;&nbsp;&nbsp; bless( {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '_elements' =&gt; [<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; bless( {<br>
&nbsp;&nbsp;&nbsp; :&nbsp;&nbsp; :&nbsp;&nbsp; :&nbsp;&nbsp; :<br>
&nbsp; 'stash' =&gt; {<br>
&nbsp;&nbsp;&nbsp; 'hello' =&gt; 'howdy'<br>
&nbsp; },<br>
&nbsp; 'submitted' =&gt; 2<br>
}, 'HTML::FormFu' );<br>
&nbsp;&nbsp; <br><br>
<br>
</body>
</html>