I am not able to enter text in table data
-------------------------------------------
Key: WW-3131
URL: https://issues.apache.org/struts/browse/WW-3131
Project: Struts 2
Issue Type: Task
Components: Other
Affects Versions: 2.0.6
Environment: OS: windows
software: struts 2.0.6, tomcat 6.0, jdk 1.6
Reporter: Prashant singh
Priority: Critical
Hi I am trying to input text in a data table. I am using the following code
<tr>
<th>#</th>
<th>Product</th>
<th>Qty</th>
<th>Unit Price</th>
<th>Allocation Instructions</th>
<th>Label Instructions</th>
<th>Description</th>
<th>Override Reason</th>
</tr>
<s:iterator value="lineItems" status="status">
<s:component template="/components/textcell.ftl" value="%{#status.index}" />
<s:select name="termsId" list="genericList" listKey="id" listValue="name" />
<s:textfield name="test" size="1"/>
<s:textfield name="test" size="1"/>
<s:textfield name="test" size="1"/>
<s:textfield name="test" size="1"/>
<s:textfield name="test" size="1"/>
<s:textfield name="test" size="1"/>
</s:iterator>
<s:submit value="Create Sales Order" align="center">
<s:param name="colspan" value="%{8}" />
<s:param name="align" value="%{'center'}" />
</s:submit>
</s:form>
Actually only the heading <tr><th> are visible but no rows where I can enter data.
Please advise.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
|