-2
A
回答
1
read方法
.Read(read => read.Action("GetAllMessage", "Account").Data("getMsgType")).PageSize(10)
這個功能,將讀取下拉列表值;
function getMsgType()
{
return {
SpecialityIn: $("#MsgType").val()
};
}
$( 「#MSGTYPE」)將是你dropdownListId
下拉的亨德爾change事件對電網onChageEevent
@(Html.Kendo().DropDownListFor(m => m.MsgType)
.Events(events=>events.Change("OnMsgTypeChange"))
.Name("MsgType")
.HtmlAttributes(new { style = "width:200px;font-size:12px;margin-top:6px;" })
.DataTextField("Description")
.DataValueField("MsgType")
.DataSource(source => { source.Read(read => { read.Action("readMsgType", "Account") })})
.OptionLabel("Select")
.Enable(false)
.AutoBind(true)
)
綁定網格,
function OnMsgTypeChange() {
$("#GridMsgList").data("kendoGrid").dataSource.read();
}
+0
它適合我 – user632299
1
你嘗試劍道UI下拉列表事件網格的
http://demos.kendoui.com/web/dropdownlist/events.html
function onSelect(e) {
if ("kendoConsole" in window) {
var dataItem = this.dataItem(e.item.index());
kendoConsole.log("event :: select (" + dataItem.text + " : " + dataItem.value + ")");
}
};
$("#dropdownlist").kendoDropDownList({
dataTextField: "text",
dataValueField: "value",
dataSource: data,
select: onSelect
});
相關問題
- 1. 填充gridview下拉列表
- 2. 填充下拉列表/選擇列表
- 3. 在GridView中填充下拉列表
- 4. 填充下拉列表中選擇angularjs
- 5. 在選擇其他下拉列表時填充下拉列表
- 6. Struts 2填充選擇下拉列表
- 7. Gridview選擇的值不填充下拉列表
- 8. 在kendo模板中創建kendo下拉列表
- 9. 以編程方式選擇kendo下拉列表中的值
- 10. 僅在角度選擇上應用kendo下拉列表樣式
- 11. 如何使Kendo下拉選擇Kendo grid內部始終可見
- 12. 下拉列表填充的GridView
- 13. 下拉選擇Kendo UI Grid Refesh
- 14. 如何選擇Kendo UI下拉列表值?
- 15. 從Kendo柵格數據填充Kendo TreeView
- 16. 使用python在表單中選擇dynamiclly填充下拉列表
- 17. 選擇Kendo UI網格行來填充選擇菜單?
- 18. 如何從SQL中填充GridView下拉列表選項?
- 19. 填充下拉選擇的下拉列表
- 20. 無法填充KENDO中的動態數據下拉
- 21. Gridview中的下拉列表不在編輯模式下填充
- 22. Kendo-UI Kendo-k-filter問題下拉列表
- 23. 根據另一個下拉列表中的選擇填充下拉列表
- 24. 根據另一個下拉列表中的選擇填充下拉列表
- 25. 動態填充從另一個下拉列表中選擇下拉列表
- 26. 從下拉列表中選擇選項使用javascript填充
- 27. 配置多個kendo-ui下拉列表
- 28. Asp net mvc 4 Kendo下拉列表
- 29. 綁定到kendo下拉列表undefined
- 30. MVC驗證與Kendo UI下拉列表
有你試過什麼? – NunoCarmo