I have a “state” column in my grid - the data for this is numeric - is there a way to have the contents of the cell mapped to a text value (in a dropdown).
I am fimilar with the selectFilter, which allows selection of a text value
{
width: 160, id: "status",
header: [{ text: "Status" }, { content: "selectFilter" }], editorType: "select",
options: ["Initial", "Assigned", "In Progress", "Done"]
}
However, is there an abilty similar to Gantt whereby you can load an array for selection - showing the “label” or “text” and storing the “key” or “value”?