위 파라미터는 kendo grid 내에서 셀렉트된 변수를 저장하여 출력해주는 함수이다. 사용방법은 kendoGrid 의 columns 파라미터 내에서 selectable 을 오출하여 select 를 적용해야되고 columns: [ { selectable: true, width: "50px" }, { field:"ProductName", title: "Product Name" }, { field: "UnitPrice", title:"Unit Price", format: "{0:c}"}, { field: "UnitsInStock", title:"Units In Stock"}, { field: "Discontinued"}] }); 다음으로는 dataSource 의 schema 에 model 파라미터를 사용해주..