Being so new to all this, I may have this wrong, but...
I have a front end item layout that includes 4 separate fly blocks. This works fine, and provides me with a segmented view of the data.
I was planning to later the layout a little and added CSS classes to the fly properties, with the intention of then adding extra CSS styles to match and alter the presentation.
However when I do this, the classes are not evident in the resulting code.
I can see:
<fieldset class="fieldsform">
<legend><?php echo JText::_('VARIABLESTARS_FIELDSET_TARGET_DETAILS') ?></legend>
<dl>
<dt>
<label for="_target_star_gcvs_identifier">
<?php echo JText::_( "VARIABLESTARS_FIELD_GCVS_ID" ); ?> :
</label>
</dt>
<dd>
<?php echo JDom::_('html.fly', array(
'dataKey' => '_target_star_gcvs_identifier',
'dataObject' => $this->item
));
?>
</dd>
etc
I would have expected an encompassing div to perhaps have been added given that the formset already has a class?
Am I missing something or is this a feature not yet implemented?
I have generated the code with the 2.0 beta.