Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
790
Delete Error: Unable to Delete Row Exception in Drag Drop of Multiband Grid
posted

Hi, I am getting the exception while performing drag drop on multiband grid. I am dragging a row on to the other row and deleting the dragged row. I am attaching the sample project which has the issue. In the sample just drag "Employee 3" over to "Employee 1" you will get the exception. Can some one pls help?

DragDropErrorDemo.zip
Parents
  • 469350
    Verified Answer
    Offline posted

    Hi,

    The error message you are getting here is coming from the BindingManager. Basically, your data source is rejecting the deletion - it's nothing to do with the grid.

    It's probably because your data source and the Children property are using List<T> instead of BindingList<T>. List<T> is very limited as a data source.

Reply Children