向Kendo DropDownList添加“添加新...”选项

时间:2013-10-01 06:42:08

标签: drop-down-menu kendo-ui

我正在使用从数据库表填充的Kendo DropDownListFor。我想在最后添加一个选项“Add New ...”,它将用户带到该DB表的Create视图。有没有办法做到这一点(最好是在MVC助手,而不是在JavaScript中)。

1 个答案:

答案 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
    }
}