I have a list like this:
<xf:datalist data-xf-init="responsive-data-list">
<xf:foreach loop="$items" value="$item">
<xf:datarow rowclass="dataList-row--noHover">
....
</xf:datarow>
</xf:foreach>
</xf:datalist>
Now I need a form around every datarow; i tried different ways watching other forms, but when I watch the source-code my form is alway opened and closed before the datarow.
What is the right way to have a form inside this construct of datalist/datarow, please?
<xf:datalist data-xf-init="responsive-data-list">
<xf:foreach loop="$items" value="$item">
<xf:datarow rowclass="dataList-row--noHover">
....
</xf:datarow>
</xf:foreach>
</xf:datalist>
Now I need a form around every datarow; i tried different ways watching other forms, but when I watch the source-code my form is alway opened and closed before the datarow.
What is the right way to have a form inside this construct of datalist/datarow, please?