default filter for a column
GoogleCodeExporter opened this issue · 1 comments
GoogleCodeExporter commented
I am trying to set an initial value for a filter. We are able to do this with
datatables oSearch variable but I can't see how to do this on a specific column.
<script type="text/javascript">
$(document).ready(function() {
$('#offersReachedReport').dataTable(
{
"bProcessing": true,
"bServerSide": true,
"oSearch": {"sSearch": "Initial Search"},
"sAjaxSource": "/InternalUse/utilities/offerReachedReport_action.cfm",
"fnServerData": function( sUrl, aoData, fnCallback ) {
$.ajax( {
"url": sUrl,
"data": aoData,
"success": fnCallback,
"dataType": "json",
"cache": false
});
}
}
).columnFilter(
{
aoColumns: [
null,
null,
null,
null,
null,
null,
null,
{ type: "date-range" },
null
]
}
);
} );
</script>
Original issue reported on code.google.com by henkem...@gmail.com
on 30 Jan 2014 at 9:31
GoogleCodeExporter commented
You will need to manually set valuse using a aoPreSearchCols fields, e.g.:
fnSettings().aoPreSearchCols[ i ].sSearch values
In addition, you can set values in the filter using standard jQuery.
See:
http://jquery-datatables-column-filter.googlecode.com/svn/trunk/serverSideInitFi
lter.html
Original comment by joc...@gmail.com
on 4 Feb 2014 at 12:35
- Changed state: Fixed