Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. @if (!Model.Id.Equals(null))
  2. {
  3. @Html.DropDownListFor(m => m.Modificar.IdClase, new SelectList(Model.ListaClases, "IdClase", "Clase", Model.Modificar.IdClase), new { @class = "input form-control input-lg", @required = "required", @style = "height: 40px; font-size:16px" })
  4. }
  5. else
  6. {
  7. @Html.DropDownListFor(m => m.ListaClases, new SelectList(Model.ListaClases, "IdClase", "Clase"), new { @class = "input form-control input-lg", @required = "required", @style = "height: 40px; font-size:16px" })
  8. }
  9.  
  10. var clases = $('#Id').val() != "" ? $('#Modificar_IdClase') : $('#ListaClases');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement