Skip to content

Releases: w-ahmad/WinUI.TableView

v1.1.1

19 May 15:59
3ab8a94
Compare
Choose a tag to compare

v1.1.1 Release Notes

  • Enhanced filter flyout functionality and user interface
  • Changed the default HeaderRowWidth from 48 to 32 (it was previously 32 until version 1.1.0).
  • Make the vertical scrollbar to display under the header row
  • Implemented auto resizing column by double clicking on resize area

Fixes

  • Fixed column header resize issue when CanFilter set to false
  • Fixed an issue where column resize was using next columns max & min width

Full Changelog: v1.1.0...v1.1.1

v1.1.0

05 May 22:12
3cb14af
Compare
Choose a tag to compare

v1.1.0 Release Notes

  • In filter flyout, use Contains instead of StartsWith when searching. (Thanks to @XamlBrewer ) #6
  • Removed package dependencies
  • New properties introduced in this release
    • TableView.IsReadOnly default is false, true makes all the columns read only.
    • TableView.CanUserSort default is true, false makes all the columns unsortable and exiting sorting will be cleared.
    • TableView.CanUserFilter default is true, false makes all the columns unfilterable and existing filter will be removed.
    • TableView.CanResizeColumns default is true, false makes all the columns not resizable.
    • TableView.ShowOptionsButton default is true, false will hide the OptionsButton.
    • TableView.HeaderRowHeight default value is set to 48.

Fixes

  • Major performance improvement in handling newly added items.
  • Fixed column header layout issues on resize. #3
  • 'Select All' command enable state is fixed based on the selection mode. #4
  • Copy or export selected items order in output is fixed #5
  • Fixed cell width bindings with their column

New Contributors

Full Changelog: v1.0.0...v1.1.0

v1.0.0

20 Apr 19:24
Compare
Choose a tag to compare

WinUI.TableView v1.0.0 Release Notes

Key Features

  • Auto Generate Columns
  • Excel like column filter
  • Export data to CSV or Implement your own export logic
  • Support columns sorting
  • Inline data editing

Enhancements

  • Implemented AutoGenerateColumns property change handlers
  • Added events for export and copy data to implement own logics
    • ExportAllRowsContent
    • ExportSelectedRowsContent
    • CopyToClipboard

v1.0.0-preview4

26 Mar 21:47
Compare
Choose a tag to compare
v1.0.0-preview4 Pre-release
Pre-release
  • AutoGenerateColumns is here like the most grid controls has and turned on by default. To turn it off set AutoGenerateColumns = false.
  • Export options are turned off by default to turn them on you can set ShowExportOptions = true.
  • Exposed to methods to implement custom export feature.
    GetAllRowsContent(bool includeHeaders, char separator)
    GetSelectedRowsContent(bool includeHeaders, char separator)
  • improvements to check for open flyouts on cell focus lost.
  • fixes some issues where keyboard accelerators where no working properly.

v1.0.0-preview3

05 Mar 22:28
e0d0b9d
Compare
Choose a tag to compare
v1.0.0-preview3 Pre-release
Pre-release
  • added feature to export rows to (comma delimited) csv file
  • fixed issues with column headers row
  • fixed an issue where MenuFlyouts icons were not visible on first open

v1.0.0-preview2

18 Feb 17:50
d4a1b43
Compare
Choose a tag to compare
v1.0.0-preview2 Pre-release
Pre-release
  • added selected rows data copy to clipboard functionality
  • aligned sorting trigger with standard conventions
  • added options button for bound columns to sort and filter columns

v1.0.0-preview1

04 Feb 21:43
Compare
Choose a tag to compare
v1.0.0-preview1 Pre-release
Pre-release

v1.0.0-preview1