我有這樣的創建視圖,它生成的代碼....編輯視圖的數據庫,第一個模型在ASP MVC3
<div class="editor-label">
@Html.LabelFor(model => model.EmployeeId, "Employee")
</div>
<div class="editor-field">
@Html.DropDownList("EmployeeId", String.Empty)
@Html.ValidationMessageFor(model => model.EmployeeId)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.Date,"Date")
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Date)
@Html.ValidationMessageFor(model => model.Date)
</div>
一旦運行,它會自動創建文本框,用於輸入...我不能做的就是給力日期的文本框,成爲一個datepicker ...
我能做到這一點簡單的輸入,
<input class="datepicker">
我已經爲日期選擇器的腳本..我只需要做dat的輸入類E要被也日期選擇器...(我看不到在所生成的代碼,其中i可以添加類=「日期選擇器」的輸入)
使日期div的分類等於「datepicker」只會導致日期文本框下的即時可見日曆,並且它不會將選定日期傳遞給文本框 –