programgirl
Programmer
I have the following jsp struts code that consists of three buttons and a link.
The three buttons are located on the bottom left-hand-side of a form, and I've managed to locate the link on the right-hand-side of the form.
What I want to do right now is to have the buttons and the link on the same line, which is not the case right now.
Is there any way to do that without having the link aligned outside the form?
Here's my code:
Does anyone know how to do this?
The three buttons are located on the bottom left-hand-side of a form, and I've managed to locate the link on the right-hand-side of the form.
What I want to do right now is to have the buttons and the link on the same line, which is not the case right now.
Is there any way to do that without having the link aligned outside the form?
Here's my code:
Code:
<tr height="50">
<td colspan="5">
<nobr>
<html:submit property="submitButton" styleClass="button" value="Get Report" onclick="return(doReportSubmit(document.searchReportForm, 'report', 1));"/>
<html:submit property="submitButton" styleClass="button" value="Create Spreadsheet" onclick="return(doReportSubmit(document.searchReportForm,'spread', 1));"/>
<logic:equal scope="session" name="user" property="role" value="administrator">
<html:submit property="submitButton" value="Edit View" styleClass="button" onclick="return(doReportSubmit(document.searchReportForm,'view', 1));"/>
</logic:equal> <logic:equal scope="session" name="user" property="role" value="administrator">
<span valign="bottom" style="float:right"><a href="javascript:popUp('pages/searchEngineInfo.htm');"> View Page Info </a></span>
</logic:equal>
</nobr>
</td>
</tr>
Does anyone know how to do this?