How can I set the class on the ‘search’ field on the datatables plugin please. I’m using the Jquery UI theme as well.
$('#idSmovData').dataTable( {
"sScrollY": "600px"
,"bPaginate": false
,"bFilter": true
,"bJQueryUI": true
,"bInfo": false
,"bSort": false
});
You can set the search filter wrapper div style class using
oStdClassesAnd than use regular css to target the search input field:
Please refer to the datatables styling section for more details.