문제

Please refer to the following image: Figure No. 1

I'm trying to move the tableTools buttons (Copy, Excel, CSV) down a little bit so that it looks like the buttons are at the same level as the Search Box... I've tried all kinds of sDom parameters without success.

Here's my current initialisation code:

 $(document).ready(function () {
            $('#myTable').dataTable({
                "bSort": false,
                "bPaginate": false,               
                "sDom": 'T<"clear">lfrtip',
                "oTableTools": {
                    "sSwfPath": "../../Scripts/swf/copy_csv_xls.swf",
                    "aButtons": ["copy",
                                {
                                    "sExtends": "xls",
                                    "sButtonText": "Excel",
                                    "sFileName": "*.xls"
                                },
                                "csv"]
                }
            });
        });
도움이 되었습니까?

해결책

Just removed tableTools positioning... and it is working now.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top