Grid with Combobox and onRowDblClicked-Event

Hey everybody,

I have a problem with including a combobox into my grid…
I am using the eXcell “combo” and it works fine so far, combobox can be opened and values can be selected / changed.

But now I need to add the event “onRowDblCklicked” to my grid so it overwrites the functionality of the combobox to open.
I already tried only to execute code of “onRowDblClicked”-Event when the double-clicked cell is not a cell with the combobox which works fine. But what do I have to execute when combobox is double-clicked?

How do I call the event to open the combobox by code? Does anyone have an idea?

Thank you so far :wink:

PS.: already tried following code:

function called by “onRowDblClicked”:

function onRowDblClickedGrid(rowId, cellId)
{
if(cellId != 1) //1 = cell with combobox
{
// my code
}
else
myGrid.cells(rowId, cellId).getCellCombo().openSelect();
}

Thought that could work but the list opens in the top left corner and on selecting an entry nothing else happens :frowning:

Please, try to use editCell() method. At allows you to open the editor of the selected cell.
docs.dhtmlx.com/doku.php?id=dhtm … t_editcell