How do I display EnumDropDownListFor
as a condition? For example, if the user wishes to report their sexual orientation, enum is displayed. Otherwise it is not displayed.
How do I display EnumDropDownListFor
as a condition? For example, if the user wishes to report their sexual orientation, enum is displayed. Otherwise it is not displayed.
I would do so:
@if (UsuarioNaoQuerApresentarOrientacaoSexual)
{
@Html.Hidden(model => model.OrientacaoSexual, OrientacaoSexual.NaoInformado)
}
else
{
@Html.EnumDropDownListFor(model => model.OrientacaoSexual, ...)
}