Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
deleting row in edittable
have table with 10 columns across
how do I 'DEL' a row in one keystroke
the edittable is not databound
I've looked thru the doco and blogs and must be missing the trick.
(Note: doco - is Australian for documentation).
how do I 'DEL' a row in one keystroke
the edittable is not databound
I've looked thru the doco and blogs and must be missing the trick.
(Note: doco - is Australian for documentation).
Comments
Check the AllowDeletions property:
https://wiki.srpcs.com/display/EditTableControl/AllowDeletions
Also, you could capture the Del keystroke and use the DeleteRecords method:
https://wiki.srpcs.com/display/EditTableControl/DeleteRecords
If you want to be able to delete a row while still in edit mode, then you need to handle the table's OnChar event to capture the delete key and then call the DeleteRecords as Frank suggested.