Can't get the pagination buttons to work

Can't get the pagination buttons to work

CordellCahillCordellCahill Posts: 2Questions: 0Answers: 0
edited March 2013 in General
I've tried many things, including looking at code that works. The buttons actually work, but the button style isn't showing up. When inspecting the element I get
[code]First[/code]

here is my code
[code] $(document).ready( function () {
oTable = $('#library_v4').dataTable({

'bProcessing': true,
'bServerSide': true,

'sDom': '<\"fg-toolbar ui-toolbar ui-widget-header ui-helper-clearfix\"flp<\"clear\">>rt<\"fg-toolbar ui-toolbar ui-corner-bl ui-corner-br ui-widget-header ui-helper-clearfix\"ip<\"clear\">>',

'sPageButton': 'paginate_button',
'sPageButtonActive': 'paginate_active',
'sAjaxSource': $DataTableSource,
'sPaginationType': 'full_numbers'


});
} );[/code]

Replies

  • CordellCahillCordellCahill Posts: 2Questions: 0Answers: 0
    solved. after many many days of staring at code. It needed the line

    'bJQueryUI': true,
This discussion has been closed.