I need to have a column (the last one) in the grid not have any text displayed. I tried putting the title to an empty string but it did not work. Solutions? Code is below:
function init() {
$('#dealerDetailsGrid').kendoGrid({
dataSource: {
type: "json",
transport: {
read: "GetDealerDetails"
},
schema: {
data: "data",
total: "total"
},
pageSize: 10
},
sortable: true,
pageable: true,
columns: [
{ field: "Oracle", title: "Oracle #" },
{ field: "Dealer" }, { field: "DealerType", title: "Dealer Type" },
{ field: "City" }, { field: "State" }, { field: "Status" },
{ field: "Remove", title: "" }
]
});
}