Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 487 Bytes

label.md

File metadata and controls

25 lines (23 loc) · 487 Bytes

Label field

This is a text label for non-editable values (e.g. timestamp, creation time...etc)

Special properties of field

There is no any special properties.

Usage

{
    type: "label",
    label: "Created",
    model: "created"
}

Or you can format the value with moment:

{
    type: "label",
    label: "Created",
    model: "created",
    get: function(model) { 
      return model && model.created ? moment(model.created).format("LLL") : "-"; 
    }
}