@cdmx/wappler_ag_grid 1.3.8 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -17
- package/app_connect/components.hjson +9 -1
- package/dmx-ag-grid.js +9 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -60,23 +60,24 @@ To use the "Custom" theme, copy "ag-theme-custom.css" to public/css/ag-theme-cus
|
|
|
60
60
|
19. **Row Height**: Height of each row in pixels. (Default: Auto)
|
|
61
61
|
20. **Header Height**: Height of the header row in pixels. (Default: Auto)
|
|
62
62
|
21. **Wrap Header Text**: This will cause long headers to wrap. (Default: true)
|
|
63
|
-
22. **Auto Header Height**: The
|
|
64
|
-
23. **
|
|
65
|
-
24. **
|
|
66
|
-
25. **Suppress
|
|
67
|
-
26. **Suppress
|
|
68
|
-
27. **
|
|
69
|
-
28. **
|
|
70
|
-
29. **
|
|
71
|
-
30. **Suppress
|
|
72
|
-
31. **Suppress
|
|
73
|
-
32. **Suppress
|
|
74
|
-
33. **
|
|
75
|
-
34. **
|
|
76
|
-
35. **
|
|
77
|
-
36. **Row
|
|
78
|
-
37. **
|
|
79
|
-
38. **Enable Row
|
|
63
|
+
22. **Auto Header Height**: The header height is automatically set based on the content of the header. (Default: true)
|
|
64
|
+
23. **Auto Height**: The height is automatically set based on the content of the cells. (Default: false)
|
|
65
|
+
24. **Wrap Text**: This will cause long texts to wrap in the cells. (Default: false)
|
|
66
|
+
25. **Suppress Row Click Selection**: Disables row selection on row click. (Default: false)
|
|
67
|
+
26. **Suppress Menu Hide**: Prevents hiding the column menu. (Default: false)
|
|
68
|
+
27. **Suppress Movable Columns**: Disables moving columns. (Default: false)
|
|
69
|
+
28. **Enable Cell Expressions**: Enables expressions in cell values. (Default: false)
|
|
70
|
+
29. **Animate Rows**: Enables row animation on data changes. (Default: false)
|
|
71
|
+
30. **Suppress Aggregation Function in Header**: Hides the aggregation function in column headers. (Default: false)
|
|
72
|
+
31. **Suppress Clipboard Paste**: Disables pasting data from the clipboard. (Default: false)
|
|
73
|
+
32. **Suppress Scroll on New Data**: Prevents scrolling to newly added data. (Default: false)
|
|
74
|
+
33. **Suppress Property Names Check**: Disables checking for duplicate property names. (Default: false)
|
|
75
|
+
34. **Hide ID Field**: Hides the ID Field in the Grid. (Default: false)
|
|
76
|
+
35. **Numeric Column Align**: Align numeric columns to the right. (Default: false)
|
|
77
|
+
36. **Row Click Events**: Enables row click events. This can be used in Dynamic events => Grid Events => Row Clicked. (Default: false)
|
|
78
|
+
37. **Row Double Click Events**: Enables row double click events. This can be used in Dynamic events => Grid Events => Row Double Clicked. (Default: false)
|
|
79
|
+
38. **Enable Row Selection**: Enables row selection. This can be used in Dynamic events => Grid Events => Checkbox Checked || Checkbox Unchecked. (Default: false)
|
|
80
|
+
39. **Enable Row Status Toggle**: Enables row status toggle events. This can be used in Dynamic events => Grid Events => Checkbox Checked || Checkbox Unchecked. (Default: false)
|
|
80
81
|
|
|
81
82
|
# Data Type Overrides
|
|
82
83
|
|
|
@@ -411,7 +411,7 @@
|
|
|
411
411
|
"title": "Auto Header Height",
|
|
412
412
|
"type": "boolean",
|
|
413
413
|
"defaultValue": true,
|
|
414
|
-
"help": "The
|
|
414
|
+
"help": "The header row height is automatically set based on the content of the header."
|
|
415
415
|
},
|
|
416
416
|
{
|
|
417
417
|
"name": "wrapText",
|
|
@@ -421,6 +421,14 @@
|
|
|
421
421
|
"defaultValue": false,
|
|
422
422
|
"help": "This will cause long texts to wrap in the cells."
|
|
423
423
|
},
|
|
424
|
+
{
|
|
425
|
+
"name": "autoHeight",
|
|
426
|
+
"attribute": "dmx-bind:auto_height",
|
|
427
|
+
"title": "Auto Height",
|
|
428
|
+
"type": "boolean",
|
|
429
|
+
"defaultValue": false,
|
|
430
|
+
"help": "The height is automatically set based on the content of the cells."
|
|
431
|
+
},
|
|
424
432
|
{
|
|
425
433
|
"name": "suppressRowClickSelection",
|
|
426
434
|
"attribute": "dmx-bind:suppress_row_click_selection",
|
package/dmx-ag-grid.js
CHANGED
|
@@ -29,6 +29,7 @@ dmx.Component('ag-grid', {
|
|
|
29
29
|
wrap_header_text: { type: Boolean, default: true },
|
|
30
30
|
auto_header_height: { type: Boolean, default: true },
|
|
31
31
|
wrap_text: { type: Boolean, default: false },
|
|
32
|
+
auto_height: { type: Boolean, default: false },
|
|
32
33
|
data_changes: { type: Array, default: [] },
|
|
33
34
|
display_data_changes: { type: Array, default: [] },
|
|
34
35
|
js_data_changes: { type: Array, default: [] },
|
|
@@ -999,6 +1000,7 @@ dmx.Component('ag-grid', {
|
|
|
999
1000
|
function applyCellStyle(params) {
|
|
1000
1001
|
const field = params.colDef.field.toString();
|
|
1001
1002
|
const styles = cstyles.filter((cs) => cs.field === field);
|
|
1003
|
+
const whiteSpace = options.wrap_text ? 'normal' : 'nowrap'
|
|
1002
1004
|
|
|
1003
1005
|
for (const style of styles) {
|
|
1004
1006
|
const condition = style.condition;
|
|
@@ -1011,13 +1013,15 @@ dmx.Component('ag-grid', {
|
|
|
1011
1013
|
(params.data[left] !== null ? evaluateCondition(params.data[left], operator, right) : false)
|
|
1012
1014
|
) {
|
|
1013
1015
|
if (area === 'text') {
|
|
1014
|
-
return { color: customColor, fontStyle: font, fontWeight: (font==='bold'?'bold':null) };
|
|
1016
|
+
return { color: customColor, fontStyle: font, fontWeight: (font==='bold'?'bold':null), whiteSpace: whiteSpace };
|
|
1015
1017
|
} else if (area === 'cell') {
|
|
1016
|
-
return { backgroundColor: customColor, fontStyle: font };
|
|
1018
|
+
return { backgroundColor: customColor, fontStyle: font, whiteSpace: whiteSpace };
|
|
1017
1019
|
}
|
|
1018
1020
|
}
|
|
1019
1021
|
}
|
|
1020
|
-
|
|
1022
|
+
if (options.wrap_text) {
|
|
1023
|
+
return { whiteSpace: 'normal' };
|
|
1024
|
+
}
|
|
1021
1025
|
return null;
|
|
1022
1026
|
}
|
|
1023
1027
|
|
|
@@ -1145,7 +1149,7 @@ dmx.Component('ag-grid', {
|
|
|
1145
1149
|
if (options.row_checkbox_event) {
|
|
1146
1150
|
checkboxColumn = {
|
|
1147
1151
|
headerCheckboxSelection: true,
|
|
1148
|
-
headerCheckboxSelectionFilteredOnly:
|
|
1152
|
+
headerCheckboxSelectionFilteredOnly: true,
|
|
1149
1153
|
headerName: '',
|
|
1150
1154
|
colId: 'checkboxColumn',
|
|
1151
1155
|
field: null,
|
|
@@ -1272,7 +1276,7 @@ dmx.Component('ag-grid', {
|
|
|
1272
1276
|
resizable: options.resizable,
|
|
1273
1277
|
wrapHeaderText: options.wrap_header_text,
|
|
1274
1278
|
autoHeaderHeight: options.auto_header_height,
|
|
1275
|
-
|
|
1279
|
+
autoHeight: options.auto_height,
|
|
1276
1280
|
filter: options.filter,
|
|
1277
1281
|
sortable: options.sortable,
|
|
1278
1282
|
floatingFilter: options.floating_filter
|