У меня есть следующий код в JSP.
<table>
<tr>
<s:if test="%{#session['s_userRole']=='Supervisor'}">
<th>Select</th>
</s:if>
<th>Job ID</th>
<th>Upload Date</th>
<th>File Name</th>
<th>Status</th>
<th>Notes</th>
</tr>
<s:iterator value="jobs">
<tr>
<s:if test="%{#session['s_userRole']=='Supervisor'}">
<td><s:checkbox name="check" /></td>
</s:if>
<td><s:property value="jobId" /></td>
<td><s:property value="uploadDate" /></td>
<td><a href=fileName><s:property value="fileName" /> </a></td>
<td><s:property value="status" /></td>
<td><a href='javascript:onClick=alert("Note goes here")'>View
Note</a></td>
</tr>
</s:iterator>
</table>
Но он отображает флажок в другой строке. Как мне перенести его в один ряд?