Check box option value = '', but return `1`

  • Thread starter Thread starter ZixDev
  • Start date Start date

ZixDev

Guest
Member
I have the checkboxrow with the option value = "":
Code:

Code:

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>
But show in HTML with...

Read more

Continue reading...
 
Top