Combo box template always visible in grid, ignores mouseover css
I have the following code on my page to put a combo box in the 1st column of the grid (in AW 2.5.5).
My problem is that the combo box is visible on the grid always, and also does not get highlighted as per the css:
You can select items and the popup list shows and disappears normally (i've seen lots of posts about that issue, just clarifying that this is not the same issue), but you always see the combo box, even when not editting the cell in question, rather than simply displaying the value that is currently chosen.
Mousing over the cells (or row) also do not change the color of the combo boxes, so I'm left with a column that looks distinctly different from all the rest of the grid (which uses the default cell templates).
myGrid.setCellTemplate(new AW.Templates.Combo,1);
var dl = ['Default Writer','Default Writer 2'];
var dlist = new AW.UI.List;
dlist.setItemText(dl);
dlist.setItemCount(dl.length);
myGrid.setPopupTemplate(dlist,1);
myGrid.setCellEditable(true);
My problem is that the combo box is visible on the grid always, and also does not get highlighted as per the css:
.aw-mouseover-row {background-color:#ddf4ff;}
.aw-mouseover-cell {background-color:#b7e7ff;}
You can select items and the popup list shows and disappears normally (i've seen lots of posts about that issue, just clarifying that this is not the same issue), but you always see the combo box, even when not editting the cell in question, rather than simply displaying the value that is currently chosen.
Mousing over the cells (or row) also do not change the color of the combo boxes, so I'm left with a column that looks distinctly different from all the rest of the grid (which uses the default cell templates).
John
December 23,