vote up 1 vote down star

Does anyone know the correct syntax for a selected radio button in NHAML?

This is my current NHAML code: %input{type="radio", name="Relocation", value="Yes"}

The help would be greatly appreciated.

Thanks!

flag

3 Answers

vote up 2 vote down

The latest version of NHaml (2.0 Beta 2) changes the way it handles attributes. Don't use commas:

%input{type="radio" name="Relocation" value="Yes"}
link|flag
vote up 1 vote down

NHaml 2.0 Beta 1 syntax

%input{type="radio", name="Relocation", checked="true"}
link|flag
vote up 1 vote down

%input {type="radio" name="Relocation" checked="checked" value="TrueOrWhatever"}

OR just use HtmlHelper

link|flag
it's the checked that does the trick – boris callens Aug 13 at 7:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.