How to get a Combobox in a layout?

Hi,

I’m trying to get a Combo box in a cell that I obtained after getting a layout object (In my case: pattern “2E”.)
Next thing I want to do is to place a combobox in the cell known as: layout.cells(“a”);

But how to do it? Layout has methods like “attachDataView”, “attachCarousel”, etc. But no “attachCombo”!

Can anybody show me how this is to be done?

Thanks in advance.

Bertwim

It is uncommon to have a single-combo per cell, so there is no such API
You need to attach an HTML container to the cell and init combo inside, or you need to attach a form to the cell and add combo to a form.

Thanks!