반응형
위 파라미터는 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 파라미터를
사용해주어야한다.
dataSource: {
pageSize: 10,
transport: {
read: {
url: "https://demos.telerik.com/kendo-ui/service/Products",
dataType: "jsonp"
}
},
schema: {
model: {
id: "ProductID"
}
}
위 두개를 사용하고 나서 selectedKeyNames( ) 파라미터를 사용하여
model 내에 있는 값을 저장하고 출력할 수 있다
위에 있는 코드의 full version 은 아래 링크에 있다.
아래 링크는 kendoGrid 에 저장된 데이터를 추출하는 방법이다
반응형
'Front End > Kendo UI' 카테고리의 다른 글
[Kendo] kendo grid 내의 데이터 클릭시 해당 링크로 이동 template 사용 (0) | 2020.10.26 |
---|---|
[Kendo UI] [Kendo UI] Kendo UI grid nested json 처리하는 쉬운 법 (0) | 2020.10.23 |
[Kendo UI] Kendo UI grid json 포멧 처리하는 법 (0) | 2020.10.23 |
[Kendo UI] Kendo UI grid data source 하는 법과 주의할 것 (1) | 2020.10.22 |
[Kendo UI 설치] kendo UI 데모 버전 초기 설치 및 적용 방법 in Spring (2) | 2020.10.07 |