KendoUI:Grid控件的使用

Posted 无懈可击

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了KendoUI:Grid控件的使用相关的知识,希望对你有一定的参考价值。

<div id=”grid”></div>

<script th:inline=”javascript”>
$(function(){

$(‘#grid‘) .kendoGrid({
dataSource : dataSource, //数据源加载
pageable : { //分页信息选项设置
input : true,
numeric : false,
refresh: true,
pageSizes: true,
buttonCount: 5
},
sortable : true, //可排序
height : 430, //表格高度设置
toolbar : [ //工具条,可使用模板自定义
{
name : "create",
text : "添加"
},
{
template :
kendo.template($("#pageStyleSkinTemplAddTemplate").html())
},
{
template :
kendo.template($("#pageStyleSkinQueryTemplate").html())
}
],
columns : [ //表格列设置
{
field: "fileName", //dataSource中与data对应的域(field)的名称
title: "风格名称", //表头名称
width: 200 //列宽
},
{
field: "updaterId",
title: "更新人",
width: 100
},
{
field: "updateTime",
title: "上传时间",
width: 200,
format: "{0: yyyy-MM-dd HH:mm:ss}" //格式化时间
},
{
command : [ //对行数据的操作
{
text:"编辑", //名称
click: editFunction //自定义点击事件
},
{
text:"下载",
click: loadFunction
},
{
name : "destroy", //调用dataSource中的删除方法
text : "删除"
}
],
title : "操作", //表头名称
width : "250px" //列宽
}
],
editable :
{
mode : "popup", //弹出窗口的编辑模式(行内编辑:”inline”)
},
messages : //分页条部分显示中文信息的设置
{
display : "Showing {0}-{1} from {2} data items",
empty : "No data"
}

});


});
</script>

以上是关于KendoUI:Grid控件的使用的主要内容,如果未能解决你的问题,请参考以下文章

如何使用布尔过滤器设置 KendoUi Grid 样式

如何在使用 ODATA 类型的 KendoUI Grid 更新数据之前要求确认?

如何使用它的 ASP MVC Complete Wrapper 设置 KendoUI Grid 的高度

KendoUI Grid 服务器分页

用于选择的 KendoUI Grid Ajax 绑定参数

KendoUI Grid:自定义编辑表单,日期选择器返回错误格式