我在我的应用程序中使用显示标签。在那我需要根据列标题单击对表格内容进行排序。列标题具有链接导航。相反,我需要在单击表格列标题时提交表单。我们怎样才能实现它。
截至目前,我的应用程序像这样创建表格,
<display:table id="data" name="lstEntities"
sort="external" uid="row" htmlId="rowid" class="tborder"
excludedParams="*" style="width:100%"
pagesize="${pageCriteria.recordsPerPage}" partialList="true"
size="${pageCriteria.totalRecords}" export="false"
requestURI="prestigeBrandListMDA.action">
<display:column property="brandId" sortName="brand.brandId"
sortable="true" titleKey="table.title.brandId"
style="width:100px" />
<thead>
<tr>
<th class="sortable">
<a href="prestigeBrandListMDA.action?d-16544-p=1&d-16544-o=2&d-16544-n=1&d-16544-s=brand.brandId">Sales Brand Id</a></th>
相反,我需要如下链接
<thead>
<tr>
<th class="sortable">
<a href="#" onclick="javascript:submitform(prestigeBrandListMDA.action?d-16544-p=1&d-16544-o=2&d-16544-n=1&d-16544-s=brand.brandId)">Sales Brand Id</a></th>