Michael Slack - 2003-05-13

Logged In: YES
user_id=496000

Whoops - the 'if' statement should be:
// ...MGS...
// check to see if delete event and navnext
event needs to be generated
if ((webEvent != null) && (webEvent instanceof
DeleteEvent) && // is delete event
("true".equalsIgnoreCase(navDeleteNext)) &&
// want to goto next row
((request.getAttribute("errors") == null) ||
// didnt have error...
(((Vector)
request.getAttribute("errors")).size() == 0))) {
logCat.info("Creating navNext event...");
webEvent = new
BoundedNavNextEventImpl(table, config);
}
// ...MGS...
- forgot that I added a check to see if an error had been
thrown in the delete event and the check for errors was wrong.