AdvWebGrid cancel

After inserting a row in TTIWAdvWebGrid it goes int edit mode. I am unable to remove the row with cancel.

I tried:
    DeleteRows(ActiveRow,1);
    DeleteRows(ActiveRow+1,1);
    DeleteRows(ActiveRow-1,1);

I always end up with a blank row.

Hi,


Can you please try using RowCount instead of ActiveRow?

Example:
DeleteRows(RowCount, 1);
The insertion is in the middle of the grid.

I have not been able to reproduce this issue.
Can you please provide the following information so I can further investigate this?

- The version of Delphi you are using
- The version of IntraWeb you are using
- The name and version of the browser you are using
- A ready to run sample project that demonstrates the issue
- Exact instructions to reproduce the issue
My mistake. My OnCancel routine was not executing Cancel method.