[html:errors] Separation of Global Errors from Specific Errors

2002-11-11 Thread Jerry Jalenak
Any help on this at all? original-post I know I've this answer before, but I cannot seem to find it in the archives. I am setting ActionErrors for both specific properties as well as global errors. In other words, in my action I have errors.add(ActionErrors.GLOBAL_ERROR, new

Re: [html:errors] Separation of Global Errors from Specific Errors

2002-11-11 Thread Kris Schneider
Jerry, I really can't see a way to get at everything *except* the global errors. You should be able to get at *just* the global errors with: html:errors property=%= org.apache.struts.action.ActionErrors.GLOBAL_ERROR %/ Quoting Jerry Jalenak [EMAIL PROTECTED]: Any help on this at all?

[html:errors] Separation of Global Errors from Specific Errors

2002-11-07 Thread Jerry Jalenak
I know I've this answer before, but I cannot seem to find it in the archives. I am setting ActionErrors for both specific properties as well as global errors. In other words, in my action I have errors.add(ActionErrors.GLOBAL_ERROR, new ActionError(myError)); and