datatable bug - select:'row'

Hi,

http://webix.com/snippet/941969d1

if you uncomment the : select:‘row’, we have a script error.
I think, it’s trying to select the deleted row.

Is this a bug?

Hello,

If you want to attach a “click css” function, you should block default onClick behavior (with data items clicking means selection while an item no longer exists). Just return false.

onClick:{
	webix_icon : function(id, ev, node) {
               this.remove(ev.row);
               return false;
	}
}

thanks!