ZixDev
Member
I have the checkboxrow with the option value = "":
But show in HTML with value =
Is this a bug, or am I wrong something? Thanks.
Code:
<xf:checkboxrow name="statuses" value="{$filters.statuses}" label="{{ phrase('lms_status') }}">
<xf:foreach loop="$statuses" value="$status">
<xf:option value="{$status.status_id}">{$status.title}</xf:option>
</xf:foreach>
<xf:option value="">{{ phrase('none') }}</xf:option>
</xf:checkboxrow>
1
Is this a bug, or am I wrong something? Thanks.