<div>Hi all,</div><div>I am currently experimenting with H::FF::M::DBIC and Catalyst::Controller::H::FF.</div><div>Consider the yaml form config below.</div><div>The select element is filled correctly (value is the id field, label is the groupname field). So far so good.</div>
<div>But, naive me, I was hoping when calling $form-&gt;param_value(&#39;groupname&#39;) in the catalyst controller I would have the object automagically inflated. Instead, I only got the id value.</div><div>Is there an option to set to have this behaviour ? Like you have the auto_inflate option for a DateTime field for instance.</div>
<div>Or do you need to create a custom H::FF::Inflator class ?</div><div><br></div><div>Thanks and regards,</div><div>Marc</div><div><br></div><div><br></div><div>&lt;yaml_form_config&gt;</div><div>elements:</div><div> - type: Select</div>
<div>   name: groupname</div><div>   label: Group</div><div>   model_config:</div><div>     resultset: Radgroupcheck</div><div>     condition:</div><div>      attribute: Max-Octets</div><div>      groupname:</div><div>        IN:</div>
<div>          - Group1</div><div>          - Group2</div><div>     attributes:</div><div>       group_by: groupname</div><div>   empty_first: true</div><div>   empty_first_label: &#39;- select group -&#39;</div><div>   constraints:</div>
<div>     - Required</div><div>&lt;/yaml_form_config&gt;</div><div><br></div><div><br></div>