Declined
Last Updated: 12 Jun 2013 23:20 by ADMIN
Imported User
Created on: 08 Nov 2012 19:51
Category: Kendo UI for jQuery
Type: Feature Request
1
Allow to set selectable true/false for specific columns of grid
Sometimes need to disable column selectable option. For example, when column consists checkboxes or action buttons.

$("#users-grid").kendoGrid({
  dataSource: {
    data: createRandomData(20),
    pageSize: 5
  }
  selectable: 'row',
  columns: [
    {
      field: 'UserId',
      title: 'ID',
      template: '<input type="checkbox">',
      selectable: false
    }
    {
        field: "FirstName",
        title: "First Name"
    },
    {
        field: "LastName",
        title: "Last Name"
    },
    {
        field: "Actions",
        title: "Actions",
        template: '<a href="">Delete</a>',
        selectable: false
    }
  ]
});
0 comments