Hi All,
I am new to struts programming and trying to learn struts from the tutorials
provided online.
First Let me descibe my application.
 I am using html inside  a jsp page for the frontend. I have three buttons
in this page. They are as "START" , "STOP", and "CHANGE". I have different
actions for each buttons and I have mapped this actions to respective
methods in the action class. My problem is that I am not able to design the
page. I  need these three buttons in the same row But  I am not able to do
so. I tried to put these buttons inside a tables but still All buttons are
coming vertically and  not horizontally. I will provide you my both html
script.
!) One without using tables
<%@ taglib prefix="s" uri="/struts-tags" %>
<s:form action="Workload">
<s:textfield label="Load"  name="load">
<s:textfield label="Duration" name="time">
<s:submit action="start" method="StartWorkload" value="START"/>
<s:submit action="stop" method="StopWorkload" value="STOP"/>
<s:submit action="change" method="ChangeWorkload" value="CHANGE"/>
2) One with using Tables
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<title>Struts Application</title>
<body style="background-color:  #CBCE8A"> 
<table frame="below" align="center" rules="rows">
<tr>
<s:form action="Workload">
        <table>
                <tr>
                        <td><s:textfield label="Load"  
name="load"></s:textfield></td>
                </tr>
                <tr>
                        <td><s:textfield label="Duration" 
name="time"></s:textfield></td>
                </tr>
                <tr>
                <td><s:submit action="start" method="StartWorkload" 
value="START"/></td>
                <td><s:submit action="stop" method="StopWorkload" 
value="STOP"/></td>
                <td><s:submit action="change" method="ChangeWorkload"
value="CHANGE"/></td>
                </tr>
        </table>
        
</s:form> 
</tr>
</table>
</body>
</html>


By using both Scripts i am getting same result with all buttons vertically.
I need these buttons to be in a single horizontal line.
Please Help me out of this!!!!!
Thanks in advance!
-- 
View this message in context: 
http://old.nabble.com/Alligning-multiple-buttons-in-a-single-row.-tp26284283p26284283.html
Sent from the Struts - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org

Reply via email to