I am using the fluidbootstraptheme because is easy to use, extend, etc... until now that I am trying to pass data from the controller to the view Configuration section.
View Glyphicons.html:
<f:section name="Configuration">
<flux:form id="glyphicons" options="{useTypoScript: 0, group: 'Bootstrap', icon: '{f:uri.resource(path: \'Icons/bootstrap/glyphicons_101_italic.png\')}'}">
<flux:field.select name="header" items="{glyph}" />
</flux:form>
</f:section>
Content Controller
public function glyphiconsAction() {
$this->view->assign(glyph', 'value1,value2,value3');
}
Even I have tried array('value1','value2','value3') or '{foo: bar}' with no results