jQuery dataTables - 数据表中的position元素

时间:2012-04-26 11:19:38

标签: jquery datatables jquery-datatables

如何在数据表行后面放置一个元素,我想在输入搜索字符串时显示一些消息。我正在使用具有UI和固定高度的数据表。因此,在键入搜索字符串行时会增加。在那个地方,我想显示放置在绝对位置的自定义消息。我的数据表数据来自服务器。这就是我需要的enter image description here

enter image description here

“Srikanth”消息在数据表数据驻留在页面本身时完美显示。

这是我的代码

    <table id="dyapasrikanth" class="display">
    <thead>
            <tr><td>......</tr></thead><tbody></tbody></table>
<h2>Dyapa Srikanth</h2>

脚本

 $('#dyapasrikanth').dataTable({
                    "sScrollY": 450,
                    "iDisplayLength": 50,
                    "bPaginate": false,
                    "bLengthChange": false,
                    "bJQueryUI": true,
                    "sAjaxSource": "<%=basePath%>contacts.action?action=view"
                    "sPaginationType": "full_numbers",
                    "bProcessing": true});
var winH = $(window).height(); 
                var winW = $(window).width(); 
                var centerDiv = $('#message'); 
                centerDiv.css('top', winH/2-centerDiv.height()/2); 
                centerDiv.css('left', winW/2-centerDiv.width()/2);

对不起我的英文,

0 个答案:

没有答案