Ryan Shine
Ryan Shine

Reputation: 522

How to move show entries column to below of datatables

i am trying to do the load on demand by using datatables on my mvc page

if you see in the picture, the show entries is on the top of the datatables

enter image description here

can i move the show 10 entries to the below of the showing 1 to 10 entries there?.

the following is my html code

        <div class="dataTables_hideonload m-b-10">
            <table class="table table-condensed table-vertical-middle table-layout-fixed table-noajax" id="tableCategoryList" width="100%">
                <thead>
                    <tr>
                        <th class="text-left">Category ID</th>
                        <th class="text-left">Category Name</th>
                        <th class="text-left">Sort order</th>
                    </tr>
                </thead>
                <tbody></tbody>
            </table>
        </div>

Upvotes: 1

Views: 3913

Answers (1)

Mayank Pandeyz
Mayank Pandeyz

Reputation: 26268

You can re-position it by using:

"dom": '<"top"i>rt<"bottom"flp><"clear">'

Re-positioning reference

Upvotes: 2

Related Questions