3.2.0

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
September 6,
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)
September 6,

This topic is archived.

See also:


Back to support forum