I am converting Infragistics 2010 v2 CLR3.5 to Infragistics 2014 v2 using 4.5 CLR using Visual Studio 2013 Professional Update 4. I am getting following error while building the project. Please reply immediately..........
Error 236 Argument 1: cannot convert from 'Infragistics.Web.UI.GridControls.RowDeletedEventArgs' to 'Infragistics.Web.UI.GridControls.RowEventArgs'
Below error is there while fixing the code:
private void grid_DeleteRowBatch(object sender, Infragistics.Web.UI.GridControls.RowDeletedEventArgs e) { StoreGridChanges(e); }
Hi,
It seems like StoreGridChanges(e); accepts arguments of type 'Infragistics.Web.UI.GridControls.RowEventArgs', while e is of type Infragistics.Web.UI.GridControls.RowDeletedEventArgs
I suggest that you modify your StoreGridChanges method to something similar:
public void StoreGridChanges(Infragistics.Web.UI.GridControls.RowDeletedEventArgs e) { }
HIi,
I'm just following up to see if the suggested helped you or if you have further questions on the issue.