Skip to content

Releases: ekondur/DatatableJS

3.9.1

22 Aug 15:13
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.9.0...v3.9.1

3.9.0

28 Jun 07:33
Compare
Choose a tag to compare

What's Changed

image

Full Changelog: v3.8.2...v3.9.0

3.8.2

22 Jun 20:18
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.8.1...v3.8.2

3.8.1

24 Mar 18:30
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.8.0...v3.8.1

3.8.0

28 Jun 21:52
Compare
Choose a tag to compare

What's Changed

To change the position of the search boxes (default is Footer):

.ColumnSearching(true, SearchPosition.Header)
.ColumnSearching(true, "form-control", SearchPosition.Header)
  • Reverted Case Sensitive Issue

Full Changelog: v3.7.0...v3.8.0

3.7.0

03 May 20:46
Compare
Choose a tag to compare

What's Changed

  • Added separated RenderHtml and RenderScript methods as an alternative to the Render method.

Define a datatable field.

var datatable = Html.JS().Datatable<Person>()
...

Call the RenderHtml and RenderScript methods in different places.

@datatable.RenderHtml();
@datatable.RenderScript();

Added Insensitive Search #125 #126

New Contributor: @Alexplose

Full Changelog: v3.6.1...v3.7.0

3.6.1

11 Mar 15:03
Compare
Choose a tag to compare

What's Changed

  • #118 Persist search value of individual column with statesave by @ekondur

Full Changelog: v3.6.0...v3.6.1

3.6.0

22 Jan 18:42
Compare
Choose a tag to compare

What's Changed

.ColReorder(true)

or configure;

.ColReorder(x => x.RealTime(false).Enable(false))
  • #115 Fixed syntax error on DatatableJS.Net version 3.5.0

Full Changelog: v3.5.0...v3.6.0

3.5.0

03 Jan 18:45
Compare
Choose a tag to compare

What's Changed

.Language(lang => lang.EmptyTable("No Data").Search("Search by: "))

Full Changelog: v3.4.1...v3.5.0

3.4.1

17 Dec 21:50
Compare
Choose a tag to compare

What's Changed

  • #109 Added Json CamelCase Naming Policy by @ekondur in #110
    If property names are pascal case like "FirstName" and JSON naming policy is camel case like "firstName", enable it.
.URL(Url.Action("GetDataResult"), "POST", camelCase: true)
  • #108 Updated Microsoft.AspNetCore.Mvc.ViewFeatures package to v2.1.0 by @ekondur in #111

Full Changelog: v3.4.0...v3.4.1