Arun Sri

Greenhorn
+ Follow
since May 24, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Arun Sri

Hi All,
I am using the <html:cancel/> tag to skip the validation operation on page.
By default <html:cancel/> create a button, I want to create the link instead of buttton for same operation as <html:cancel/>
Anybody have an idea to create a Text link for <html:cancel/> instead of display button
18 years ago
Hi All,
I am using the <html:cancel/> tag to skip the validation operation on page.
By default <html:cancel/> create a button, I want to create the link instead of buttton for same operation as <html:cancel/>
Anybody have an idea to create a link for <html:cancel/> instead of display button
18 years ago
Hi All,
I am facing one problem with Validation framework in struts.
I have 2 buttons (Back & Save) in my JSP page and i want to validate the page only when user modify the page and press the Save button.
If user didn't modify the page and press back button i don't want to validate the page. Is it any attribute thru which i can bypass the validation.

Thx in advance..
18 years ago
Hi All,
I am using the Struts tag in my JSP in which i am using the array of checkbox to which i want to check it on pageload.

JSP Code:
<html:checkbox property="funcSelect" value='Dyanamic' />

FormBean:

Private String[] funcSelect;

/**
* @return Returns the funcSelect.
*/
public String[] getFuncSelect() {
return funcSelect;
}
/**
* @param funcSelect The funcSelect to set.
*/
public void setFuncSelect(String[] funcSelect) {
this.funcSelect = funcSelect;
}

I have checked all the entries in the struts-config all are surely right. because with the array of checkbox i am also using a different single check box and populating that check value from the corresponding ActionClass of the JSP and if the value is same then that checkbox is checked.but when we populate the value of array of checkboxes from the ActionClass and even all the values of the checkboxes are same the array of checkboxes not get checked.......
please provide me the solution if u have....
thx in advance
18 years ago