dataBound : function() {
// row index(순번)
var rows = this.items();
$(rows).each(function () {
var index = $("#행번호가 적용되는 그리드 이름").data("kendoGrid").dataSource.total() - $(this).index();
var rowLabel = $(this).find(".row-number");
$(rowLabel).html(index);
});
}
})