1
我有一個DropDownList
它有一個綁定到ViewData
,它完美填充列表。.Net MVC 3 Telerik DropDownList沒有觸發事件OnChange
我想在「OnChange」事件觸發時提交用戶選擇。但我掙扎着 使它工作,事實上並沒有發生。
<fieldset style="width: 300px;">
<legend>Change Vehicle</legend>
@{Html.Telerik().DropDownList()
.Name("UpdateVehicleTypeNumbers")
.BindTo((IEnumerable<DropDownItem>)ViewData["PlantItemsDropDown"])
.Enable(true)
.ClientEvents(events => events.OnChange("submitVehicle"))
.HtmlAttributes(
new { @id = "vehicle"})
.Render();
}
</fieldset>
我認爲這個錯誤可能在Java代碼中。
function submitVehicle(){
window.location = '../Operator/GPS?jobId=' + @the_job_id + '&vehicleId=' + $("#vehicle").val();
}