I need to define a select option input parameter in my user macro. how can i do this?
assume that i want below drop down list.
<select>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
I found it by myself.
It is enum type.
for those who have the same issue, here is a example code for how to use enum type.
## @param fontfamily:title=Font family|type=enum|desc=Choose font family. (some font families may not compatible with browsers)|enumValues=Times New Roman,Arial,Courier New,Tahoma,Trebuchet MS,Open Sans
<div style="font-family:$paramfontfamily;">$body</div>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.