Hi all..am using <s:select> tag to populate some data dynamically using s:iterator and am able to do that...but the problem is for every new iterator its taking new row..here is my code<table align="center">
<tr>
<s:iterator value="factorValueList">
<s:select cssStyle="width:90px;" label="From" id="empNameId" list="factorValueList" name="selectEmpId" listValue="empId" size="12px"></s:select>
<s:select label="To" id="empIdValue" list="factorValueList" name="toDate" listValue="empName"></s:select>
</s:iterator>
</tr>
</table>
but i need to align like from dropdownlist somespace to dropdownlist
please help me..