How can i make pagging in the right position

How can i make pagging in the right position

dauruk0512dauruk0512 Posts: 14Questions: 3Answers: 0

Hi again datatables !
sorry if you read the title seems same question repeatation but for me no, i have already make search box in the right by overide css here is my csss

/search box in the right datatables/
.dataTables_filter {
width: 50%;
float: right;
text-align: right;
}

and now i have been searching how to make pagging in the right but get style full number, etc all i need is make pagging in the right not style, Thanks

Freddy

Answers

  • tangerinetangerine Posts: 3,365Questions: 39Answers: 395

    Read the docs on positioning:

    The dom parameter in DataTables is used to position the various controls that DataTables adds to the table (filtering, paging etc) in the DOM.

    https://www.datatables.net/extensions/tabletools/initialisation

  • dauruk0512dauruk0512 Posts: 14Questions: 3Answers: 0
    edited June 2015

    Docs make me headaache really cause i'm not ussully in jquery datatables, will you guide me code then give the link to doc why so i can understand a lot, Thanks

  • dauruk0512dauruk0512 Posts: 14Questions: 3Answers: 0
    edited June 2015

    It solved by hack the css

    <code>
    .dataTables_paginate {
    width: 50%;
    float: right;
    text-align: right;
    }
    </code>

    Thanks for your respond without code and explanation +1 for you

This discussion has been closed.