- Provide different files for the different Bootstrap versions
- Bootstrap 3 integration with the small updates required
- Examples for v2 and v3 of Bootstrap. I couldn't find v1 on a CDN so
I've not included an example there
Showing not visible columns and returning the result of fnAddData, now using the actual TR.
Also fixes the problem described at [#24](https://github.com/DataTables/Plugins/pull/24):
> Okay - I agree - there is an issue here. This pull request isn't quite the right fix for the issue, so I'll not pull it in, and I'm not going to look at it myself as it should be addressed in 1.10 - but yes, there is an issue with this existing plug-in that if yourself or anyone else wishes to fix, whereby the added TR is kept, then I'll happily pull it in.
>
> Good to hear that the plug-in works for you though :-)
And [#26](https://github.com/DataTables/Plugins/pull/26):
>I'm afraid this still isn't quite right - it needs to put the hidden cell nodes into an array like fnSetColumnVis does so they can be readied in future: https://github.com/DataTables/DataTables/blob/master/media/src/api/api.methods.js#L1097
Showing not visible columns and returning the result of fnAddData, now using the actual TR.
Also fixes the problem described at [#24](https://github.com/DataTables/Plugins/pull/24):
> Okay - I agree - there is an issue here. This pull request isn't quite the right fix for the issue, so I'll not pull it in, and I'm not going to look at it myself as it should be addressed in 1.10 - but yes, there is an issue with this existing plug-in that if yourself or anyone else wishes to fix, whereby the added TR is kept, then I'll happily pull it in.
>
> Good to hear that the plug-in works for you though :-)
And [#26](https://github.com/DataTables/Plugins/pull/26):
>I'm afraid this still isn't quite right - it needs to put the hidden cell nodes into an array like fnSetColumnVis does so they can be readied in future: https://github.com/DataTables/DataTables/blob/master/media/src/api/api.methods.js#L1097
backgrounds
- Due to a z-indexing error, the background element could actually be
created multiple times by clicking on the element without moving the
mouse. Adding a z-index statement fixes this.
- Problem was that fnDraw( false ) was being called, on new data, which
meant that no filtering or sorting was being applied. Need to call
fnDraw() first, and then fnDraw( false ) to reposition the pages. Not
ideal, but works for now.
- Worth noting that `ajax.reload()` will be a method in DT 1.10's API.
- Simply include the CSS and JS file on the same page as your DataTable
and Foundation files and then initalise your DataTable as per usual:
$('#example').dataTable();