Themeroller not working - Must be missing something basic

Themeroller not working - Must be missing something basic

JowalskiJowalski Posts: 4Questions: 0Answers: 0
edited July 2011 in General
Hi,

I'm sure I'm missing something basic . . . . but I'm not able to figure it out.

Can't get my themeroller styling to apply to my table.

Here is the code:
Head
[code]





<!--[if lt IE 9]>

<![endif]-->






<!-- InstanceBeginEditable name="Scripts_head" -->

$(document).ready(function() {
$('#table_id').dataTable({
"bJQueryUI": true,
"bScrollCollapse": false,
"bAutoWidth": false,
"bPaginate": true,
"sPaginationType": "two_button", //full_numbers,two_button
"bStateSave": true,
"bInfo": true,
"bFilter": false,
"iDisplayLength": 25,
"bLengthChange": true,
"aLengthMenu": [[10, 25, 50, 100, -1], [10, 25, 50, 100, "All"]]
});
$('#table_id2').dataTable({
"bJQueryUI": true,
"bScrollCollapse": false,
"bAutoWidth": false,
"bPaginate": true,
"sPaginationType": "two_button", //full_numbers,two_button
"bStateSave": true,
"bInfo": true,
"bFilter": false,
"iDisplayLength": 25,
"bLengthChange": true,
"aLengthMenu": [[10, 25, 50, 100, -1], [10, 25, 50, 100, "All"]]
});
} );
[/code]

Table #1

[code]



Index
Page

active
pending
archive
edit

content1

picture1



<?php do { ?>

<?php echo $row_Page['Index']; ?>
<?php echo $row_Page['page_name']; ?>

<?php echo $row_Page['active']; ?>
<?php echo $row_Page['pending']; ?>
<?php echo $row_Page['archive']; ?>
<?php echo $row_Page['edit']; ?>


<?php echo $row_Page['content1']; ?>

<?php echo $row_Page['picture1']; ?>


<?php } while ($row_Page = mysql_fetch_assoc($Page)); ?>


[/code]

Thanks in advance!!

Replies

  • fbasfbas Posts: 1,094Questions: 4Answers: 0
    [code]



    [/code]

    in every case for your css and js, you are using parent directory ../ except for jquery_ui. is that intentional?
  • JowalskiJowalski Posts: 4Questions: 0Answers: 0
    @fbas - Good eye . . .. however, that is intentional. The jquery_ui is in a different directory than my other css files.
  • fbasfbas Posts: 1,094Questions: 4Answers: 0
    Your JQuery UI js file is in the same directory as the rest of your js files, though... is that intentional?
  • JowalskiJowalski Posts: 4Questions: 0Answers: 0
    yes - intended it that way.
  • JowalskiJowalski Posts: 4Questions: 0Answers: 0
    Problem solved - It was simple - yet weird. For some reason DW was acting Squirrely and not placing the link properly for the jQuery_UI.

    fbas - you were right.

    Thanks for the help.
This discussion has been closed.