Skip to content

Releases: ekondur/DatatableJS

1.2.1

12 Feb 06:43
Compare
Choose a tag to compare

Use different iconClass for Commands button instead of "Caret" icon.
commands
Improvements:

  • #32 iconClass for Commands

1.2.0

06 Feb 19:39
Compare
Choose a tag to compare

Adding a mutliple commands column like bootstrap button group in datatable

cols.Commands(a => a.Id, "Action", "btn-default", new Command("Delete", "onDelete"), new Command("Update", "onUpdate")).Title("Actions");

commands

Features:

  • #21 Multiple commands button

Bugs:

  • #22 Exception when command using first column

1.1.4

07 Feb 08:31
Compare
Choose a tag to compare

Improvements

  • #23 Code summary for descriptions

1.1.3

07 Feb 10:43
Compare
Choose a tag to compare

Improvements

  • #24 Nuget package version automation

1.1.2

10 Feb 08:00
Compare
Choose a tag to compare

Use language file from datatable.js cdn or local json file.

.Language("//cdn.datatables.net/plug-ins/1.10.20/i18n/English.json")

Use custom html column template with data condition.

cols.Field(a => a.IsActive).Title("Active").Template("(data === true) ? '<span class=\"glyphicon glyphicon-ok\"></span>' : '<span class=\"glyphicon glyphicon-remove\"></span>'");

Features:

  • #26 Multi language options
  • #27 Custom column template

Bugs:

  • #25 Table responsive style
  • #28 Exception dateformat for null values

1.1.1

10 Feb 08:17
Compare
Choose a tag to compare

To enable and disable pagination setting Paging method added.
.Paging(true)

To add captions of table top and footer Captions method added.
.Captions("This descripton on table header", "This description on table footer")

Features:

  • #30 Table paging setting
  • #31 Table top and footer captions