Mark S
Mark S

Reputation: 869

Can custom text be set for columns.filterable.multi in Kendo grid

I'm using columns.filterable.multi feature for a kendo grid (JQuery). I'm using this feature on a boolean field. The values for the checkboxes has to be true and false for it to work. Looks like crap. Is there way to create custom text for the check boxes so it looks more professional (Approved, Not Approved)?

$("#grid").kendoGrid({
  columns: [ {
    field: "isapproved",
    filterable: {
        multi:true,
        dataSource: [{isapproved: true},{isapproved: false}]
    }
  } ]});

Thanks

Upvotes: 0

Views: 625

Answers (1)

Related Questions