• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Problem with radiobutton and selection evaluation [SOLVED]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Problem with radiobutton and selection evaluation [SOLVED]


  • Subject: Re: Problem with radiobutton and selection evaluation [SOLVED]
  • From: Dev WO <email@hidden>
  • Date: Wed, 20 Oct 2004 21:12:02 +0200

Sorry for this stupid question... I should have evaluate string correctly with .equals("1")...


Hi,
it might be something very simple but I just can't figure it out by myself...
I have two radiobutton in a form with a value of 1 and 2.
I'd like to make an evaluation within my form validation method to change the 1 or 2 with a specific (non-dynamic) string and make a different calculation depending on the selection value.
here's the code for my validation method:
-----
protected String orderSelection;
protected Object orderType;
protected int orderQuantity;
protected int shippingCost;
protected int totalCost;
protected Object paymentSelection;
protected String paymentType;
public boolean entryIncomplete;


.......

public WOComponent validateOrder()
{
if (orderSelection == "1")
{
if (orderQuantity < 4)
{
orderType = "des cartes à l'unité";
shippingCost = 10;
totalCost = shippingCost+(99*orderQuantity);
}
if ((orderQuantity > 3) && (orderQuantity < 11))
{
orderType = "des cartes à l'unité";
shippingCost = 15;
totalCost = shippingCost+(99*orderQuantity);
}
if (orderQuantity > 10)
{
orderType = "des cartes à l'unité";
shippingCost = 2*orderQuantity;
totalCost = shippingCost+(99*orderQuantity);
}
}
if (orderSelection == "2")
{
orderType = "des cartes par pack de 25";
shippingCost = 15*orderQuantity;
totalCost = shippingCost+(2375*orderQuantity);
}
if (paymentSelection == "3")
{
paymentType = "par chèque";
}
if (paymentSelection == "4")
{
paymentType = "par carte bancaire";
}
entryIncomplete = false;
return null;
}
-----
But it just don't give anything. It seems that the evaluation are all evaluate to false...
But if I just add:
----
orderType = orderSelection;
----
at the end of the method, I get either 1 or 2...So I don't understand why it doesn't evaluate correctly (I mean I don't know how to make it work, I know it's my fault and not Java's one;))


Thanks for your help, I'm still learning;)


Xavier_______________________________________________ WebObjects-dev mailing list email@hidden http://www.omnigroup.com/mailman/listinfo/webobjects-dev


_______________________________________________ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (email@hidden) Help/Unsubscribe/Update your Subscription: This email sent to email@hidden
References: 
 >Problem with radiobutton and selection evaluation (From: Dev WO <email@hidden>)

  • Prev by Date: Databse connection keep alive
  • Next by Date: EOSortOrdering numerical question
  • Previous by thread: Problem with radiobutton and selection evaluation
  • Next by thread: DB2 Support
  • Index(es):
    • Date
    • Thread