J'ai besoin de cocher une case par défaut :
J'ai essayé tout cela, mais rien ne vérifie ma case à cocher -
@Html.CheckBoxFor(m => m.AllowRating, new { @value = "true" })
@Html.CheckBoxFor(m => m.AllowRating, new { @checked = "true" })
@Html.CheckBoxFor(m => m.AllowRating, new { @checked = true })
@Html.CheckBoxFor(m => m.AllowRating, new { @checked = "checked"})
0 votes
stackoverflow.com/questions/12674572/ Vérifiez ici..
0 votes
Pourquoi ne pas définir au préalable la valeur par défaut à partir du contrôleur ou de la base de données ?