they had not confirmed, that must be something new from last year.
they had not confirmed, that must be something new from last year.
all set thank you
thank you that worked...
I have three radio buttons called radiogroup, I would like to have an alert if one of them have not been selected stating "you must select one" and then if one has been selected to call a function called claculate.
any ideas how to write this?
I found this code in onve of your responces to css, it worked.
Can you tell me that the "dsid" & "fieldset" reference so that I can understand the code for the future.
[dsid=radiogroup] fieldset{
text-align: center;
}
I Found tha answer to setting the decimal places
Old
Appery('splitAnswer').val(" $ " + (splitAmt=Math.round(splitAmt*100)/100);
New
Appery('splitAnswer').val(" $ " +(splitAmt=Math.round(splitAmt*100)/100).toFixed(2));
Thank you for your help..