:: Forum >>

Deselect a cell

Hi,

I have my cell model set to single-cell.

If i have a cell selected and do a

table.setURL(url);
table.request();

the cell is still selected. How do I remove the selection of the cell?


dp
Wednesday, September 6, 2006
Yes, this is a bug - the `cell selected` property is not cleared. You should add setCellSelected(false) to the response method -

table.response1 = table.response;
table.response = function(data){
    this.$owner.setCellSelected(false);
    this.response1(data);
};
Alex (ActiveWidgets)
Wednesday, September 6, 2006

This topic is archived.


Back to support forum

Forum search