Is there a way to Save Column Data with State Save?
Is there a way to Save Column Data with State Save?
I have filters on certain columns and when I turn on state save the values of the filters are gone except for the selected value of the filter drop down. Is there any way to save the filter values that come from the column data?
Here is how I am creating the filters:
[code]
$("#filters th:eq(0), #filters th:eq(1),#filters th:eq(8) ").each(function ( i ) {
this.innerHTML = fnCreateSelect( oTable.fnGetColumnData(i), filterLabels[i] );
$('select', this).change( function () {
oTable.fnFilter( $(this).val(), i );
} );
} );
[/code]
Here is how I am creating the filters:
[code]
$("#filters th:eq(0), #filters th:eq(1),#filters th:eq(8) ").each(function ( i ) {
this.innerHTML = fnCreateSelect( oTable.fnGetColumnData(i), filterLabels[i] );
$('select', this).change( function () {
oTable.fnFilter( $(this).val(), i );
} );
} );
[/code]
This discussion has been closed.