label
Special properties of field
Usage
{
type: "label",
label: "Created",
model: "created"
}{
type: "label",
label: "Created",
model: "created",
get: function(model) {
return model && model.created ? moment(model.created).format("LLL") : "-";
}
}Last updated
Was this helpful?