bJQueryUI: true not working in my code
bJQueryUI: true not working in my code
Madhu12
Posts: 32Questions: 0Answers: 0
Hi,
This is my day one with jQuery. I am using Data Table to display data in my HTML table.
I am using the following config options.
[code]
$("#myTable_id").dataTable({
bJQueryUI: true,
sPaginationType: "full_numbers"
});
[/code]
I am able to see the paging details, but I am unable to see the proper UI like in the third screenshot in the link below (though I have used bJQueryUI: true).
http://www.codeproject.com/Articles/194916/Enhancing-HTML-tables-using-a-JQuery-DataTables-pl#Introduction
I learn that ThemeRoller is used to accomplish this (http://datatables.net/usage/features). Should I download and include ThemeRoller related files in project or does dataTable plugin internally contains ThemeRoller's code and style.
This is my day one with jQuery. I am using Data Table to display data in my HTML table.
I am using the following config options.
[code]
$("#myTable_id").dataTable({
bJQueryUI: true,
sPaginationType: "full_numbers"
});
[/code]
I am able to see the paging details, but I am unable to see the proper UI like in the third screenshot in the link below (though I have used bJQueryUI: true).
http://www.codeproject.com/Articles/194916/Enhancing-HTML-tables-using-a-JQuery-DataTables-pl#Introduction
I learn that ThemeRoller is used to accomplish this (http://datatables.net/usage/features). Should I download and include ThemeRoller related files in project or does dataTable plugin internally contains ThemeRoller's code and style.
This discussion has been closed.
Replies
The following link helped.
http://datatables.net/forums/discussion/5851/using-themeroller-/p1
Thanks!