----- Original Message -----
Sent: Tuesday, September 11, 2001 12:46
AM
Subject: javascript in
<html:button>
I am using struts 1.0, I am trying to use javascript to
pick user privilege from a available privilege list to selected list
like following :
<html:button property="addrole" value="
>> " /><br><br>
<html:button property="del" value="
<< " />
but
it doesn't work, I remember on struts home page it mention that struts
1.0 doesn't support javascript things even <html:button> has
onclick attribute,
who might know something about it , how to get
around it?
Thanks
Frank
-----Original Message-----
From:
Julia Yang [mailto:[EMAIL PROTECTED]]
Sent: Monday, September 10, 2001 10:26 AM
To: [EMAIL PROTECTED]
Subject: Does struts validate input field in JSP type by itself
?
Hi, all
Do you know if struts
validate input fields in JSP by itself, which has
matched getter and setter methods in bean,?
For example: You have field called companyID in JSP and in you
xxxForm
bean you have
int
companyID();
public int getCompanyID(){
return this.companmyID;}
public void
setCompanyID(int newCompanyID) {
this.companyID =
companyID}
My question is: if I put a String in
JSP companyID field, can I let
struts tell me
error message that companyID has to be integer ? How ?
Thanks
Julia