I have the following
name: "id", // The key of the model attribute
label: "User Id", // The name to display in the header
editable: false, // By default every cell in a column is editable, but *ID* shouldn't be
cell: Backgrid.UriCell.extend({
orderSeparator: ''})
}, {
Using the Backgrid.UriCell
has
href: formattedValue,
title: formattedValue**,
Is there any way that define href
has "session" + formatedValue
? In other words, how to customize the UriCell
so I can define href
different from title?