嗨,我对kendo UI非常新,所以在下面的修复中需要帮助,
我正在使用如下的kendo grid UI进行分页:
<script>
$(document).ready(function(){
$("#table3").kendoGrid({
dataSource: {
pageSize: 10
},
pageable: true,
enter code hereheight:300,
sortable: true,
});
$("#table3").show();
});
</script>
当用户在页面中编辑记录时,他被重定向到具有该记录详细信息的编辑页面,因此我需要当前页码,因为在页面中编辑记录后,我需要在保存该记录的详细信息后将用户重定向到同一页面.我在coldfusion页面中使用它.请帮忙.
提前致谢