我正在使用从数据库表填充的Kendo DropDownListFor
。我想在最后添加一个选项“Add New ...”,它将用户带到该DB表的Create视图。有没有办法做到这一点(最好是在MVC助手,而不是在JavaScript中)。
答案 0 :(得分:2)
没有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
}
}