impaktapps-ui-builder 0.0.64 → 0.0.66
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/dist/impaktapps-ui-builder.es.js +5 -0
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildTable.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +2 -1
|
@@ -7512,8 +7512,10 @@ const buildPropertiesSection = function(type) {
|
|
|
7512
7512
|
getRadioInputField("ColumnResizingAvailable", "ColumnResizing ", ["YES", "NO"]),
|
|
7513
7513
|
getRadioInputField("DragAvailable", "Row Dragging", ["YES", "NO"]),
|
|
7514
7514
|
getRadioInputField("downloadAllData", "Download All Data", ["YES", "NO"]),
|
|
7515
|
+
getRadioInputField("autoHeaders", "Auto Header", ["YES", "NO"]),
|
|
7515
7516
|
getInputField("selectKey", "Selection Key"),
|
|
7516
7517
|
emptyBox,
|
|
7518
|
+
emptyBox,
|
|
7517
7519
|
buildWrapper("Tree Table Properties", [
|
|
7518
7520
|
getRadioInputField("enableRowMovement", "Row Rearrangement", ["YES", "NO"]),
|
|
7519
7521
|
getRadioInputField("enableExpanding", "Row Expanding", ["YES", "NO"]),
|
|
@@ -10635,6 +10637,9 @@ const buildTable = (config, componentScope) => {
|
|
|
10635
10637
|
if (config.downloadAllData) {
|
|
10636
10638
|
table.config.main.downloadAllData = config.downloadAllData === "YES" ? true : false;
|
|
10637
10639
|
}
|
|
10640
|
+
if (config.autoHeaders) {
|
|
10641
|
+
table.config.main.autoHeaders = config.autoHeaders === "YES" ? true : false;
|
|
10642
|
+
}
|
|
10638
10643
|
if (config.Table_Download_Keys_Name) {
|
|
10639
10644
|
table.config.main.TableDownloadKeysName = config.Table_Download_Keys_Name.map((e) => e.KeyName);
|
|
10640
10645
|
}
|