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
535
delete row
posted

ok, this seems like a pretty dumb question...I ahve row indicators, I can click on one to highlight the row, how do I delete a row?  right-click does nothing, delete key doesn't seem to work either.

Feature Picker::Updating::Allow Row Deleting = Allow

Peter

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

    Hi Peter,

    The Delete key should work if AllowDelete is turned on.

    Perhaps something else in the code is turning this off. Maybe you are setting the AllowDelete property to False or Default in code. Or perhaps you are loading a layout or a preset into the grid that does this?

    Another thing that might prevent the row from being deleted is if you are handling the BeforeRowsDeleted event and cancelling it.

    One last thing is that if you data source does not support deleting, then obviously the grid can't support it.

Children