Re: Catching Matching Values in User TextField against EO
Re: Catching Matching Values in User TextField against EO
- Subject: Re: Catching Matching Values in User TextField against EO
- From: George Domurot <email@hidden>
- Date: Wed, 23 Apr 2003 09:26:04 -0400
On Wednesday, April 23, 2003, at 08:39 AM, Jonathan Fleming wrote:
if (results.count() > 0) {
newImagePosition.equals("reset");
if (newImagePosition.equals("reset")) {
throw new NSValidation.ValidationException("The
position you set for this image: " + imagePosition() + " is already
taken. Please choose another");
}
I believe you may want this to be:
if (results.count() > 0)
throw new NSValidation.ValidationException("The
position you set for this image: " + imagePosition() + " is already
taken. Please choose another");
-G
_______________________________________________
webobjects-dev mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/webobjects-dev
Do not post admin requests to the list. They will be ignored.