How do I use 'selected' attribute in XF template, like
HTML:
?
HTML:
throws me an error
"Template Compilation Error
public:av_notes_edit - Line 17: Syntax error - Template name: public:av_notes_edit
"
here is my form
Code:
Read more
Читать далее...
HTML:
<option value="second" selected>Second Value</option>
?
HTML:
<xf:option value="normal" selected>Normal</xf:option>
throws me an error
"Template Compilation Error
public:av_notes_edit - Line 17: Syntax error - Template name: public:av_notes_edit
"
here is my form
Code:
Код:
<xf:title>
<xf:if is="$note.note_id">
Edit note
<xf:else />
Add new note
</xf:if>
</xf:title>
<xf:form action="{{...
Read more
Читать далее...