Skip to content

Releases: programcsharp/griddly

Filter form reset fixes

12 Aug 21:41
Compare
Choose a tag to compare

Any of these might be breaking. I don't think they are, but they might be.

  • Don't treat filter form items without name attribute as filters. This is to keep from resetting bootstrap-multiselect checkboxes
  • Render Griddly default string using enums for string values because that's what we do everywhere else.
  • Don't fire DOM reset event on form reset button click because jQuery is picking that up and calling reset again after we've already reset and set defaults -- which kills our defaults.

Button enhancements

21 Jul 00:02
Compare
Choose a tag to compare
  • Add button TextTemplate
  • Add ButtonSeparator alignRight option

Bug fixes

07 Jul 18:10
Compare
Choose a tag to compare
  • Catch summary function errors on non-nullable types.

Bug fixes and QOL

20 May 13:54
Compare
Choose a tag to compare
  • Populate summary values for simplegriddly
  • Allow rendering simple griddly in non mvc pages
  • Don't reload the page on rowclick if whitespace
  • Don't asplode in jQuery 3

GetAllForProperty should be sorted

13 Mar 16:00
Compare
Choose a tag to compare

Add sortFields argument to GetAllForProperty

Add NonGeneric methods on GriddlyResult

07 Mar 14:36
Compare
Choose a tag to compare

Add NonGeneric methods on GriddlyResult

Don't require GetAllForProperty

06 Mar 18:21
Compare
Choose a tag to compare

GriddlyResult.GetAllForProperty does not always have to be implemented.

More customizable custom handler

06 Mar 18:17
Compare
Choose a tag to compare

Breaking Changes:

  • GriddlySettings.HandleCustomExport is now injected with the GriddlyResult object instead of the GriddlyResult.GetAll(sort) output.
  • GriddlyResult has a new abstract method: IEnumerable<P> GetAllForProperty<P>(string propertyName) This should be implemented to return only the property projection requested.

More fixes

22 Feb 15:14
Compare
Choose a tag to compare

Fix breaking changes from before

Don't kneecap js handlers on buttons if we don't have to for the confirmMessage

New fixes could be breaking

Parse date only from filter value to kill timezone issues
Don't double refresh on filter reset

Fix breaking change in 1.6.6

22 Feb 04:03
Compare
Choose a tag to compare

So the bool change was breaking because it was a bug. This should resolve that and make it work and not be breaking.