Can you help me with a simple task? I'm trying to add a border to a jQuery datatable without including the search bar. I attempted using CSS, but the border ended up encompassing the search bar as well.
.table1{
border-width: 1px;
border-style:solid;
border-color: #A1A1A1;
}
$.fn.dataTableExt.oJUIClasses.sWrapper = "table1";
You can find my example in this fiddle: http://jsfiddle.net/X65td/