Themeroller not working - Must be missing something basic
Themeroller not working - Must be missing something basic
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!!
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!!
This discussion has been closed.
Replies
[/code]
in every case for your css and js, you are using parent directory ../ except for jquery_ui. is that intentional?
fbas - you were right.
Thanks for the help.