0
我使用從數據庫表填充的Kendo DropDownListFor
。我想在最後添加一個選項「添加新...」,該選項將用戶帶到該數據庫表的創建視圖。有沒有辦法做到這一點(最好在MVC助手,而不是在JavaScript中)。將一個「添加新...」選項添加到Kendo DropDownList中
我使用從數據庫表填充的Kendo DropDownListFor
。我想在最後添加一個選項「添加新...」,該選項將用戶帶到該數據庫表的創建視圖。有沒有辦法做到這一點(最好在MVC助手,而不是在JavaScript中)。將一個「添加新...」選項添加到Kendo DropDownList中
沒有JavaScript不可能。如果使用JavaScript,您需要使用change事件,並查看該值是否與列表中最後一項相同,然後導航頁面。像這樣:
function onChangeOfDDl(e){
if(...) { //you condition
window.location.href = "/editRecord/" + this.value()
// this.value() will give you the value for the selected item or the text if no underlying value exists
}
}