lightbox key is new value of column and text

I’m trying to replicate this example -> dhtmlx.com/docs/products/dhtmlxG … hours.html

It appears for the options, each of the owner’s keys are numeric but when you update the task, it displays the label (e.g. Mark and not 1) after updating the gantt, as expected. I tried to replicate the same behavior for mine except it displayed the key instead of the label. Am I missing something here?

Some of the code:
gantt.config.lightbox.sections = [
{name: “service”, height: 22, map_to: “text”, type: “select”, focus: true, options: [{“key”:0,“label”:""},{“key”:1,“label”:“test”}]}];

Sorry, disregard this. I didn’t notice the templating done in the column config (i.e.
gantt.config.columns = [
{name:“status”, label:“Status”, width:100, template:function(obj){
return gantt.getLabel(‘status’,obj.status);
}}
]

)

Thanks!