Hi,
Recently I find the deleted row is add a cross line even I set autoCommit to true.
My Infragistics verison is 12.2.20122.1021.
I make a demo to show this issue. Please see the attach file for details.
Thanks.
Hello Jeffrey,
Thank you for reporting this.
The issue has been introduced after the latest service release of v12.1 ( build 2059)
A development issue has been created regarding this behavior
125209 - The deleted row is shown with a cross line when autoCommit = true
As a temporary workaround you can handle rowDeleted event :
rowDeleted: function(evt, ui){
$("#grid1").igGrid("commit");
}
Hope this helps.