Hi,
I would like to change the background color of the selected row (double click).
The following code does not work.
I would like to use setAlternateRecordStyles(true) as well.
Thanks a lot for your help!
I would like to change the background color of the selected row (double click).
The following code does not work.
Code:
overviewList.addRecordDoubleClickHandler(new RecordDoubleClickHandler() { public void onRecordDoubleClick(RecordDoubleClickEvent event) { event.getRecord().setAttribute("STYLE", "background-color:#FF0000;"); } });
Thanks a lot for your help!
Comment