テーブルを Dynatable に置き換えたいと考えていますが、そのためには列の特定のグループを非表示および表示できるようにする必要があります。each にグループを与えることで、既存の通常の html テーブルでこれを行います。次に例を示します。
<td class = "group1">cell value</td>
次に、いくつかの非表示と表示の JavaScript 関数があります。
function hideCol(columnClass){
$('table .'+columnClass).each(function(index) {
$(this).hide();
});
$('ul#hiddenCols').append('<li id="'+columnClass+'"><a href="javascript:;" onclick="showCol(\''+columnClass+'\');">Show '+columnClass+'</a></li>');
}
function showCol(columnClass){
$('table .'+columnClass).each(function(index) {
$(this).show();
});
$('li#'+columnClass).remove();
}
$(document).ready(function() {
hideCol("Group2");
hideCol("Group3");
hideCol("Group4");
$('#radio1').click(function() {
/*$(this).parent().addClass("active").siblings().removeClass("active")*/
showCol("Group1");
hideCol("Group2");
hideCol("Group3");
hideCol("Group4");
});
Dynatable を適応させて同様のことを行うことができる合理的に簡単な方法はありますか? Dynatable のそれぞれにクラスを割り当てる方法はありますか?
どうもありがとう、アレックス