2007/9/19, James Cicenia <[EMAIL PROTECTED]>:
>
> Hello -
>
> I am trying to use the EO validation frameworks and am a bit confused.
>
> I would like a person to be able to enter either a number, or a
> percent with the percent sign.
> But then I need to strip this out.
>
> Do I have to create a "string" instance variable or can I somehow use
> validatePercentLoad in the EO?


% is a String value, so you must parse the string:

<wo:WOTextField value="$str" />

public String str;
public boolean success;

public WOComponent control(){
try{
success = true;
    if(str.indexOf("\u0025") < 0) //No percertage
      {
          Integer i = new Integer(str);
          //do what you want wth the int
      }
      else
       {
           String parsedStr = str.replaceAll("\u0025");
           Integer i = new Integer(parsedStr);
       }
} catch(NumberFormatException e)
{
   //raise the exception for the validation
success = false;
}

if(!success)
    return null; //you need this for the validation

return pageWithName(null);
}

> Thanks,
> James Cicenia
>
> _______________________________________________
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list      (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/ildenae%40gmail.com
>
> This email sent to [EMAIL PROTECTED]
>



-- 
Daniele Corti
AIM: S0CR4TE5
Messenger: [EMAIL PROTECTED]

--
Computers are like air conditioners -- they stop working properly if you
open
WINDOWS

-- 
What about the four lusers of the apocalypse? I nominate:
"advertising", "can't log in", "power switch" and "what backup?"
--Alistair Young
 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to