@cdmx/wappler_ag_grid 0.3.7 → 0.3.8
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/app_connect/components.hjson +2 -2
- package/dmx-ag-grid.js +1 -2
- package/package.json +1 -1
|
@@ -179,10 +179,10 @@
|
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
181
|
"name": "rowSelection",
|
|
182
|
-
"attribute": "
|
|
182
|
+
"attribute": "row_selection",
|
|
183
183
|
"title": "Row Selection",
|
|
184
184
|
"type": "droplist",
|
|
185
|
-
"defaultValue": '
|
|
185
|
+
"defaultValue": 'multiple',
|
|
186
186
|
"values": [
|
|
187
187
|
{title: 'Single', value: 'single'},
|
|
188
188
|
{title: 'Muliple', value: 'multiple'}
|
package/dmx-ag-grid.js
CHANGED
|
@@ -18,7 +18,7 @@ dmx.Component('ag-grid', {
|
|
|
18
18
|
data: { type: Array, default: [] },
|
|
19
19
|
dom_layout: { type: String, default: 'autoHeight' },
|
|
20
20
|
enable_cell_text_selection: { type: Boolean, default: true },
|
|
21
|
-
row_selection: { type: String, default: '
|
|
21
|
+
row_selection: { type: String, default: 'multiple' },
|
|
22
22
|
suppress_row_deselection: { type: Boolean, default: false },
|
|
23
23
|
pagination: { type: Boolean, default: true },
|
|
24
24
|
pagination_page_size: { type: Number, default: 20 },
|
|
@@ -638,7 +638,6 @@ dmx.Component('ag-grid', {
|
|
|
638
638
|
actionsRenderer: actionsRenderer
|
|
639
639
|
}
|
|
640
640
|
};
|
|
641
|
-
|
|
642
641
|
const gridDiv = document.getElementById(options.id+'-grid');
|
|
643
642
|
|
|
644
643
|
|