I don´t see how to preselect a dropdown using Super Simple View Engine.
My model has a property datatype which is a number and I want to preselect this in the dropdown.
As I see from documentation conditionals only work on boolean values. So using something like this in my view does not work:
<option value="1" @If.datatype==1 selected @EndIf>number</option>
<option value="2" @If.datatype==2 selected @EndIf>string</option>
...
Is there any way to achieve what I´m trying to do? Or do I have to use another view engine?