how to add progress bar in specific cells this table?
how to add progress bar in specific cells this table?
post98
Posts: 2Questions: 0Answers: 0
hi
how to add progress bar in specific cells this table?
[code]
$(document).ready(function () {
var oTable = $('.table').dataTable({
"bProcessing": true,
"aaData": [
["Trident", "how to add progress bar in this cell", "Internet Explorer 4.0", "Win 95+", "4", "X"],
["Trident", "how to add progress bar in this cell", "Internet Explorer 5.0", "Win 95+", "5", "C"],
["Trident", "how to add progress bar in this cell", "Internet Explorer 5.5", "Win 95+", "5.5", "A"],
["Trident", "how to add progress bar in this cell", "Internet Explorer 6", "Win 98+", "6", "A"],
["Trident", "how to add progress bar in this cell", "Internet Explorer 7", "Win XP SP2+", "7", "A"],
["Trident", "how to add progress bar in this cell", "AOL browser (AOL desktop)", "Win XP", "6", "A"]]
});
});
progressBar(75, $('#progressBar'));
Striped Table
<!-- End .title -->
#
ProgressBar
Last Name
Username
Cpu
First Name
[/code]
how to add progress bar in specific cells this table?
[code]
$(document).ready(function () {
var oTable = $('.table').dataTable({
"bProcessing": true,
"aaData": [
["Trident", "how to add progress bar in this cell", "Internet Explorer 4.0", "Win 95+", "4", "X"],
["Trident", "how to add progress bar in this cell", "Internet Explorer 5.0", "Win 95+", "5", "C"],
["Trident", "how to add progress bar in this cell", "Internet Explorer 5.5", "Win 95+", "5.5", "A"],
["Trident", "how to add progress bar in this cell", "Internet Explorer 6", "Win 98+", "6", "A"],
["Trident", "how to add progress bar in this cell", "Internet Explorer 7", "Win XP SP2+", "7", "A"],
["Trident", "how to add progress bar in this cell", "AOL browser (AOL desktop)", "Win XP", "6", "A"]]
});
});
progressBar(75, $('#progressBar'));
Striped Table
<!-- End .title -->
#
ProgressBar
Last Name
Username
Cpu
First Name
[/code]
This discussion has been closed.