March 28, 2014

เพิ่ม class attribute ใน @Html.EditorFor

หาคุณพยายามใส่ class attribute ใน Html.EditorFor แบบด้านล้าง คำตอบคือทำไม่ได้

@Html.EditorFor(x => x.Created , new {@class="one"})

ต้องเปลี่ยนเป็น Html.TextBoxForModel แทน

@Html.TextBoxForModel(x => x.Created, new { @class = "date" })

No comments:

Post a Comment