Skip to content

Commit a22888b

Browse files
committed
21.4
1 parent 379e8f9 commit a22888b

File tree

166 files changed

+2446
-888
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

166 files changed

+2446
-888
lines changed

CHANGE_LOG.md

+38
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,40 @@
1+
v21.4
2+
- Built-in Inline Filter in Grid for Date, Numeric and String values
3+
- Built-in Inline Editor for Grid components
4+
- Change components CSS styles on demand from code
5+
- Loading icon for all data components
6+
- Option to prevent update of component layout
7+
- Option to customize the drag and drop functionality with wait and resolve methods in data components
8+
- Option to select a date using keyboard in DatePicker
9+
- Option to change row visibility on demand in data components
10+
- Export to JSON now supports exporting specific objects from data components
11+
- Fixed the locales settings not appearing for Calendar in DatePicker
12+
- Fixed the issue with resizing of Columns in Grid components when view is horizontally scrolled
13+
- Fixed the issues with appearance of resize cursor for columns when view is scrolled
14+
- Fixed the issue that prevented change of cell value from a droplist editor
15+
- Fixed the issue with that sorts the grid on column click when column is also resizing
16+
- Editor Text is now correctly updated when using Midnight Themes
17+
- If column is fixed, the resize cursor no longer appears
18+
- Context Menu style is now applied also to submenus
19+
- Other minor bug fixes
20+
21+
v21.3
22+
- New CSS custom properties for all web components
23+
- Option to import templates from a file
24+
- CellTouched event available in Grid
25+
- SelectedIndexChanged event available for Select component
26+
- Custom style settings for drag and drop component that can be changed on demand
27+
- Fixed the issue that causes Calendar to throw an error if provided date value is undefined
28+
- Other minor bug fixes
29+
30+
v21.2
31+
- Improved performance during data load and update
32+
- Option to set header and footer height from code in Grid components
33+
- CommonService now provides support for conversion of numbers, dates and strings in standard formats
34+
- Scrolling using Touch in Grid is now fully functional
35+
- Fixed the issue that caused incorrect subheader titles during horizontal scrolling in Grid
36+
- Sort order indicator is now displayed also when column is sorted, regardless whether it is selected or not
37+
- Fixed the bug that caused incorrect sorting column when there are multi-level headers
38+
139
v21.1
240
- Initial Release

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# IntegralUI Web - Grid, v21.1
1+
# IntegralUI Web - Grid, v21.4
22

33
IntegralUI Web - Grid is a native Web Component that displays tabular data sets. You can use it in Angular, React, Vue or any other JavaScript framework.
44

55
<b>Note</b> This component is also part of [IntegralUI Web](https://github.com/lidorsystems/integralui-web.git) product suite.
66

7-
![IntegralUI Web - Grid 21.1 - Native Web Component](https://www.lidorsystems.com/products/web/studio/features/grid/integralui-web-grid.png)
7+
![IntegralUI Web - Grid 21.4 - Native Web Component](https://www.lidorsystems.com/products/web/studio/features/grid/integralui-web-grid.png)
88

99
## Main Features
1010

@@ -43,6 +43,8 @@ npm i integralui-web-grid
4343

4444
Open your application and add a reference to a component you want to use. For example, if you are using the IntegralUI Grid component:</p>
4545

46+
<b>Note</b> A detailed information is available here: [How to Use IntegralUI Web Components](https://www.lidorsystems.com/help/integralui/web-components/introduction/installation/). Explains how to setup and use components for each framework: Angular, React or Vanilla JavaScript.
47+
4648
### Angular
4749

4850
```bash

components/integralui.base.grid.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/integralui.base.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/integralui.base.value.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/integralui.button.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/integralui.calendar.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)