Roadmap

DataTables is a constantly evolving project, with new capabilities and options regularly being added to the library and its supporting plug-ins. Rather than new features being added to the core on-the-fly, there is a long term plan for DataTables and how we get there is well mapped out. There are a lot of exciting developments planned for DataTables and your feedback on where DataTables is going is always very welcome.

If you are interested in sponsoring DataTables development, please do get in touch to discuss how your assistance can help DataTables move forwards.

Mission statement

To enhance the accessibility of data in HTML tables.

Note that the word "accessibility" in this context is used to refer to data consumption by all users of an HTML table. As a result, DataTables is focused on ensuring that data is beautifully presented, in a readable and usable manner for end users, while presenting the tools that developers need to create such a table.

Along with the mission statement, the following four keywords steer DataTables code development:

  • Modular
  • Capable
  • Fast
  • Extensible

Versions

The following lists the planned major versions of DataTables, detailing the areas that these updates will focus on, including new features and API updates.

v1.11

Search. With the new API in DataTables 1.10, the search options of DataTables are now probably the weakest point in the core software. For user interaction the string based search that DataTables provides is excellent for end users, particular with the smart search option. But for developers the lack of fine control over the search abilities can limit the plug-ins that can be created for DataTables.

This version will also remove jQuery UI ThemRoller support from the core, moving it to an integration like the Bootstrap and Foundation plug-ins for DataTables (the plug-in is already available and I'd encourage you to use this over the built in core support).

  • Filtering:
    • Strict type checking option
    • Define custom search methods easily (possibly a functions passed into the search() methods
    • Ability to search for an empty string
    • Per table custom filters, rather than global
  • Removed:
    • jQuery UI ThemeRoller support from the code (replaced by a plug-in).

v1.12

Modularisation. DataTables 1.9 started us down the path to full modularisation of DataTables, and this release's primary goal will be to complete this work. With the core features broken into independent modules, DataTables will be entirely configurable for how you want to use it, in terms of what code is included. For example, at the moment DataTables is one large core file when downloaded, but you might want only the server-side processing module. With this release you will be able to customise DataTables so that only server-side processing is included, saving a very significant amount of file space. Equally, if you didn't wish to use the filtering module DataTables has by default, that can be replaced with a custom filtering implementation.

  • Sorting and filtering independence from columns - although columns.data provides a lot of options, if you wish to sort or filter on data, currently that data must be placed into a column - this release will remove that dependence.
  • dom update - dom is very useful, but also rather difficult to understand, particularly when a complex configuration is used!
  • Renderers - the modules included in DataTables core will provide customisable renderers and post rendering hooks, for where HTML is output, allowing complete customisation of the controls. For example for this would allow customisation of the table headers to have an i tag to use for the sorting icon.
  • Live Dom sorting / filtering - a better solution than sortDataType!

v1.13

Likely completion of the 1.x series of DataTables, before moving to 2.x development.

  • Filtering and sorting core features as pluggable modules, so they can be replaced completely by other methods. One example is to use web-workers to background the processing 'threads', rather than blocking the UI.
  • Customer builder - an online selection list of features and plug-ins that you can select from to build a customised version of DataTables.

Web-site / documentation

Solid documentation is extremely important for a library such as DataTables, and a lot of work has been done thus far to ensure that the documentation is both relevant and useful for developers, particularly with v1.9. There is a strong commitment to keep the documentation at as high a standard as possible.

In the same vein, the documentation for DataTables is tightly tied to the DataTables.net web-site and this will be updated to improve accessibility of the documentation.

Backwards compatibility

All software developers know the pain of upgrading a library and realising that the API has changed. For this reason, the DataTables project is committed to ensuring backwards compatibility as much as possible in the 1.x series, so you'll get no nasty surprises when upgrading!

Extras

Extras such as Editor for DataTables each have their own roadmap and will be developed in tandem with DataTables core, but not as part of the core (they are independent from the core after all!).