我需要在数据表中隐藏一个链接,当表单在弹出窗口中提交。我在数据表中有Approve链接。它们只显示特定的行(batchInfo行)。当我点击一个弹出窗口打开的链接,当我完成表单提交在弹出窗口,我想要的链接消失(隐藏它)。
数据表内的脚本:
<s:if test="%{(batchInfo)}">
<td align="center" onclick="openapproverejectfile('<s:propertyvalue="#approvalURL"/>')">
<a id="ApproveRejectCPlink" href="#"><u>Approve</u></a>
</td>
</s:if>
<s:else>
<td></td>
</s:else>
My data table:
$(document).ready(function() {
searchresults = $("#searchclientfileresults").dataTable({
"sScrollX" : "100%",
"sScrollY":"220px",
"bSort":true,
"bAutoWidth" : false,
"bPaginate" : true,
"aLengthMenu": [[5, 10, 15, 20, -1], [5, 10, 15, 20, "All"]],
"sPaginationType" : "full_numbers",
"bLengthChange" : true,
"bFilter" : true,
"bInfo" : false,
"oLanguage": {
"sEmptyTable": "No data available in table"
},
"aoColumns": [
null,
null,
null,
null,
null,
null,
null,
null
]
});
});
我如何隐藏在表单上的链接提交在一些弹出式内部的数据表??
$(document).ready(function () {
$('#searchclientfileresults tr').click(function (event) {
$('#searchclientfileresults tr').data('clicked', true); //select the row clicked in datatable
}); });