We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Problem in deleting row in GDBG

Hi, I am using GDBG. I use the following code to delete a row, when the user double clicks on the grid. but its not deleting the first row or the last added row. DataTable table = (DataTable) syfGrid.DataSource; int curRowIndex = syfGrid.CurrentCell.RowIndex; if (syfGrid.Model.RowCount > 1 && curRowIndex > 0 && syfGrid.Model.RowCount > curRowIndex ) { int recNumber = syfGrid.Binder.RowIndexToPosition(curRowIndex); syfGrid.Binder.RemoveRecords(recNumber, recNumber); } else { Console.WriteLine("No More rows / CurCell is not set"); } Pls throw a light onthis. Many Thx Ram

Loader.
Live Chat Icon For mobile
Up arrow icon