Setting a single cell to be a select box

I am trying to set a single cell to be a select box.

I am trying to use

https://docs.handsontable.com/pro/5.0.1/Core.html#setCellMetaObject

but cannot seem to find any examples. Has anyone had any success with this function?

Got it.

Used the following function

cells: function(row, column) {
var cellMeta = {};
if (row === 0) {
cellMeta.type = ‘dropdown’;
cellMeta.source = myGlobalObject.m_possibleColumns;
}
return cellMeta;
}

As outlined in, http://jsfiddle.net/handsoncode/egL7qa2p/

Thank you for a quick update.

I am closing the topic.