From c9a7587dcf6008a3cba5041b2196fd9f280f20af Mon Sep 17 00:00:00 2001 From: Satish Gandham Date: Fri, 15 Jul 2022 14:40:45 +0530 Subject: [PATCH] ci: Fix golden app tests and more (#15172) * - Save the DOM on test failures. - Handle promise rejection in tests. - Save console logs to a file instead of stdout * - Fix golden app tests - Upgrade widgets in golden app to latest version * - Removing logging to file temporarily - Add test index to the file names * Some final cleanup Co-authored-by: Satish Gandham --- app/client/perf/readme.md | 33 + app/client/perf/src/ci/supabase.js | 2 +- app/client/perf/src/index.js | 1 + app/client/perf/src/perf.js | 55 +- .../tests/dsl/blog-admin-app-postgres.json | 17291 +++++++++++++++- app/client/perf/tests/golden-app.perf.js | 149 +- app/client/perf/tests/sample-test.js | 55 +- app/client/perf/tests/select-widget.perf.js | 16 +- 8 files changed, 17467 insertions(+), 135 deletions(-) create mode 100644 app/client/perf/readme.md diff --git a/app/client/perf/readme.md b/app/client/perf/readme.md new file mode 100644 index 0000000000..06e02eae4d --- /dev/null +++ b/app/client/perf/readme.md @@ -0,0 +1,33 @@ +### Adding credentials to app export +- In the exported app add this property under `datasourceList` in the item corresponding to the plugin you are adding credentials for. + + ``` + "datasourceConfiguration": { + "connection": { + "mode": "READ_WRITE", + "ssl": { + "authType": "DEFAULT" + } + }, + "endpoints": [{ + "host": "localhost", + "port": 5432 + }], + "sshProxyEnabled": false + }, + ``` +- Add this key at the top level + ``` + "decryptedFields": { + "PostgresGolden": { + "password": "********", + "authType": "com.appsmith.external.models.DBAuth", + "dbAuth": { + "authenticationType": "dbAuth", + "authenticationType": "dbAuth", + "username": "********", + "databaseName": "db_name" + } + } + }, + ``` \ No newline at end of file diff --git a/app/client/perf/src/ci/supabase.js b/app/client/perf/src/ci/supabase.js index d681a1251a..9737f8b53c 100644 --- a/app/client/perf/src/ci/supabase.js +++ b/app/client/perf/src/ci/supabase.js @@ -18,7 +18,7 @@ const metricsToLog = [ "LongTask", ]; -const supabaseKey = process.env.APPSMITH_PERF_SUPABASE_SECRET; +const supabaseKey = process.env.APPSMITH_PERF_SUPABASE_SECRET || "empty"; const supabase = createClient(supabaseUrl, supabaseKey); const actionRows = Object.keys(actions).map((action) => ({ diff --git a/app/client/perf/src/index.js b/app/client/perf/src/index.js index 9981c8815d..f83b759f3f 100644 --- a/app/client/perf/src/index.js +++ b/app/client/perf/src/index.js @@ -15,6 +15,7 @@ if (!fs.existsSync(dir)) { glob("./tests/*.perf.js", {}, async function(er, files) { // Initial setup await cp.execSync(`node ./tests/initial-setup.js`, { stdio: "inherit" }); + files.forEach(async (file) => { await cp.execSync(`node ${file}`, { stdio: "inherit" }); // Logging to terminal, log it to a file in future? }); diff --git a/app/client/perf/src/perf.js b/app/client/perf/src/perf.js index f8bead5bd3..29c07dd347 100644 --- a/app/client/perf/src/perf.js +++ b/app/client/perf/src/perf.js @@ -26,6 +26,7 @@ const selectors = { module.exports = class Perf { constructor(launchOptions = {}) { + this.iteration = launchOptions.iteration || 0; // Current iteration number this.launchOptions = { defaultViewport: null, args: ["--window-size=1920,1080"], @@ -50,26 +51,48 @@ module.exports = class Perf { .pop() .replace(".perf.js", ""); global.APP_ROOT = path.join(__dirname, ".."); //Going back one level from src folder to /perf - process.on("unhandledRejection", async (reason, p) => { - console.error("Unhandled Rejection at: Promise", p, "reason:", reason); - const fileName = sanitize( - `${this.currentTestFile}__${this.currentTrace}`, - ); - const screenshotPath = `${APP_ROOT}/traces/reports/${fileName}-${getFormattedTime()}.png`; - await this.page.screenshot({ - path: screenshotPath, - }); - if (this.currentTrace) { - await this.stopTrace(); - } - this.browser.close(); - }); + + process.on("unhandledRejection", this.handleRejections); } + + handleRejections = async (reason = "", p = "") => { + console.error("Unhandled Rejection at: Promise", p, "reason:", reason); + const fileName = sanitize(`${this.currentTestFile}__${this.currentTrace}`); + + if (!this.page) { + console.warn("No page instance was found", this.currentTestFile); + return; + } + const screenshotPath = `${APP_ROOT}/traces/reports/${fileName}-${getFormattedTime()}.png`; + await this.page.screenshot({ + path: screenshotPath, + }); + + const pageContent = await this.page.evaluate(() => { + return document.querySelector("body").innerHTML; + }); + + fs.writeFile( + `${APP_ROOT}/traces/reports/${fileName}-${getFormattedTime()}.html`, + pageContent, + (err) => { + if (err) { + console.error(err); + } + }, + ); + + if (this.currentTrace) { + await this.stopTrace(); + } + this.browser.close(); + }; /** * Launches the browser and, gives you the page */ launch = async () => { await cleanTheHost(); + await delay(3000); this.browser = await puppeteer.launch(this.launchOptions); const pages_ = await this.browser.pages(); this.page = pages_[0]; @@ -97,7 +120,9 @@ module.exports = class Perf { await this.page._client.send("HeapProfiler.collectGarbage"); await delay(1000, `After clearing memory`); - const path = `${APP_ROOT}/traces/${action}-${getFormattedTime()}-chrome-profile.json`; + const path = `${APP_ROOT}/traces/${action}-${ + this.iteration + }-${getFormattedTime()}-chrome-profile.json`; await this.page.tracing.start({ path: path, diff --git a/app/client/perf/tests/dsl/blog-admin-app-postgres.json b/app/client/perf/tests/dsl/blog-admin-app-postgres.json index eef091f971..c2c42e2ccd 100644 --- a/app/client/perf/tests/dsl/blog-admin-app-postgres.json +++ b/app/client/perf/tests/dsl/blog-admin-app-postgres.json @@ -1,11 +1,17280 @@ -{"clientSchemaVersion":1,"serverSchemaVersion":3,"exportedApplication":{"name":"GoldenAppPostgres","isPublic":true,"appIsExample":false,"unreadCommentThreads":0,"color":"#F1DEFF","icon":"love","slug":"goldenapppostgres","evaluationVersion":2,"applicationVersion":1,"isManualUpdate":false,"new":true},"datasourceList":[{"userPermissions":["execute:datasources","manage:datasources","read:datasources"],"gitSyncId":"61c9902d14b067061fc1a243_624d34477c84a52b1633510f","name":"PostgresGolden","pluginId":"postgres-plugin", - "datasourceConfiguration": { - "connection": { - "mode": "READ_WRITE", - "ssl": { "authType": "DEFAULT" } - }, - "endpoints": [{ "host": "localhost", "port": 5432 }], - "sshProxyEnabled": false - }, - "invalids":[],"messages":[],"isConfigured":true,"isValid":true,"new":true}],"pageList":[{"userPermissions":["read:pages","manage:pages"],"gitSyncId":"61efc0f939a0da5942775f01_61eff4883b61bf7f582f1831","unpublishedPage":{"name":"Users","slug":"users","layouts":[{"id":"Users","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1432.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":890.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":50.0,"minHeight":900.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0.0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40.0,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0.0,"bottomRow":87.0,"parentRowSpace":10.0,"isVisible":"true","type":"CONTAINER_WIDGET","version":1.0,"parentId":"0","isLoading":false,"parentColumnSpace":19.75,"leftColumn":0.0,"children":[{"widgetName":"Canvas1","rightColumn":632.0,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0.0,"bottomRow":890.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"mvubsemxfo","minHeight":870.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Table1","columnOrder":["ID","user_login","user_pass","user_nicename","user_email","user_url","user_registered","user_activation_key","user_status","display_name","customColumn1"],"dynamicPropertyPathList":[{"key":"onPageChange"}],"isVisibleDownload":true,"topRow":10.0,"bottomRow":86.0,"parentRowSpace":10.0,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1.0,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"primaryColumns.customColumn1.onClick"},{"key":"onSearchTextChanged"}],"dynamicBindingPathList":[{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"tableData"},{"key":"primaryColumns.ID.computedValue"},{"key":"primaryColumns.user_login.computedValue"},{"key":"primaryColumns.user_pass.computedValue"},{"key":"primaryColumns.user_nicename.computedValue"},{"key":"primaryColumns.user_email.computedValue"},{"key":"primaryColumns.user_url.computedValue"},{"key":"primaryColumns.user_registered.computedValue"},{"key":"primaryColumns.user_activation_key.computedValue"},{"key":"primaryColumns.user_status.computedValue"},{"key":"primaryColumns.display_name.computedValue"}],"leftColumn":0.0,"primaryColumns":{"customColumn1":{"isCellVisible":true,"isDerived":true,"computedValue":"","onClick":"{{showModal('Delete_Modal')}}","textSize":"PARAGRAPH","buttonColor":"#DD4B34","index":7.0,"isVisible":true,"label":"Delete","buttonLabel":"{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}","columnType":"button","horizontalAlignment":"LEFT","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF","verticalAlignment":"CENTER"},"ID":{"index":0.0,"width":150.0,"id":"ID","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"ID","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.ID))}}"},"user_login":{"index":1.0,"width":150.0,"id":"user_login","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"user_login","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_login))}}"},"user_pass":{"index":2.0,"width":150.0,"id":"user_pass","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"user_pass","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_pass))}}"},"user_nicename":{"index":3.0,"width":150.0,"id":"user_nicename","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"user_nicename","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_nicename))}}"},"user_email":{"index":4.0,"width":150.0,"id":"user_email","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"user_email","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_email))}}"},"user_url":{"index":5.0,"width":150.0,"id":"user_url","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"user_url","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_url))}}"},"user_registered":{"index":6.0,"width":150.0,"id":"user_registered","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"user_registered","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_registered))}}"},"user_activation_key":{"index":7.0,"width":150.0,"id":"user_activation_key","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"user_activation_key","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_activation_key))}}"},"user_status":{"index":8.0,"width":150.0,"id":"user_status","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"user_status","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_status))}}"},"display_name":{"index":9.0,"width":150.0,"id":"display_name","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"display_name","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.display_name))}}"}},"delimiter":",","derivedColumns":{"customColumn1":{"isDerived":true,"computedValue":"","onClick":"{{DeleteQuery.run()}}","textSize":"PARAGRAPH","buttonStyle":"#DD4B34","index":7.0,"isVisible":true,"label":"customColumn1","buttonLabel":"{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}","columnType":"button","horizontalAlignment":"LEFT","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","buttonLabelColor":"#FFFFFF","verticalAlignment":"CENTER"}},"rightColumn":64.0,"textSize":"PARAGRAPH","widgetId":"jabdu9f16g","isVisibleFilters":true,"tableData":"","isVisible":"true","label":"Data","searchKey":"","version":3.0,"parentId":"59rw5mx0bq","serverSidePaginationEnabled":true,"isLoading":false,"isVisibleCompactMode":true,"onSearchTextChanged":"{{SelectQuery.run()}}","horizontalAlignment":"LEFT","isVisibleSearch":true,"isVisiblePagination":true,"verticalAlignment":"CENTER","columnSizeMap":{"task":245.0,"deliveryAddress":170.0,"step":62.0,"id":228.0,"status":75.0}},{"isRequired":false,"widgetName":"col_select","isFilterable":true,"rightColumn":22.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"asmgosgxjm","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"{{SelectQuery.data.length > 0}}","label":"","type":"DROP_DOWN_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"defaultOptionValue":"ID","parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":7.0,"dynamicBindingPathList":[{"key":"isVisible"}],"options":"[\n{\n\t\"label\": \"user_nicename\",\n\t\"value\": \"user_nicename\"\n}, \n{\n\t\"label\": \"user_email\",\n\t\"value\": \"user_email\"\n}, \n{\n\t\"label\": \"user_login\",\n\t\"value\": \"user_login\"\n}, \n{\n\t\"label\": \"user_pass\",\n\t\"value\": \"user_pass\"\n}, \n{\n\t\"label\": \"ID\",\n\t\"value\": \"ID\"\n}]","onOptionChange":"{{SelectQuery.run()}}","isDisabled":false},{"widgetName":"Text15","rightColumn":7.0,"textAlign":"LEFT","widgetId":"l8pgl90klz","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":19.75,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Order By :"},{"isRequired":false,"widgetName":"order_select","isFilterable":true,"rightColumn":33.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"10v8a19m25","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"{{SelectQuery.data.length > 0}}","label":"","type":"DROP_DOWN_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"defaultOptionValue":"ASC","parentColumnSpace":19.75,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":22.0,"dynamicBindingPathList":[{"key":"isVisible"}],"options":"[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]","onOptionChange":"{{SelectQuery.run()}}","isDisabled":false},{"widgetName":"Text16","rightColumn":64.0,"textAlign":"LEFT","widgetId":"urzv99hdc8","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_users Data"},{"boxShadow":"NONE","widgetName":"refresh_btn","rightColumn":64.0,"onClick":"{{SelectQuery.run()}}","iconName":"refresh","buttonColor":"#03B365","widgetId":"2jj0197tff","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"CIRCLE","leftColumn":60.0,"dynamicBindingPathList":[],"buttonVariant":"TERTIARY","isDisabled":false},{"boxShadow":"NONE","widgetName":"add_btn","rightColumn":60.0,"onClick":"{{showModal('Insert_Modal')}}","iconName":"add","buttonColor":"#03B365","widgetId":"kby34l9nbb","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"CIRCLE","leftColumn":56.0,"dynamicBindingPathList":[],"buttonVariant":"TERTIARY","isDisabled":false}]}]},{"widgetName":"Delete_Modal","rightColumn":45.0,"detachFromLayout":true,"widgetId":"i3whp03wf0","topRow":13.0,"bottomRow":37.0,"parentRowSpace":10.0,"canOutsideClickClose":true,"type":"MODAL_WIDGET","canEscapeKeyClose":true,"version":2.0,"parentId":"0","shouldScrollContents":false,"isLoading":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":21.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas3","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"zi8fjakv8o","topRow":0.0,"bottomRow":230.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":true,"type":"CANVAS_WIDGET","version":1.0,"parentId":"i3whp03wf0","shouldScrollContents":false,"minHeight":240.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Alert_text","rightColumn":41.0,"textAlign":"LEFT","widgetId":"reyoxo4oec","topRow":1.0,"bottomRow":5.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Delete Row"},{"widgetName":"Button1","rightColumn":46.0,"onClick":"{{closeModal('Delete_Modal')}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03B365","widgetId":"lryg8kw537","topRow":17.0,"bottomRow":21.0,"isVisible":"true","type":"BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":34.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Cancel","isDisabled":false},{"widgetName":"Delete_Button","rightColumn":64.0,"onClick":"{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#F22B2B","widgetId":"qq02lh7ust","topRow":17.0,"bottomRow":21.0,"isVisible":"true","type":"BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":48.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Confirm","isDisabled":false},{"widgetName":"Text12","rightColumn":63.0,"textAlign":"LEFT","widgetId":"48uac29g6e","topRow":8.0,"bottomRow":12.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"parentColumnSpace":6.875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Are you sure you want to delete this item?"}],"isDisabled":false}],"width":456.0,"height":240.0},{"widgetName":"Insert_Modal","rightColumn":41.0,"detachFromLayout":true,"widgetId":"vmorzie6eq","topRow":16.0,"bottomRow":40.0,"parentRowSpace":10.0,"canOutsideClickClose":true,"type":"MODAL_WIDGET","canEscapeKeyClose":true,"version":2.0,"parentId":"0","shouldScrollContents":false,"isLoading":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":17.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas4","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"9rhv3ioohq","topRow":0.0,"bottomRow":610.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":true,"type":"CANVAS_WIDGET","version":1.0,"parentId":"vmorzie6eq","shouldScrollContents":false,"minHeight":600.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Form2","backgroundColor":"#F6F7F8","rightColumn":64.0,"widgetId":"1ruewbc4ef","topRow":0.0,"bottomRow":58.0,"parentRowSpace":10.0,"isVisible":"true","type":"FORM_WIDGET","parentId":"9rhv3ioohq","isLoading":false,"shouldScrollContents":false,"parentColumnSpace":8.0,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas5","rightColumn":224.0,"detachFromLayout":true,"widgetId":"tp9pui0e6y","containerStyle":"none","topRow":0.0,"bottomRow":570.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"1ruewbc4ef","minHeight":580.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"resetFormOnClick":true,"widgetName":"insert_button","rightColumn":62.0,"onClick":"{{InsertQuery.run(() => SelectQuery.run(() => closeModal('Insert_Modal')))}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#03B365","widgetId":"h8vxf3oh4s","topRow":51.0,"bottomRow":55.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":true,"leftColumn":43.0,"dynamicBindingPathList":[],"googleRecaptchaKey":"","buttonVariant":"PRIMARY","text":"Submit"},{"resetFormOnClick":true,"widgetName":"reset_button","rightColumn":42.0,"onClick":"{{closeModal('Insert_Modal')}}","isDefaultClickDisabled":true,"buttonColor":"#03B365","widgetId":"o23gs26wm5","topRow":51.0,"bottomRow":55.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":29.0,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Close"},{"widgetName":"Text21","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"cfmxebyn06","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"ID:"},{"isRequired":false,"widgetName":"insert_col_input1","rightColumn":62.0,"widgetId":"h1wbbv7alb","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"Autogenerated Field","isDisabled":true,"validation":"true"},{"widgetName":"Text22","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"jsffaxrqhw","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":2.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_login:"},{"isRequired":true,"widgetName":"insert_col_input2","rightColumn":62.0,"widgetId":"6enalyprua","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","defaultText":"","placeholderText":"user_login","isDisabled":false,"validation":"true"},{"widgetName":"Text23","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"btk60uozsm","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_pass:"},{"isRequired":true,"widgetName":"insert_col_input3","rightColumn":62.0,"widgetId":"e490gfts69","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"user_pass","defaultText":"","isDisabled":false,"validation":"true"},{"widgetName":"Text14","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"8fm60omwwv","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_nicename:"},{"isRequired":true,"widgetName":"insert_col_input4","rightColumn":62.0,"widgetId":"r55cydp0ao","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"user_nicename","defaultText":"","isDisabled":false,"validation":"true"},{"widgetName":"Text24","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"9t3vdjd5xj","topRow":33.0,"bottomRow":37.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_email:"},{"isRequired":true,"widgetName":"insert_col_input5","rightColumn":62.0,"widgetId":"5rfqxgj0vm","topRow":33.0,"bottomRow":37.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"user_email","isDisabled":false,"validation":"true"},{"widgetName":"Text13Copy","rightColumn":35.0,"textAlign":"LEFT","widgetId":"18x7vdv3gs","topRow":0.0,"bottomRow":4.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Insert Row"}]}]}],"isDisabled":false}],"width":532.0,"height":600.0},{"widgetName":"Form1","backgroundColor":"white","rightColumn":64.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"m7dvlazbn7","topRow":0.0,"bottomRow":46.0,"parentRowSpace":10.0,"isVisible":"{{!!Table1.selectedRow.ID}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40.0,"dynamicBindingPathList":[{"key":"isVisible"}],"children":[{"widgetName":"Canvas2","rightColumn":528.71875,"detachFromLayout":true,"widgetId":"cicukwhp5j","containerStyle":"none","topRow":0.0,"bottomRow":450.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"m7dvlazbn7","minHeight":460.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"resetFormOnClick":false,"widgetName":"update_button","rightColumn":63.0,"onClick":"{{UpdateQuery.run(() => SelectQuery.run(), () => showAlert('Error while updating resource!','error'))}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03B365","widgetId":"4gnygu5jew","topRow":39.0,"bottomRow":43.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":true,"leftColumn":42.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Update"},{"resetFormOnClick":true,"widgetName":"reset_update_button","rightColumn":42.0,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39.0,"bottomRow":43.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28.0,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","rightColumn":63.0,"widgetId":"in8e51pg3y","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_login}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63.0,"widgetId":"mlhvfasf31","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_pass}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63.0,"widgetId":"0lz9vhcnr0","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_nicename}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_5","rightColumn":63.0,"widgetId":"m4esf7fww5","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_email}}","isDisabled":false,"validation":"true"},{"widgetName":"Text9","rightColumn":63.0,"textAlign":"LEFT","widgetId":"4hnz8ktmz5","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.ID}}"},{"widgetName":"Text17","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"afzzc7q8af","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_login:"},{"widgetName":"Text18","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_pass:"},{"widgetName":"Text19","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_nicename:"},{"widgetName":"Text20","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"gqpwf0yng6","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_email:"}]}]}]},"layoutOnLoadActions":[[{"id":"Users_SelectQuery","name":"SelectQuery","pluginType":"DB","jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","Table1.searchText || \"\"","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"timeoutInMillisecond":10000}]],"new":false}],"userPermissions":[],"isHidden":false},"publishedPage":{"name":"Users","slug":"users","layouts":[{"id":"Users","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1432.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":890.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":50.0,"minHeight":900.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0.0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40.0,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0.0,"bottomRow":87.0,"parentRowSpace":10.0,"isVisible":"true","type":"CONTAINER_WIDGET","version":1.0,"parentId":"0","isLoading":false,"parentColumnSpace":19.75,"leftColumn":0.0,"children":[{"widgetName":"Canvas1","rightColumn":632.0,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0.0,"bottomRow":890.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"mvubsemxfo","minHeight":870.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Table1","columnOrder":["ID","user_login","user_pass","user_nicename","user_email","user_url","user_registered","user_activation_key","user_status","display_name","customColumn1"],"dynamicPropertyPathList":[{"key":"onPageChange"}],"isVisibleDownload":true,"topRow":10.0,"bottomRow":86.0,"parentRowSpace":10.0,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1.0,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"primaryColumns.customColumn1.onClick"},{"key":"onSearchTextChanged"}],"dynamicBindingPathList":[{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"tableData"},{"key":"primaryColumns.ID.computedValue"},{"key":"primaryColumns.user_login.computedValue"},{"key":"primaryColumns.user_pass.computedValue"},{"key":"primaryColumns.user_nicename.computedValue"},{"key":"primaryColumns.user_email.computedValue"},{"key":"primaryColumns.user_url.computedValue"},{"key":"primaryColumns.user_registered.computedValue"},{"key":"primaryColumns.user_activation_key.computedValue"},{"key":"primaryColumns.user_status.computedValue"},{"key":"primaryColumns.display_name.computedValue"}],"leftColumn":0.0,"primaryColumns":{"customColumn1":{"isCellVisible":true,"isDerived":true,"computedValue":"","onClick":"{{showModal('Delete_Modal')}}","textSize":"PARAGRAPH","buttonColor":"#DD4B34","index":7.0,"isVisible":true,"label":"Delete","buttonLabel":"{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}","columnType":"button","horizontalAlignment":"LEFT","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF","verticalAlignment":"CENTER"},"ID":{"index":0.0,"width":150.0,"id":"ID","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"ID","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.ID))}}"},"user_login":{"index":1.0,"width":150.0,"id":"user_login","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"user_login","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_login))}}"},"user_pass":{"index":2.0,"width":150.0,"id":"user_pass","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"user_pass","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_pass))}}"},"user_nicename":{"index":3.0,"width":150.0,"id":"user_nicename","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"user_nicename","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_nicename))}}"},"user_email":{"index":4.0,"width":150.0,"id":"user_email","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"user_email","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_email))}}"},"user_url":{"index":5.0,"width":150.0,"id":"user_url","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"user_url","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_url))}}"},"user_registered":{"index":6.0,"width":150.0,"id":"user_registered","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"user_registered","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_registered))}}"},"user_activation_key":{"index":7.0,"width":150.0,"id":"user_activation_key","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"user_activation_key","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_activation_key))}}"},"user_status":{"index":8.0,"width":150.0,"id":"user_status","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"user_status","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_status))}}"},"display_name":{"index":9.0,"width":150.0,"id":"display_name","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"display_name","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.display_name))}}"}},"delimiter":",","derivedColumns":{"customColumn1":{"isDerived":true,"computedValue":"","onClick":"{{DeleteQuery.run()}}","textSize":"PARAGRAPH","buttonStyle":"#DD4B34","index":7.0,"isVisible":true,"label":"customColumn1","buttonLabel":"{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}","columnType":"button","horizontalAlignment":"LEFT","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","buttonLabelColor":"#FFFFFF","verticalAlignment":"CENTER"}},"rightColumn":64.0,"textSize":"PARAGRAPH","widgetId":"jabdu9f16g","isVisibleFilters":true,"tableData":"","isVisible":"true","label":"Data","searchKey":"","version":3.0,"parentId":"59rw5mx0bq","serverSidePaginationEnabled":true,"isLoading":false,"isVisibleCompactMode":true,"onSearchTextChanged":"{{SelectQuery.run()}}","horizontalAlignment":"LEFT","isVisibleSearch":true,"isVisiblePagination":true,"verticalAlignment":"CENTER","columnSizeMap":{"task":245.0,"deliveryAddress":170.0,"step":62.0,"id":228.0,"status":75.0}},{"isRequired":false,"widgetName":"col_select","isFilterable":true,"rightColumn":22.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"asmgosgxjm","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"{{SelectQuery.data.length > 0}}","label":"","type":"DROP_DOWN_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"defaultOptionValue":"ID","parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":7.0,"dynamicBindingPathList":[{"key":"isVisible"}],"options":"[\n{\n\t\"label\": \"user_nicename\",\n\t\"value\": \"user_nicename\"\n}, \n{\n\t\"label\": \"user_email\",\n\t\"value\": \"user_email\"\n}, \n{\n\t\"label\": \"user_login\",\n\t\"value\": \"user_login\"\n}, \n{\n\t\"label\": \"user_pass\",\n\t\"value\": \"user_pass\"\n}, \n{\n\t\"label\": \"ID\",\n\t\"value\": \"ID\"\n}]","onOptionChange":"{{SelectQuery.run()}}","isDisabled":false},{"widgetName":"Text15","rightColumn":7.0,"textAlign":"LEFT","widgetId":"l8pgl90klz","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":19.75,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Order By :"},{"isRequired":false,"widgetName":"order_select","isFilterable":true,"rightColumn":33.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"10v8a19m25","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"{{SelectQuery.data.length > 0}}","label":"","type":"DROP_DOWN_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"defaultOptionValue":"ASC","parentColumnSpace":19.75,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":22.0,"dynamicBindingPathList":[{"key":"isVisible"}],"options":"[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]","onOptionChange":"{{SelectQuery.run()}}","isDisabled":false},{"widgetName":"Text16","rightColumn":64.0,"textAlign":"LEFT","widgetId":"urzv99hdc8","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_users Data"},{"boxShadow":"NONE","widgetName":"refresh_btn","rightColumn":64.0,"onClick":"{{SelectQuery.run()}}","iconName":"refresh","buttonColor":"#03B365","widgetId":"2jj0197tff","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"CIRCLE","leftColumn":60.0,"dynamicBindingPathList":[],"buttonVariant":"TERTIARY","isDisabled":false},{"boxShadow":"NONE","widgetName":"add_btn","rightColumn":60.0,"onClick":"{{showModal('Insert_Modal')}}","iconName":"add","buttonColor":"#03B365","widgetId":"kby34l9nbb","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"CIRCLE","leftColumn":56.0,"dynamicBindingPathList":[],"buttonVariant":"TERTIARY","isDisabled":false}]}]},{"widgetName":"Delete_Modal","rightColumn":45.0,"detachFromLayout":true,"widgetId":"i3whp03wf0","topRow":13.0,"bottomRow":37.0,"parentRowSpace":10.0,"canOutsideClickClose":true,"type":"MODAL_WIDGET","canEscapeKeyClose":true,"version":2.0,"parentId":"0","shouldScrollContents":false,"isLoading":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":21.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas3","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"zi8fjakv8o","topRow":0.0,"bottomRow":230.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":true,"type":"CANVAS_WIDGET","version":1.0,"parentId":"i3whp03wf0","shouldScrollContents":false,"minHeight":240.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Alert_text","rightColumn":41.0,"textAlign":"LEFT","widgetId":"reyoxo4oec","topRow":1.0,"bottomRow":5.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Delete Row"},{"widgetName":"Button1","rightColumn":46.0,"onClick":"{{closeModal('Delete_Modal')}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03B365","widgetId":"lryg8kw537","topRow":17.0,"bottomRow":21.0,"isVisible":"true","type":"BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":34.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Cancel","isDisabled":false},{"widgetName":"Delete_Button","rightColumn":64.0,"onClick":"{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#F22B2B","widgetId":"qq02lh7ust","topRow":17.0,"bottomRow":21.0,"isVisible":"true","type":"BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":48.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Confirm","isDisabled":false},{"widgetName":"Text12","rightColumn":63.0,"textAlign":"LEFT","widgetId":"48uac29g6e","topRow":8.0,"bottomRow":12.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"parentColumnSpace":6.875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Are you sure you want to delete this item?"}],"isDisabled":false}],"width":456.0,"height":240.0},{"widgetName":"Insert_Modal","rightColumn":41.0,"detachFromLayout":true,"widgetId":"vmorzie6eq","topRow":16.0,"bottomRow":40.0,"parentRowSpace":10.0,"canOutsideClickClose":true,"type":"MODAL_WIDGET","canEscapeKeyClose":true,"version":2.0,"parentId":"0","shouldScrollContents":false,"isLoading":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":17.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas4","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"9rhv3ioohq","topRow":0.0,"bottomRow":610.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":true,"type":"CANVAS_WIDGET","version":1.0,"parentId":"vmorzie6eq","shouldScrollContents":false,"minHeight":600.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Form2","backgroundColor":"#F6F7F8","rightColumn":64.0,"widgetId":"1ruewbc4ef","topRow":0.0,"bottomRow":58.0,"parentRowSpace":10.0,"isVisible":"true","type":"FORM_WIDGET","parentId":"9rhv3ioohq","isLoading":false,"shouldScrollContents":false,"parentColumnSpace":8.0,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas5","rightColumn":224.0,"detachFromLayout":true,"widgetId":"tp9pui0e6y","containerStyle":"none","topRow":0.0,"bottomRow":570.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"1ruewbc4ef","minHeight":580.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"resetFormOnClick":true,"widgetName":"insert_button","rightColumn":62.0,"onClick":"{{InsertQuery.run(() => SelectQuery.run(() => closeModal('Insert_Modal')))}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#03B365","widgetId":"h8vxf3oh4s","topRow":51.0,"bottomRow":55.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":true,"leftColumn":43.0,"dynamicBindingPathList":[],"googleRecaptchaKey":"","buttonVariant":"PRIMARY","text":"Submit"},{"resetFormOnClick":true,"widgetName":"reset_button","rightColumn":42.0,"onClick":"{{closeModal('Insert_Modal')}}","isDefaultClickDisabled":true,"buttonColor":"#03B365","widgetId":"o23gs26wm5","topRow":51.0,"bottomRow":55.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":29.0,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Close"},{"widgetName":"Text21","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"cfmxebyn06","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"ID:"},{"isRequired":false,"widgetName":"insert_col_input1","rightColumn":62.0,"widgetId":"h1wbbv7alb","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"Autogenerated Field","isDisabled":true,"validation":"true"},{"widgetName":"Text22","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"jsffaxrqhw","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":2.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_login:"},{"isRequired":true,"widgetName":"insert_col_input2","rightColumn":62.0,"widgetId":"6enalyprua","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","defaultText":"","placeholderText":"user_login","isDisabled":false,"validation":"true"},{"widgetName":"Text23","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"btk60uozsm","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_pass:"},{"isRequired":true,"widgetName":"insert_col_input3","rightColumn":62.0,"widgetId":"e490gfts69","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"user_pass","defaultText":"","isDisabled":false,"validation":"true"},{"widgetName":"Text14","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"8fm60omwwv","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_nicename:"},{"isRequired":true,"widgetName":"insert_col_input4","rightColumn":62.0,"widgetId":"r55cydp0ao","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"user_nicename","defaultText":"","isDisabled":false,"validation":"true"},{"widgetName":"Text24","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"9t3vdjd5xj","topRow":33.0,"bottomRow":37.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_email:"},{"isRequired":true,"widgetName":"insert_col_input5","rightColumn":62.0,"widgetId":"5rfqxgj0vm","topRow":33.0,"bottomRow":37.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"user_email","isDisabled":false,"validation":"true"},{"widgetName":"Text13Copy","rightColumn":35.0,"textAlign":"LEFT","widgetId":"18x7vdv3gs","topRow":0.0,"bottomRow":4.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Insert Row"}]}]}],"isDisabled":false}],"width":532.0,"height":600.0},{"widgetName":"Form1","backgroundColor":"white","rightColumn":64.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"m7dvlazbn7","topRow":0.0,"bottomRow":46.0,"parentRowSpace":10.0,"isVisible":"{{!!Table1.selectedRow.ID}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40.0,"dynamicBindingPathList":[{"key":"isVisible"}],"children":[{"widgetName":"Canvas2","rightColumn":528.71875,"detachFromLayout":true,"widgetId":"cicukwhp5j","containerStyle":"none","topRow":0.0,"bottomRow":450.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"m7dvlazbn7","minHeight":460.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"resetFormOnClick":false,"widgetName":"update_button","rightColumn":63.0,"onClick":"{{UpdateQuery.run(() => SelectQuery.run(), () => showAlert('Error while updating resource!','error'))}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03B365","widgetId":"4gnygu5jew","topRow":39.0,"bottomRow":43.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":true,"leftColumn":42.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Update"},{"resetFormOnClick":true,"widgetName":"reset_update_button","rightColumn":42.0,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39.0,"bottomRow":43.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28.0,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","rightColumn":63.0,"widgetId":"in8e51pg3y","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_login}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63.0,"widgetId":"mlhvfasf31","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_pass}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63.0,"widgetId":"0lz9vhcnr0","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_nicename}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_5","rightColumn":63.0,"widgetId":"m4esf7fww5","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_email}}","isDisabled":false,"validation":"true"},{"widgetName":"Text9","rightColumn":63.0,"textAlign":"LEFT","widgetId":"4hnz8ktmz5","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.ID}}"},{"widgetName":"Text17","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"afzzc7q8af","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_login:"},{"widgetName":"Text18","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_pass:"},{"widgetName":"Text19","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_nicename:"},{"widgetName":"Text20","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"gqpwf0yng6","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_email:"}]}]}]},"layoutOnLoadActions":[[{"id":"Users_SelectQuery","name":"SelectQuery","pluginType":"DB","jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","Table1.searchText || \"\"","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"timeoutInMillisecond":10000}]],"new":false}],"userPermissions":[],"isHidden":false},"new":true},{"userPermissions":["read:pages","manage:pages"],"gitSyncId":"61efc0f939a0da5942775f01_61f3ad8f345f0c36171f8d4b","unpublishedPage":{"name":"Comments","slug":"comments","layouts":[{"id":"Comments","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1280.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":890.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":51.0,"minHeight":900.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0.0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40.0,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0.0,"bottomRow":87.0,"parentRowSpace":10.0,"isVisible":"true","type":"CONTAINER_WIDGET","version":1.0,"parentId":"0","isLoading":false,"parentColumnSpace":19.75,"leftColumn":0.0,"children":[{"widgetName":"Canvas1","rightColumn":632.0,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0.0,"bottomRow":890.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"mvubsemxfo","minHeight":870.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Table1","columnOrder":["comment_ID","comment_post_ID","comment_author","comment_author_email","comment_author_url","comment_author_IP","comment_date","comment_date_gmt","comment_content","comment_karma","comment_approved","comment_agent","comment_type","comment_parent","user_id","customColumn1"],"dynamicPropertyPathList":[{"key":"onPageChange"}],"isVisibleDownload":true,"topRow":10.0,"bottomRow":86.0,"parentRowSpace":10.0,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1.0,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"primaryColumns.customColumn1.onClick"},{"key":"onSearchTextChanged"}],"dynamicBindingPathList":[{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"tableData"},{"key":"primaryColumns.comment_ID.computedValue"},{"key":"primaryColumns.comment_post_ID.computedValue"},{"key":"primaryColumns.comment_author.computedValue"},{"key":"primaryColumns.comment_author_email.computedValue"},{"key":"primaryColumns.comment_author_url.computedValue"},{"key":"primaryColumns.comment_author_IP.computedValue"},{"key":"primaryColumns.comment_date.computedValue"},{"key":"primaryColumns.comment_date_gmt.computedValue"},{"key":"primaryColumns.comment_content.computedValue"},{"key":"primaryColumns.comment_karma.computedValue"},{"key":"primaryColumns.comment_approved.computedValue"},{"key":"primaryColumns.comment_agent.computedValue"},{"key":"primaryColumns.comment_type.computedValue"},{"key":"primaryColumns.comment_parent.computedValue"},{"key":"primaryColumns.user_id.computedValue"}],"leftColumn":0.0,"primaryColumns":{"customColumn1":{"isCellVisible":true,"isDerived":true,"computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.customColumn1))}}","onClick":"{{showModal('Delete_Modal')}}","textSize":"PARAGRAPH","buttonColor":"#DD4B34","index":7.0,"isVisible":true,"label":"Delete","buttonLabel":"{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}","columnType":"button","horizontalAlignment":"LEFT","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF","verticalAlignment":"CENTER"},"comment_ID":{"index":0.0,"width":150.0,"id":"comment_ID","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_ID","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_ID))}}"},"comment_post_ID":{"index":1.0,"width":150.0,"id":"comment_post_ID","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_post_ID","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_post_ID))}}"},"comment_author":{"index":2.0,"width":150.0,"id":"comment_author","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_author","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_author))}}"},"comment_author_email":{"index":3.0,"width":150.0,"id":"comment_author_email","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_author_email","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_email))}}"},"comment_author_url":{"index":4.0,"width":150.0,"id":"comment_author_url","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_author_url","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_url))}}"},"comment_author_IP":{"index":5.0,"width":150.0,"id":"comment_author_IP","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_author_IP","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_IP))}}"},"comment_date":{"index":6.0,"width":150.0,"id":"comment_date","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_date","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_date))}}"},"comment_date_gmt":{"index":7.0,"width":150.0,"id":"comment_date_gmt","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_date_gmt","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_date_gmt))}}"},"comment_content":{"index":8.0,"width":150.0,"id":"comment_content","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_content","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_content))}}"},"comment_karma":{"index":9.0,"width":150.0,"id":"comment_karma","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_karma","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_karma))}}"},"comment_approved":{"index":10.0,"width":150.0,"id":"comment_approved","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_approved","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_approved))}}"},"comment_agent":{"index":11.0,"width":150.0,"id":"comment_agent","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_agent","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_agent))}}"},"comment_type":{"index":12.0,"width":150.0,"id":"comment_type","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_type","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_type))}}"},"comment_parent":{"index":13.0,"width":150.0,"id":"comment_parent","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_parent","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_parent))}}"},"user_id":{"index":14.0,"width":150.0,"id":"user_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"user_id","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_id))}}"}},"delimiter":",","derivedColumns":{"customColumn1":{"isDerived":true,"computedValue":"","onClick":"{{DeleteQuery.run()}}","textSize":"PARAGRAPH","buttonStyle":"#DD4B34","index":7.0,"isVisible":true,"label":"customColumn1","buttonLabel":"{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}","columnType":"button","horizontalAlignment":"LEFT","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","buttonLabelColor":"#FFFFFF","verticalAlignment":"CENTER"}},"rightColumn":64.0,"textSize":"PARAGRAPH","widgetId":"jabdu9f16g","isVisibleFilters":true,"tableData":"","isVisible":"true","label":"Data","searchKey":"","version":3.0,"parentId":"59rw5mx0bq","serverSidePaginationEnabled":true,"isLoading":false,"isVisibleCompactMode":true,"onSearchTextChanged":"{{SelectQuery.run()}}","horizontalAlignment":"LEFT","isVisibleSearch":true,"isVisiblePagination":true,"verticalAlignment":"CENTER","columnSizeMap":{"task":245.0,"deliveryAddress":170.0,"step":62.0,"id":228.0,"status":75.0}},{"isRequired":false,"widgetName":"col_select","isFilterable":true,"rightColumn":22.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"asmgosgxjm","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"{{SelectQuery.data.length > 0}}","label":"","type":"DROP_DOWN_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"defaultOptionValue":"comment_ID","parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":7.0,"dynamicBindingPathList":[{"key":"isVisible"}],"options":"[\n{\n\t\"label\": \"comment_author\",\n\t\"value\": \"comment_author\"\n}, \n{\n\t\"label\": \"comment_author_url\",\n\t\"value\": \"comment_author_url\"\n}, \n{\n\t\"label\": \"comment_author_email\",\n\t\"value\": \"comment_author_email\"\n}, \n{\n\t\"label\": \"comment_post_ID\",\n\t\"value\": \"comment_post_ID\"\n}, \n{\n\t\"label\": \"comment_ID\",\n\t\"value\": \"comment_ID\"\n}]","onOptionChange":"{{SelectQuery.run()}}","isDisabled":false},{"widgetName":"Text15","rightColumn":7.0,"textAlign":"LEFT","widgetId":"l8pgl90klz","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":19.75,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Order By :"},{"isRequired":false,"widgetName":"order_select","isFilterable":true,"rightColumn":33.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"10v8a19m25","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"{{SelectQuery.data.length > 0}}","label":"","type":"DROP_DOWN_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"defaultOptionValue":"ASC","parentColumnSpace":19.75,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":22.0,"dynamicBindingPathList":[{"key":"isVisible"}],"options":"[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]","onOptionChange":"{{SelectQuery.run()}}","isDisabled":false},{"widgetName":"Text16","rightColumn":64.0,"textAlign":"LEFT","widgetId":"urzv99hdc8","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_comments Data"},{"boxShadow":"NONE","widgetName":"refresh_btn","rightColumn":64.0,"onClick":"{{SelectQuery.run()}}","iconName":"refresh","buttonColor":"#03B365","widgetId":"2jj0197tff","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"CIRCLE","leftColumn":60.0,"dynamicBindingPathList":[],"buttonVariant":"TERTIARY","isDisabled":false},{"boxShadow":"NONE","widgetName":"add_btn","rightColumn":60.0,"onClick":"{{showModal('Insert_Modal')}}","iconName":"add","buttonColor":"#03B365","widgetId":"kby34l9nbb","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"CIRCLE","leftColumn":56.0,"dynamicBindingPathList":[],"buttonVariant":"TERTIARY","isDisabled":false}]}]},{"widgetName":"Delete_Modal","rightColumn":45.0,"detachFromLayout":true,"widgetId":"i3whp03wf0","topRow":13.0,"bottomRow":37.0,"parentRowSpace":10.0,"canOutsideClickClose":true,"type":"MODAL_WIDGET","canEscapeKeyClose":true,"version":2.0,"parentId":"0","shouldScrollContents":false,"isLoading":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":21.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas3","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"zi8fjakv8o","topRow":0.0,"bottomRow":230.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":true,"type":"CANVAS_WIDGET","version":1.0,"parentId":"i3whp03wf0","shouldScrollContents":false,"minHeight":240.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Alert_text","rightColumn":41.0,"textAlign":"LEFT","widgetId":"reyoxo4oec","topRow":1.0,"bottomRow":5.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Delete Row"},{"widgetName":"Button1","rightColumn":46.0,"onClick":"{{closeModal('Delete_Modal')}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03B365","widgetId":"lryg8kw537","topRow":17.0,"bottomRow":21.0,"isVisible":"true","type":"BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":34.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Cancel","isDisabled":false},{"widgetName":"Delete_Button","rightColumn":64.0,"onClick":"{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#F22B2B","widgetId":"qq02lh7ust","topRow":17.0,"bottomRow":21.0,"isVisible":"true","type":"BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":48.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Confirm","isDisabled":false},{"widgetName":"Text12","rightColumn":63.0,"textAlign":"LEFT","widgetId":"48uac29g6e","topRow":8.0,"bottomRow":12.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"parentColumnSpace":6.875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Are you sure you want to delete this item?"}],"isDisabled":false}],"width":456.0,"height":240.0},{"widgetName":"Insert_Modal","rightColumn":41.0,"detachFromLayout":true,"widgetId":"vmorzie6eq","topRow":16.0,"bottomRow":40.0,"parentRowSpace":10.0,"canOutsideClickClose":true,"type":"MODAL_WIDGET","canEscapeKeyClose":true,"version":2.0,"parentId":"0","shouldScrollContents":false,"isLoading":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":17.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas4","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"9rhv3ioohq","topRow":0.0,"bottomRow":610.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":true,"type":"CANVAS_WIDGET","version":1.0,"parentId":"vmorzie6eq","shouldScrollContents":false,"minHeight":600.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Form2","backgroundColor":"#F6F7F8","rightColumn":64.0,"widgetId":"1ruewbc4ef","topRow":0.0,"bottomRow":58.0,"parentRowSpace":10.0,"isVisible":"true","type":"FORM_WIDGET","parentId":"9rhv3ioohq","isLoading":false,"shouldScrollContents":false,"parentColumnSpace":8.0,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas5","rightColumn":224.0,"detachFromLayout":true,"widgetId":"tp9pui0e6y","containerStyle":"none","topRow":0.0,"bottomRow":570.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"1ruewbc4ef","minHeight":580.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"resetFormOnClick":true,"widgetName":"insert_button","rightColumn":62.0,"onClick":"{{InsertQuery.run(() => SelectQuery.run(() => closeModal('Insert_Modal')))}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#03B365","widgetId":"h8vxf3oh4s","topRow":51.0,"bottomRow":55.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":true,"leftColumn":43.0,"dynamicBindingPathList":[],"googleRecaptchaKey":"","buttonVariant":"PRIMARY","text":"Submit"},{"resetFormOnClick":true,"widgetName":"reset_button","rightColumn":42.0,"onClick":"{{closeModal('Insert_Modal')}}","isDefaultClickDisabled":true,"buttonColor":"#03B365","widgetId":"o23gs26wm5","topRow":51.0,"bottomRow":55.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":29.0,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Close"},{"widgetName":"Text21","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"cfmxebyn06","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_ID:"},{"isRequired":false,"widgetName":"insert_col_input1","rightColumn":62.0,"widgetId":"h1wbbv7alb","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"Autogenerated Field","isDisabled":true,"validation":"true"},{"widgetName":"Text22","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"jsffaxrqhw","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":2.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author_email:"},{"isRequired":true,"widgetName":"insert_col_input2","rightColumn":62.0,"widgetId":"6enalyprua","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","defaultText":"","placeholderText":"comment_author_email","isDisabled":false,"validation":"true"},{"widgetName":"Text23","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"btk60uozsm","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_post_ID:"},{"isRequired":true,"widgetName":"insert_col_input3","rightColumn":62.0,"widgetId":"e490gfts69","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"comment_post_ID","defaultText":"","isDisabled":false,"validation":"true"},{"widgetName":"Text14","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"8fm60omwwv","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author:"},{"isRequired":true,"widgetName":"insert_col_input4","rightColumn":62.0,"widgetId":"r55cydp0ao","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"comment_author","defaultText":"","isDisabled":false,"validation":"true"},{"widgetName":"Text24","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"9t3vdjd5xj","topRow":33.0,"bottomRow":37.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author_url:"},{"isRequired":true,"widgetName":"insert_col_input5","rightColumn":62.0,"widgetId":"5rfqxgj0vm","topRow":33.0,"bottomRow":37.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"comment_author_url","isDisabled":false,"validation":"true"},{"widgetName":"Text13Copy","rightColumn":35.0,"textAlign":"LEFT","widgetId":"18x7vdv3gs","topRow":0.0,"bottomRow":4.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Insert Row"}]}]}],"isDisabled":false}],"width":532.0,"height":600.0},{"widgetName":"Form1","backgroundColor":"white","rightColumn":64.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"m7dvlazbn7","topRow":0.0,"bottomRow":46.0,"parentRowSpace":10.0,"isVisible":"{{!!Table1.selectedRow.comment_ID}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40.0,"dynamicBindingPathList":[{"key":"isVisible"}],"children":[{"widgetName":"Canvas2","rightColumn":528.71875,"detachFromLayout":true,"widgetId":"cicukwhp5j","containerStyle":"none","topRow":0.0,"bottomRow":450.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"m7dvlazbn7","minHeight":460.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"resetFormOnClick":false,"widgetName":"update_button","rightColumn":63.0,"onClick":"{{UpdateQuery.run(() => SelectQuery.run(), () => showAlert('Error while updating resource!','error'))}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03B365","widgetId":"4gnygu5jew","topRow":39.0,"bottomRow":43.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":true,"leftColumn":42.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Update"},{"resetFormOnClick":true,"widgetName":"reset_update_button","rightColumn":42.0,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39.0,"bottomRow":43.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28.0,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","rightColumn":63.0,"widgetId":"in8e51pg3y","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.comment_author_email}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63.0,"widgetId":"mlhvfasf31","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.comment_post_ID}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63.0,"widgetId":"0lz9vhcnr0","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.comment_author}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_5","rightColumn":63.0,"widgetId":"m4esf7fww5","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.comment_author_url}}","isDisabled":false,"validation":"true"},{"widgetName":"Text9","rightColumn":63.0,"textAlign":"LEFT","widgetId":"4hnz8ktmz5","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.comment_ID}}"},{"widgetName":"Text17","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"afzzc7q8af","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author_email:"},{"widgetName":"Text18","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_post_ID:"},{"widgetName":"Text19","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author:"},{"widgetName":"Text20","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"gqpwf0yng6","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author_url:"}]}]}]},"layoutOnLoadActions":[[{"id":"Comments_SelectQuery","name":"SelectQuery","pluginType":"DB","jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","Table1.searchText || \"\"","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"timeoutInMillisecond":10000}]],"new":false}],"userPermissions":[],"isHidden":false},"publishedPage":{"name":"Comments","slug":"comments","layouts":[{"id":"Comments","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1280.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":890.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":51.0,"minHeight":900.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0.0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40.0,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0.0,"bottomRow":87.0,"parentRowSpace":10.0,"isVisible":"true","type":"CONTAINER_WIDGET","version":1.0,"parentId":"0","isLoading":false,"parentColumnSpace":19.75,"leftColumn":0.0,"children":[{"widgetName":"Canvas1","rightColumn":632.0,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0.0,"bottomRow":890.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"mvubsemxfo","minHeight":870.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Table1","columnOrder":["comment_ID","comment_post_ID","comment_author","comment_author_email","comment_author_url","comment_author_IP","comment_date","comment_date_gmt","comment_content","comment_karma","comment_approved","comment_agent","comment_type","comment_parent","user_id","customColumn1"],"dynamicPropertyPathList":[{"key":"onPageChange"}],"isVisibleDownload":true,"topRow":10.0,"bottomRow":86.0,"parentRowSpace":10.0,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1.0,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"primaryColumns.customColumn1.onClick"},{"key":"onSearchTextChanged"}],"dynamicBindingPathList":[{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"tableData"},{"key":"primaryColumns.comment_ID.computedValue"},{"key":"primaryColumns.comment_post_ID.computedValue"},{"key":"primaryColumns.comment_author.computedValue"},{"key":"primaryColumns.comment_author_email.computedValue"},{"key":"primaryColumns.comment_author_url.computedValue"},{"key":"primaryColumns.comment_author_IP.computedValue"},{"key":"primaryColumns.comment_date.computedValue"},{"key":"primaryColumns.comment_date_gmt.computedValue"},{"key":"primaryColumns.comment_content.computedValue"},{"key":"primaryColumns.comment_karma.computedValue"},{"key":"primaryColumns.comment_approved.computedValue"},{"key":"primaryColumns.comment_agent.computedValue"},{"key":"primaryColumns.comment_type.computedValue"},{"key":"primaryColumns.comment_parent.computedValue"},{"key":"primaryColumns.user_id.computedValue"}],"leftColumn":0.0,"primaryColumns":{"customColumn1":{"isCellVisible":true,"isDerived":true,"computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.customColumn1))}}","onClick":"{{showModal('Delete_Modal')}}","textSize":"PARAGRAPH","buttonColor":"#DD4B34","index":7.0,"isVisible":true,"label":"Delete","buttonLabel":"{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}","columnType":"button","horizontalAlignment":"LEFT","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF","verticalAlignment":"CENTER"},"comment_ID":{"index":0.0,"width":150.0,"id":"comment_ID","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_ID","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_ID))}}"},"comment_post_ID":{"index":1.0,"width":150.0,"id":"comment_post_ID","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_post_ID","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_post_ID))}}"},"comment_author":{"index":2.0,"width":150.0,"id":"comment_author","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_author","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_author))}}"},"comment_author_email":{"index":3.0,"width":150.0,"id":"comment_author_email","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_author_email","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_email))}}"},"comment_author_url":{"index":4.0,"width":150.0,"id":"comment_author_url","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_author_url","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_url))}}"},"comment_author_IP":{"index":5.0,"width":150.0,"id":"comment_author_IP","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_author_IP","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_IP))}}"},"comment_date":{"index":6.0,"width":150.0,"id":"comment_date","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_date","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_date))}}"},"comment_date_gmt":{"index":7.0,"width":150.0,"id":"comment_date_gmt","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_date_gmt","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_date_gmt))}}"},"comment_content":{"index":8.0,"width":150.0,"id":"comment_content","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_content","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_content))}}"},"comment_karma":{"index":9.0,"width":150.0,"id":"comment_karma","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_karma","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_karma))}}"},"comment_approved":{"index":10.0,"width":150.0,"id":"comment_approved","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_approved","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_approved))}}"},"comment_agent":{"index":11.0,"width":150.0,"id":"comment_agent","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_agent","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_agent))}}"},"comment_type":{"index":12.0,"width":150.0,"id":"comment_type","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_type","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_type))}}"},"comment_parent":{"index":13.0,"width":150.0,"id":"comment_parent","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_parent","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_parent))}}"},"user_id":{"index":14.0,"width":150.0,"id":"user_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"user_id","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_id))}}"}},"delimiter":",","derivedColumns":{"customColumn1":{"isDerived":true,"computedValue":"","onClick":"{{DeleteQuery.run()}}","textSize":"PARAGRAPH","buttonStyle":"#DD4B34","index":7.0,"isVisible":true,"label":"customColumn1","buttonLabel":"{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}","columnType":"button","horizontalAlignment":"LEFT","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","buttonLabelColor":"#FFFFFF","verticalAlignment":"CENTER"}},"rightColumn":64.0,"textSize":"PARAGRAPH","widgetId":"jabdu9f16g","isVisibleFilters":true,"tableData":"","isVisible":"true","label":"Data","searchKey":"","version":3.0,"parentId":"59rw5mx0bq","serverSidePaginationEnabled":true,"isLoading":false,"isVisibleCompactMode":true,"onSearchTextChanged":"{{SelectQuery.run()}}","horizontalAlignment":"LEFT","isVisibleSearch":true,"isVisiblePagination":true,"verticalAlignment":"CENTER","columnSizeMap":{"task":245.0,"deliveryAddress":170.0,"step":62.0,"id":228.0,"status":75.0}},{"isRequired":false,"widgetName":"col_select","isFilterable":true,"rightColumn":22.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"asmgosgxjm","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"{{SelectQuery.data.length > 0}}","label":"","type":"DROP_DOWN_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"defaultOptionValue":"comment_ID","parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":7.0,"dynamicBindingPathList":[{"key":"isVisible"}],"options":"[\n{\n\t\"label\": \"comment_author\",\n\t\"value\": \"comment_author\"\n}, \n{\n\t\"label\": \"comment_author_url\",\n\t\"value\": \"comment_author_url\"\n}, \n{\n\t\"label\": \"comment_author_email\",\n\t\"value\": \"comment_author_email\"\n}, \n{\n\t\"label\": \"comment_post_ID\",\n\t\"value\": \"comment_post_ID\"\n}, \n{\n\t\"label\": \"comment_ID\",\n\t\"value\": \"comment_ID\"\n}]","onOptionChange":"{{SelectQuery.run()}}","isDisabled":false},{"widgetName":"Text15","rightColumn":7.0,"textAlign":"LEFT","widgetId":"l8pgl90klz","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":19.75,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Order By :"},{"isRequired":false,"widgetName":"order_select","isFilterable":true,"rightColumn":33.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"10v8a19m25","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"{{SelectQuery.data.length > 0}}","label":"","type":"DROP_DOWN_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"defaultOptionValue":"ASC","parentColumnSpace":19.75,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":22.0,"dynamicBindingPathList":[{"key":"isVisible"}],"options":"[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]","onOptionChange":"{{SelectQuery.run()}}","isDisabled":false},{"widgetName":"Text16","rightColumn":64.0,"textAlign":"LEFT","widgetId":"urzv99hdc8","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_comments Data"},{"boxShadow":"NONE","widgetName":"refresh_btn","rightColumn":64.0,"onClick":"{{SelectQuery.run()}}","iconName":"refresh","buttonColor":"#03B365","widgetId":"2jj0197tff","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"CIRCLE","leftColumn":60.0,"dynamicBindingPathList":[],"buttonVariant":"TERTIARY","isDisabled":false},{"boxShadow":"NONE","widgetName":"add_btn","rightColumn":60.0,"onClick":"{{showModal('Insert_Modal')}}","iconName":"add","buttonColor":"#03B365","widgetId":"kby34l9nbb","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"CIRCLE","leftColumn":56.0,"dynamicBindingPathList":[],"buttonVariant":"TERTIARY","isDisabled":false}]}]},{"widgetName":"Delete_Modal","rightColumn":45.0,"detachFromLayout":true,"widgetId":"i3whp03wf0","topRow":13.0,"bottomRow":37.0,"parentRowSpace":10.0,"canOutsideClickClose":true,"type":"MODAL_WIDGET","canEscapeKeyClose":true,"version":2.0,"parentId":"0","shouldScrollContents":false,"isLoading":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":21.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas3","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"zi8fjakv8o","topRow":0.0,"bottomRow":230.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":true,"type":"CANVAS_WIDGET","version":1.0,"parentId":"i3whp03wf0","shouldScrollContents":false,"minHeight":240.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Alert_text","rightColumn":41.0,"textAlign":"LEFT","widgetId":"reyoxo4oec","topRow":1.0,"bottomRow":5.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Delete Row"},{"widgetName":"Button1","rightColumn":46.0,"onClick":"{{closeModal('Delete_Modal')}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03B365","widgetId":"lryg8kw537","topRow":17.0,"bottomRow":21.0,"isVisible":"true","type":"BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":34.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Cancel","isDisabled":false},{"widgetName":"Delete_Button","rightColumn":64.0,"onClick":"{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#F22B2B","widgetId":"qq02lh7ust","topRow":17.0,"bottomRow":21.0,"isVisible":"true","type":"BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":48.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Confirm","isDisabled":false},{"widgetName":"Text12","rightColumn":63.0,"textAlign":"LEFT","widgetId":"48uac29g6e","topRow":8.0,"bottomRow":12.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"parentColumnSpace":6.875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Are you sure you want to delete this item?"}],"isDisabled":false}],"width":456.0,"height":240.0},{"widgetName":"Insert_Modal","rightColumn":41.0,"detachFromLayout":true,"widgetId":"vmorzie6eq","topRow":16.0,"bottomRow":40.0,"parentRowSpace":10.0,"canOutsideClickClose":true,"type":"MODAL_WIDGET","canEscapeKeyClose":true,"version":2.0,"parentId":"0","shouldScrollContents":false,"isLoading":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":17.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas4","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"9rhv3ioohq","topRow":0.0,"bottomRow":610.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":true,"type":"CANVAS_WIDGET","version":1.0,"parentId":"vmorzie6eq","shouldScrollContents":false,"minHeight":600.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Form2","backgroundColor":"#F6F7F8","rightColumn":64.0,"widgetId":"1ruewbc4ef","topRow":0.0,"bottomRow":58.0,"parentRowSpace":10.0,"isVisible":"true","type":"FORM_WIDGET","parentId":"9rhv3ioohq","isLoading":false,"shouldScrollContents":false,"parentColumnSpace":8.0,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas5","rightColumn":224.0,"detachFromLayout":true,"widgetId":"tp9pui0e6y","containerStyle":"none","topRow":0.0,"bottomRow":570.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"1ruewbc4ef","minHeight":580.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"resetFormOnClick":true,"widgetName":"insert_button","rightColumn":62.0,"onClick":"{{InsertQuery.run(() => SelectQuery.run(() => closeModal('Insert_Modal')))}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#03B365","widgetId":"h8vxf3oh4s","topRow":51.0,"bottomRow":55.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":true,"leftColumn":43.0,"dynamicBindingPathList":[],"googleRecaptchaKey":"","buttonVariant":"PRIMARY","text":"Submit"},{"resetFormOnClick":true,"widgetName":"reset_button","rightColumn":42.0,"onClick":"{{closeModal('Insert_Modal')}}","isDefaultClickDisabled":true,"buttonColor":"#03B365","widgetId":"o23gs26wm5","topRow":51.0,"bottomRow":55.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":29.0,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Close"},{"widgetName":"Text21","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"cfmxebyn06","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_ID:"},{"isRequired":false,"widgetName":"insert_col_input1","rightColumn":62.0,"widgetId":"h1wbbv7alb","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"Autogenerated Field","isDisabled":true,"validation":"true"},{"widgetName":"Text22","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"jsffaxrqhw","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":2.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author_email:"},{"isRequired":true,"widgetName":"insert_col_input2","rightColumn":62.0,"widgetId":"6enalyprua","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","defaultText":"","placeholderText":"comment_author_email","isDisabled":false,"validation":"true"},{"widgetName":"Text23","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"btk60uozsm","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_post_ID:"},{"isRequired":true,"widgetName":"insert_col_input3","rightColumn":62.0,"widgetId":"e490gfts69","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"comment_post_ID","defaultText":"","isDisabled":false,"validation":"true"},{"widgetName":"Text14","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"8fm60omwwv","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author:"},{"isRequired":true,"widgetName":"insert_col_input4","rightColumn":62.0,"widgetId":"r55cydp0ao","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"comment_author","defaultText":"","isDisabled":false,"validation":"true"},{"widgetName":"Text24","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"9t3vdjd5xj","topRow":33.0,"bottomRow":37.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author_url:"},{"isRequired":true,"widgetName":"insert_col_input5","rightColumn":62.0,"widgetId":"5rfqxgj0vm","topRow":33.0,"bottomRow":37.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"comment_author_url","isDisabled":false,"validation":"true"},{"widgetName":"Text13Copy","rightColumn":35.0,"textAlign":"LEFT","widgetId":"18x7vdv3gs","topRow":0.0,"bottomRow":4.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Insert Row"}]}]}],"isDisabled":false}],"width":532.0,"height":600.0},{"widgetName":"Form1","backgroundColor":"white","rightColumn":64.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"m7dvlazbn7","topRow":0.0,"bottomRow":46.0,"parentRowSpace":10.0,"isVisible":"{{!!Table1.selectedRow.comment_ID}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40.0,"dynamicBindingPathList":[{"key":"isVisible"}],"children":[{"widgetName":"Canvas2","rightColumn":528.71875,"detachFromLayout":true,"widgetId":"cicukwhp5j","containerStyle":"none","topRow":0.0,"bottomRow":450.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"m7dvlazbn7","minHeight":460.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"resetFormOnClick":false,"widgetName":"update_button","rightColumn":63.0,"onClick":"{{UpdateQuery.run(() => SelectQuery.run(), () => showAlert('Error while updating resource!','error'))}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03B365","widgetId":"4gnygu5jew","topRow":39.0,"bottomRow":43.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":true,"leftColumn":42.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Update"},{"resetFormOnClick":true,"widgetName":"reset_update_button","rightColumn":42.0,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39.0,"bottomRow":43.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28.0,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","rightColumn":63.0,"widgetId":"in8e51pg3y","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.comment_author_email}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63.0,"widgetId":"mlhvfasf31","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.comment_post_ID}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63.0,"widgetId":"0lz9vhcnr0","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.comment_author}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_5","rightColumn":63.0,"widgetId":"m4esf7fww5","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.comment_author_url}}","isDisabled":false,"validation":"true"},{"widgetName":"Text9","rightColumn":63.0,"textAlign":"LEFT","widgetId":"4hnz8ktmz5","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.comment_ID}}"},{"widgetName":"Text17","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"afzzc7q8af","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author_email:"},{"widgetName":"Text18","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_post_ID:"},{"widgetName":"Text19","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author:"},{"widgetName":"Text20","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"gqpwf0yng6","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author_url:"}]}]}]},"layoutOnLoadActions":[[{"id":"Comments_SelectQuery","name":"SelectQuery","pluginType":"DB","jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","Table1.searchText || \"\"","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"timeoutInMillisecond":10000}]],"new":false}],"userPermissions":[],"isHidden":false},"new":true},{"userPermissions":["read:pages","manage:pages"],"gitSyncId":"61efc0f939a0da5942775f01_61f3ae21345f0c36171f8d64","unpublishedPage":{"name":"Post Meta","slug":"post-meta","layouts":[{"id":"Post Meta","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1280.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":890.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":51.0,"minHeight":900.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0.0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40.0,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0.0,"bottomRow":87.0,"parentRowSpace":10.0,"isVisible":"true","type":"CONTAINER_WIDGET","version":1.0,"parentId":"0","isLoading":false,"parentColumnSpace":19.75,"leftColumn":0.0,"children":[{"widgetName":"Canvas1","rightColumn":632.0,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0.0,"bottomRow":890.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"mvubsemxfo","minHeight":870.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Table1","columnOrder":["meta_id","post_id","meta_key","meta_value","customColumn1"],"dynamicPropertyPathList":[{"key":"onPageChange"}],"isVisibleDownload":true,"topRow":10.0,"bottomRow":86.0,"parentRowSpace":10.0,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1.0,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"primaryColumns.customColumn1.onClick"},{"key":"onSearchTextChanged"}],"dynamicBindingPathList":[{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"tableData"},{"key":"primaryColumns.meta_id.computedValue"},{"key":"primaryColumns.post_id.computedValue"},{"key":"primaryColumns.meta_key.computedValue"},{"key":"primaryColumns.meta_value.computedValue"}],"leftColumn":0.0,"primaryColumns":{"customColumn1":{"isCellVisible":true,"isDerived":true,"computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.customColumn1))}}","onClick":"{{showModal('Delete_Modal')}}","textSize":"PARAGRAPH","buttonColor":"#DD4B34","index":7.0,"isVisible":true,"label":"Delete","buttonLabel":"{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}","columnType":"button","horizontalAlignment":"LEFT","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF","verticalAlignment":"CENTER"},"meta_id":{"index":0.0,"width":150.0,"id":"meta_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"meta_id","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.meta_id))}}"},"post_id":{"index":1.0,"width":150.0,"id":"post_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_id","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_id))}}"},"meta_key":{"index":2.0,"width":150.0,"id":"meta_key","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"meta_key","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.meta_key))}}"},"meta_value":{"index":3.0,"width":150.0,"id":"meta_value","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"meta_value","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.meta_value))}}"}},"delimiter":",","derivedColumns":{"customColumn1":{"isDerived":true,"computedValue":"","onClick":"{{DeleteQuery.run()}}","textSize":"PARAGRAPH","buttonStyle":"#DD4B34","index":7.0,"isVisible":true,"label":"customColumn1","buttonLabel":"{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}","columnType":"button","horizontalAlignment":"LEFT","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","buttonLabelColor":"#FFFFFF","verticalAlignment":"CENTER"}},"rightColumn":64.0,"textSize":"PARAGRAPH","widgetId":"jabdu9f16g","isVisibleFilters":true,"tableData":"","isVisible":"true","label":"Data","searchKey":"","version":3.0,"parentId":"59rw5mx0bq","serverSidePaginationEnabled":true,"isLoading":false,"isVisibleCompactMode":true,"onSearchTextChanged":"{{SelectQuery.run()}}","horizontalAlignment":"LEFT","isVisibleSearch":true,"isVisiblePagination":true,"verticalAlignment":"CENTER","columnSizeMap":{"task":245.0,"deliveryAddress":170.0,"step":62.0,"id":228.0,"status":75.0}},{"isRequired":false,"widgetName":"col_select","isFilterable":true,"rightColumn":22.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"asmgosgxjm","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"{{SelectQuery.data.length > 0}}","label":"","type":"DROP_DOWN_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"defaultOptionValue":"meta_id","parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":7.0,"dynamicBindingPathList":[{"key":"isVisible"}],"options":"[\n{\n\t\"label\": \"meta_value\",\n\t\"value\": \"meta_value\"\n}, \n{\n\t\"label\": \"meta_key\",\n\t\"value\": \"meta_key\"\n}, \n{\n\t\"label\": \"post_id\",\n\t\"value\": \"post_id\"\n}, \n{\n\t\"label\": \"meta_id\",\n\t\"value\": \"meta_id\"\n}]","onOptionChange":"{{SelectQuery.run()}}","isDisabled":false},{"widgetName":"Text15","rightColumn":7.0,"textAlign":"LEFT","widgetId":"l8pgl90klz","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":19.75,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Order By :"},{"isRequired":false,"widgetName":"order_select","isFilterable":true,"rightColumn":33.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"10v8a19m25","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"{{SelectQuery.data.length > 0}}","label":"","type":"DROP_DOWN_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"defaultOptionValue":"ASC","parentColumnSpace":19.75,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":22.0,"dynamicBindingPathList":[{"key":"isVisible"}],"options":"[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]","onOptionChange":"{{SelectQuery.run()}}","isDisabled":false},{"widgetName":"Text16","rightColumn":64.0,"textAlign":"LEFT","widgetId":"urzv99hdc8","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_postmeta Data"},{"boxShadow":"NONE","widgetName":"refresh_btn","rightColumn":64.0,"onClick":"{{SelectQuery.run()}}","iconName":"refresh","buttonColor":"#03B365","widgetId":"2jj0197tff","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"CIRCLE","leftColumn":60.0,"dynamicBindingPathList":[],"buttonVariant":"TERTIARY","isDisabled":false},{"boxShadow":"NONE","widgetName":"add_btn","rightColumn":60.0,"onClick":"{{showModal('Insert_Modal')}}","iconName":"add","buttonColor":"#03B365","widgetId":"kby34l9nbb","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"CIRCLE","leftColumn":56.0,"dynamicBindingPathList":[],"buttonVariant":"TERTIARY","isDisabled":false}]}]},{"widgetName":"Delete_Modal","rightColumn":45.0,"detachFromLayout":true,"widgetId":"i3whp03wf0","topRow":13.0,"bottomRow":37.0,"parentRowSpace":10.0,"canOutsideClickClose":true,"type":"MODAL_WIDGET","canEscapeKeyClose":true,"version":2.0,"parentId":"0","shouldScrollContents":false,"isLoading":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":21.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas3","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"zi8fjakv8o","topRow":0.0,"bottomRow":230.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":true,"type":"CANVAS_WIDGET","version":1.0,"parentId":"i3whp03wf0","shouldScrollContents":false,"minHeight":240.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Alert_text","rightColumn":41.0,"textAlign":"LEFT","widgetId":"reyoxo4oec","topRow":1.0,"bottomRow":5.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Delete Row"},{"widgetName":"Button1","rightColumn":46.0,"onClick":"{{closeModal('Delete_Modal')}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03B365","widgetId":"lryg8kw537","topRow":17.0,"bottomRow":21.0,"isVisible":"true","type":"BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":34.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Cancel","isDisabled":false},{"widgetName":"Delete_Button","rightColumn":64.0,"onClick":"{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#F22B2B","widgetId":"qq02lh7ust","topRow":17.0,"bottomRow":21.0,"isVisible":"true","type":"BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":48.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Confirm","isDisabled":false},{"widgetName":"Text12","rightColumn":63.0,"textAlign":"LEFT","widgetId":"48uac29g6e","topRow":8.0,"bottomRow":12.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"parentColumnSpace":6.875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Are you sure you want to delete this item?"}],"isDisabled":false}],"width":456.0,"height":240.0},{"widgetName":"Insert_Modal","rightColumn":41.0,"detachFromLayout":true,"widgetId":"vmorzie6eq","topRow":16.0,"bottomRow":40.0,"parentRowSpace":10.0,"canOutsideClickClose":true,"type":"MODAL_WIDGET","canEscapeKeyClose":true,"version":2.0,"parentId":"0","shouldScrollContents":false,"isLoading":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":17.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas4","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"9rhv3ioohq","topRow":0.0,"bottomRow":610.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":true,"type":"CANVAS_WIDGET","version":1.0,"parentId":"vmorzie6eq","shouldScrollContents":false,"minHeight":600.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Form2","backgroundColor":"#F6F7F8","rightColumn":64.0,"widgetId":"1ruewbc4ef","topRow":0.0,"bottomRow":58.0,"parentRowSpace":10.0,"isVisible":"true","type":"FORM_WIDGET","parentId":"9rhv3ioohq","isLoading":false,"shouldScrollContents":false,"parentColumnSpace":8.0,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas5","rightColumn":224.0,"detachFromLayout":true,"widgetId":"tp9pui0e6y","containerStyle":"none","topRow":0.0,"bottomRow":570.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"1ruewbc4ef","minHeight":580.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"resetFormOnClick":true,"widgetName":"insert_button","rightColumn":62.0,"onClick":"{{InsertQuery.run(() => SelectQuery.run(() => closeModal('Insert_Modal')))}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#03B365","widgetId":"h8vxf3oh4s","topRow":51.0,"bottomRow":55.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":true,"leftColumn":43.0,"dynamicBindingPathList":[],"googleRecaptchaKey":"","buttonVariant":"PRIMARY","text":"Submit"},{"resetFormOnClick":true,"widgetName":"reset_button","rightColumn":42.0,"onClick":"{{closeModal('Insert_Modal')}}","isDefaultClickDisabled":true,"buttonColor":"#03B365","widgetId":"o23gs26wm5","topRow":51.0,"bottomRow":55.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":29.0,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Close"},{"widgetName":"Text21","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"cfmxebyn06","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_id:"},{"isRequired":false,"widgetName":"insert_col_input1","rightColumn":62.0,"widgetId":"h1wbbv7alb","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"Autogenerated Field","isDisabled":true,"validation":"true"},{"widgetName":"Text22","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"jsffaxrqhw","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":2.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_key:"},{"isRequired":true,"widgetName":"insert_col_input2","rightColumn":62.0,"widgetId":"6enalyprua","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","defaultText":"","placeholderText":"meta_key","isDisabled":false,"validation":"true"},{"widgetName":"Text23","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"btk60uozsm","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"post_id:"},{"isRequired":true,"widgetName":"insert_col_input3","rightColumn":62.0,"widgetId":"e490gfts69","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"post_id","defaultText":"","isDisabled":false,"validation":"true"},{"widgetName":"Text14","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"8fm60omwwv","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_value:"},{"isRequired":true,"widgetName":"insert_col_input4","rightColumn":62.0,"widgetId":"r55cydp0ao","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"meta_value","defaultText":"","isDisabled":false,"validation":"true"},{"widgetName":"Text13Copy","rightColumn":35.0,"textAlign":"LEFT","widgetId":"18x7vdv3gs","topRow":0.0,"bottomRow":4.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Insert Row"}]}]}],"isDisabled":false}],"width":532.0,"height":600.0},{"widgetName":"Form1","backgroundColor":"white","rightColumn":64.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"m7dvlazbn7","topRow":0.0,"bottomRow":46.0,"parentRowSpace":10.0,"isVisible":"{{!!Table1.selectedRow.meta_id}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40.0,"dynamicBindingPathList":[{"key":"isVisible"}],"children":[{"widgetName":"Canvas2","rightColumn":528.71875,"detachFromLayout":true,"widgetId":"cicukwhp5j","containerStyle":"none","topRow":0.0,"bottomRow":450.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"m7dvlazbn7","minHeight":460.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"resetFormOnClick":false,"widgetName":"update_button","rightColumn":63.0,"onClick":"{{UpdateQuery.run(() => SelectQuery.run(), () => showAlert('Error while updating resource!','error'))}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03B365","widgetId":"4gnygu5jew","topRow":39.0,"bottomRow":43.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":true,"leftColumn":42.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Update"},{"resetFormOnClick":true,"widgetName":"reset_update_button","rightColumn":42.0,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39.0,"bottomRow":43.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28.0,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","rightColumn":63.0,"widgetId":"in8e51pg3y","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.meta_key}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63.0,"widgetId":"mlhvfasf31","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.post_id}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63.0,"widgetId":"0lz9vhcnr0","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.meta_value}}","isDisabled":false,"validation":"true"},{"widgetName":"Text9","rightColumn":63.0,"textAlign":"LEFT","widgetId":"4hnz8ktmz5","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.meta_id}}"},{"widgetName":"Text17","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"afzzc7q8af","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_key:"},{"widgetName":"Text18","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"post_id:"},{"widgetName":"Text19","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_value:"}]}]}]},"layoutOnLoadActions":[[{"id":"Post Meta_SelectQuery","name":"SelectQuery","pluginType":"DB","jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","Table1.searchText || \"\"","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"timeoutInMillisecond":10000}]],"new":false}],"userPermissions":[],"isHidden":false},"publishedPage":{"name":"Post Meta","slug":"post-meta","layouts":[{"id":"Post Meta","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1280.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":890.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":51.0,"minHeight":900.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0.0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40.0,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0.0,"bottomRow":87.0,"parentRowSpace":10.0,"isVisible":"true","type":"CONTAINER_WIDGET","version":1.0,"parentId":"0","isLoading":false,"parentColumnSpace":19.75,"leftColumn":0.0,"children":[{"widgetName":"Canvas1","rightColumn":632.0,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0.0,"bottomRow":890.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"mvubsemxfo","minHeight":870.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Table1","columnOrder":["meta_id","post_id","meta_key","meta_value","customColumn1"],"dynamicPropertyPathList":[{"key":"onPageChange"}],"isVisibleDownload":true,"topRow":10.0,"bottomRow":86.0,"parentRowSpace":10.0,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1.0,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"primaryColumns.customColumn1.onClick"},{"key":"onSearchTextChanged"}],"dynamicBindingPathList":[{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"tableData"},{"key":"primaryColumns.meta_id.computedValue"},{"key":"primaryColumns.post_id.computedValue"},{"key":"primaryColumns.meta_key.computedValue"},{"key":"primaryColumns.meta_value.computedValue"}],"leftColumn":0.0,"primaryColumns":{"customColumn1":{"isCellVisible":true,"isDerived":true,"computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.customColumn1))}}","onClick":"{{showModal('Delete_Modal')}}","textSize":"PARAGRAPH","buttonColor":"#DD4B34","index":7.0,"isVisible":true,"label":"Delete","buttonLabel":"{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}","columnType":"button","horizontalAlignment":"LEFT","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF","verticalAlignment":"CENTER"},"meta_id":{"index":0.0,"width":150.0,"id":"meta_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"meta_id","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.meta_id))}}"},"post_id":{"index":1.0,"width":150.0,"id":"post_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_id","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_id))}}"},"meta_key":{"index":2.0,"width":150.0,"id":"meta_key","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"meta_key","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.meta_key))}}"},"meta_value":{"index":3.0,"width":150.0,"id":"meta_value","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"meta_value","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.meta_value))}}"}},"delimiter":",","derivedColumns":{"customColumn1":{"isDerived":true,"computedValue":"","onClick":"{{DeleteQuery.run()}}","textSize":"PARAGRAPH","buttonStyle":"#DD4B34","index":7.0,"isVisible":true,"label":"customColumn1","buttonLabel":"{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}","columnType":"button","horizontalAlignment":"LEFT","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","buttonLabelColor":"#FFFFFF","verticalAlignment":"CENTER"}},"rightColumn":64.0,"textSize":"PARAGRAPH","widgetId":"jabdu9f16g","isVisibleFilters":true,"tableData":"","isVisible":"true","label":"Data","searchKey":"","version":3.0,"parentId":"59rw5mx0bq","serverSidePaginationEnabled":true,"isLoading":false,"isVisibleCompactMode":true,"onSearchTextChanged":"{{SelectQuery.run()}}","horizontalAlignment":"LEFT","isVisibleSearch":true,"isVisiblePagination":true,"verticalAlignment":"CENTER","columnSizeMap":{"task":245.0,"deliveryAddress":170.0,"step":62.0,"id":228.0,"status":75.0}},{"isRequired":false,"widgetName":"col_select","isFilterable":true,"rightColumn":22.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"asmgosgxjm","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"{{SelectQuery.data.length > 0}}","label":"","type":"DROP_DOWN_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"defaultOptionValue":"meta_id","parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":7.0,"dynamicBindingPathList":[{"key":"isVisible"}],"options":"[\n{\n\t\"label\": \"meta_value\",\n\t\"value\": \"meta_value\"\n}, \n{\n\t\"label\": \"meta_key\",\n\t\"value\": \"meta_key\"\n}, \n{\n\t\"label\": \"post_id\",\n\t\"value\": \"post_id\"\n}, \n{\n\t\"label\": \"meta_id\",\n\t\"value\": \"meta_id\"\n}]","onOptionChange":"{{SelectQuery.run()}}","isDisabled":false},{"widgetName":"Text15","rightColumn":7.0,"textAlign":"LEFT","widgetId":"l8pgl90klz","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":19.75,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Order By :"},{"isRequired":false,"widgetName":"order_select","isFilterable":true,"rightColumn":33.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"10v8a19m25","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"{{SelectQuery.data.length > 0}}","label":"","type":"DROP_DOWN_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"defaultOptionValue":"ASC","parentColumnSpace":19.75,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":22.0,"dynamicBindingPathList":[{"key":"isVisible"}],"options":"[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]","onOptionChange":"{{SelectQuery.run()}}","isDisabled":false},{"widgetName":"Text16","rightColumn":64.0,"textAlign":"LEFT","widgetId":"urzv99hdc8","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_postmeta Data"},{"boxShadow":"NONE","widgetName":"refresh_btn","rightColumn":64.0,"onClick":"{{SelectQuery.run()}}","iconName":"refresh","buttonColor":"#03B365","widgetId":"2jj0197tff","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"CIRCLE","leftColumn":60.0,"dynamicBindingPathList":[],"buttonVariant":"TERTIARY","isDisabled":false},{"boxShadow":"NONE","widgetName":"add_btn","rightColumn":60.0,"onClick":"{{showModal('Insert_Modal')}}","iconName":"add","buttonColor":"#03B365","widgetId":"kby34l9nbb","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"CIRCLE","leftColumn":56.0,"dynamicBindingPathList":[],"buttonVariant":"TERTIARY","isDisabled":false}]}]},{"widgetName":"Delete_Modal","rightColumn":45.0,"detachFromLayout":true,"widgetId":"i3whp03wf0","topRow":13.0,"bottomRow":37.0,"parentRowSpace":10.0,"canOutsideClickClose":true,"type":"MODAL_WIDGET","canEscapeKeyClose":true,"version":2.0,"parentId":"0","shouldScrollContents":false,"isLoading":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":21.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas3","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"zi8fjakv8o","topRow":0.0,"bottomRow":230.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":true,"type":"CANVAS_WIDGET","version":1.0,"parentId":"i3whp03wf0","shouldScrollContents":false,"minHeight":240.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Alert_text","rightColumn":41.0,"textAlign":"LEFT","widgetId":"reyoxo4oec","topRow":1.0,"bottomRow":5.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Delete Row"},{"widgetName":"Button1","rightColumn":46.0,"onClick":"{{closeModal('Delete_Modal')}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03B365","widgetId":"lryg8kw537","topRow":17.0,"bottomRow":21.0,"isVisible":"true","type":"BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":34.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Cancel","isDisabled":false},{"widgetName":"Delete_Button","rightColumn":64.0,"onClick":"{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#F22B2B","widgetId":"qq02lh7ust","topRow":17.0,"bottomRow":21.0,"isVisible":"true","type":"BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":48.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Confirm","isDisabled":false},{"widgetName":"Text12","rightColumn":63.0,"textAlign":"LEFT","widgetId":"48uac29g6e","topRow":8.0,"bottomRow":12.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"parentColumnSpace":6.875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Are you sure you want to delete this item?"}],"isDisabled":false}],"width":456.0,"height":240.0},{"widgetName":"Insert_Modal","rightColumn":41.0,"detachFromLayout":true,"widgetId":"vmorzie6eq","topRow":16.0,"bottomRow":40.0,"parentRowSpace":10.0,"canOutsideClickClose":true,"type":"MODAL_WIDGET","canEscapeKeyClose":true,"version":2.0,"parentId":"0","shouldScrollContents":false,"isLoading":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":17.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas4","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"9rhv3ioohq","topRow":0.0,"bottomRow":610.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":true,"type":"CANVAS_WIDGET","version":1.0,"parentId":"vmorzie6eq","shouldScrollContents":false,"minHeight":600.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Form2","backgroundColor":"#F6F7F8","rightColumn":64.0,"widgetId":"1ruewbc4ef","topRow":0.0,"bottomRow":58.0,"parentRowSpace":10.0,"isVisible":"true","type":"FORM_WIDGET","parentId":"9rhv3ioohq","isLoading":false,"shouldScrollContents":false,"parentColumnSpace":8.0,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas5","rightColumn":224.0,"detachFromLayout":true,"widgetId":"tp9pui0e6y","containerStyle":"none","topRow":0.0,"bottomRow":570.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"1ruewbc4ef","minHeight":580.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"resetFormOnClick":true,"widgetName":"insert_button","rightColumn":62.0,"onClick":"{{InsertQuery.run(() => SelectQuery.run(() => closeModal('Insert_Modal')))}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#03B365","widgetId":"h8vxf3oh4s","topRow":51.0,"bottomRow":55.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":true,"leftColumn":43.0,"dynamicBindingPathList":[],"googleRecaptchaKey":"","buttonVariant":"PRIMARY","text":"Submit"},{"resetFormOnClick":true,"widgetName":"reset_button","rightColumn":42.0,"onClick":"{{closeModal('Insert_Modal')}}","isDefaultClickDisabled":true,"buttonColor":"#03B365","widgetId":"o23gs26wm5","topRow":51.0,"bottomRow":55.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":29.0,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Close"},{"widgetName":"Text21","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"cfmxebyn06","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_id:"},{"isRequired":false,"widgetName":"insert_col_input1","rightColumn":62.0,"widgetId":"h1wbbv7alb","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"Autogenerated Field","isDisabled":true,"validation":"true"},{"widgetName":"Text22","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"jsffaxrqhw","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":2.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_key:"},{"isRequired":true,"widgetName":"insert_col_input2","rightColumn":62.0,"widgetId":"6enalyprua","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","defaultText":"","placeholderText":"meta_key","isDisabled":false,"validation":"true"},{"widgetName":"Text23","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"btk60uozsm","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"post_id:"},{"isRequired":true,"widgetName":"insert_col_input3","rightColumn":62.0,"widgetId":"e490gfts69","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"post_id","defaultText":"","isDisabled":false,"validation":"true"},{"widgetName":"Text14","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"8fm60omwwv","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_value:"},{"isRequired":true,"widgetName":"insert_col_input4","rightColumn":62.0,"widgetId":"r55cydp0ao","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"meta_value","defaultText":"","isDisabled":false,"validation":"true"},{"widgetName":"Text13Copy","rightColumn":35.0,"textAlign":"LEFT","widgetId":"18x7vdv3gs","topRow":0.0,"bottomRow":4.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Insert Row"}]}]}],"isDisabled":false}],"width":532.0,"height":600.0},{"widgetName":"Form1","backgroundColor":"white","rightColumn":64.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"m7dvlazbn7","topRow":0.0,"bottomRow":46.0,"parentRowSpace":10.0,"isVisible":"{{!!Table1.selectedRow.meta_id}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40.0,"dynamicBindingPathList":[{"key":"isVisible"}],"children":[{"widgetName":"Canvas2","rightColumn":528.71875,"detachFromLayout":true,"widgetId":"cicukwhp5j","containerStyle":"none","topRow":0.0,"bottomRow":450.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"m7dvlazbn7","minHeight":460.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"resetFormOnClick":false,"widgetName":"update_button","rightColumn":63.0,"onClick":"{{UpdateQuery.run(() => SelectQuery.run(), () => showAlert('Error while updating resource!','error'))}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03B365","widgetId":"4gnygu5jew","topRow":39.0,"bottomRow":43.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":true,"leftColumn":42.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Update"},{"resetFormOnClick":true,"widgetName":"reset_update_button","rightColumn":42.0,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39.0,"bottomRow":43.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28.0,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","rightColumn":63.0,"widgetId":"in8e51pg3y","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.meta_key}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63.0,"widgetId":"mlhvfasf31","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.post_id}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63.0,"widgetId":"0lz9vhcnr0","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.meta_value}}","isDisabled":false,"validation":"true"},{"widgetName":"Text9","rightColumn":63.0,"textAlign":"LEFT","widgetId":"4hnz8ktmz5","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.meta_id}}"},{"widgetName":"Text17","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"afzzc7q8af","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_key:"},{"widgetName":"Text18","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"post_id:"},{"widgetName":"Text19","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_value:"}]}]}]},"layoutOnLoadActions":[[{"id":"Post Meta_SelectQuery","name":"SelectQuery","pluginType":"DB","jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","Table1.searchText || \"\"","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"timeoutInMillisecond":10000}]],"new":false}],"userPermissions":[],"isHidden":false},"new":true},{"userPermissions":["read:pages","manage:pages"],"gitSyncId":"61efc0f939a0da5942775f01_61efc19939a0da5942775f10","unpublishedPage":{"name":"Blog","slug":"blog","layouts":[{"id":"Blog","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1432,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":1880,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":54,"minHeight":1010,"parentColumnSpace":1,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":32,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":17,"bottomRow":124,"parentRowSpace":10,"isVisible":"true","type":"CONTAINER_WIDGET","version":1,"parentId":"0","isLoading":false,"parentColumnSpace":19.75,"leftColumn":0,"children":[{"widgetName":"Canvas1","rightColumn":632,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0,"bottomRow":1110,"parentRowSpace":1,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1,"parentId":"mvubsemxfo","minHeight":870,"isLoading":false,"parentColumnSpace":1,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[],"children":[{"widgetName":"Table1","columnOrder":["id","post_title","post_author","post_date","post_date_gmt","post_content","post_excerpt","post_status","comment_status","ping_status","post_password","post_name","to_ping","pinged","post_modified","post_modified_gmt","post_content_filtered","post_parent","guid","menu_order","post_type","post_mime_type","comment_count","__hevo__database_name","__hevo__ingested_at","object_id","term_taxonomy_id","term_order","customColumn1"],"dynamicPropertyPathList":[{"key":"onPageChange"}],"isVisibleDownload":true,"topRow":10,"bottomRow":109,"parentRowSpace":10,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"primaryColumns.customColumn1.onClick"},{"key":"onSearchTextChanged"},{"key":"onRowSelected"}],"dynamicBindingPathList":[{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"primaryColumns.post_author.computedValue"},{"key":"primaryColumns.post_date.computedValue"},{"key":"primaryColumns.post_date_gmt.computedValue"},{"key":"primaryColumns.post_content.computedValue"},{"key":"primaryColumns.post_title.computedValue"},{"key":"primaryColumns.post_excerpt.computedValue"},{"key":"primaryColumns.post_status.computedValue"},{"key":"primaryColumns.comment_status.computedValue"},{"key":"primaryColumns.ping_status.computedValue"},{"key":"primaryColumns.post_password.computedValue"},{"key":"primaryColumns.post_name.computedValue"},{"key":"primaryColumns.to_ping.computedValue"},{"key":"primaryColumns.pinged.computedValue"},{"key":"primaryColumns.post_modified.computedValue"},{"key":"primaryColumns.post_modified_gmt.computedValue"},{"key":"primaryColumns.post_content_filtered.computedValue"},{"key":"primaryColumns.post_parent.computedValue"},{"key":"primaryColumns.guid.computedValue"},{"key":"primaryColumns.menu_order.computedValue"},{"key":"primaryColumns.post_type.computedValue"},{"key":"primaryColumns.post_mime_type.computedValue"},{"key":"primaryColumns.comment_count.computedValue"},{"key":"primaryColumns.object_id.computedValue"},{"key":"primaryColumns.term_taxonomy_id.computedValue"},{"key":"primaryColumns.term_order.computedValue"},{"key":"tableData"},{"key":"primaryColumns.id.computedValue"},{"key":"primaryColumns.__hevo__database_name.computedValue"},{"key":"primaryColumns.__hevo__ingested_at.computedValue"}],"leftColumn":0,"primaryColumns":{"customColumn1":{"isCellVisible":true,"isDerived":true,"computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.customColumn1))}}","onClick":"{{showModal('Delete_Modal')}}","textSize":"PARAGRAPH","buttonColor":"#DD4B34","index":7,"isVisible":true,"label":"Delete","buttonLabel":"{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}","columnType":"button","horizontalAlignment":"LEFT","width":150,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF","verticalAlignment":"CENTER"},"post_author":{"index":1,"width":150,"id":"post_author","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_author","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_author))}}"},"post_date":{"index":2,"width":150,"id":"post_date","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_date","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_date))}}"},"post_date_gmt":{"index":3,"width":150,"id":"post_date_gmt","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_date_gmt","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_date_gmt))}}"},"post_content":{"index":4,"width":150,"id":"post_content","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_content","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_content))}}"},"post_title":{"index":5,"width":150,"id":"post_title","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_title","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_title))}}"},"post_excerpt":{"index":6,"width":150,"id":"post_excerpt","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_excerpt","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_excerpt))}}"},"post_status":{"index":7,"width":150,"id":"post_status","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_status","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_status))}}"},"comment_status":{"index":8,"width":150,"id":"comment_status","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_status","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_status))}}"},"ping_status":{"index":9,"width":150,"id":"ping_status","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"ping_status","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.ping_status))}}"},"post_password":{"index":10,"width":150,"id":"post_password","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_password","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_password))}}"},"post_name":{"index":11,"width":150,"id":"post_name","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_name","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_name))}}"},"to_ping":{"index":12,"width":150,"id":"to_ping","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"to_ping","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.to_ping))}}"},"pinged":{"index":13,"width":150,"id":"pinged","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"pinged","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.pinged))}}"},"post_modified":{"index":14,"width":150,"id":"post_modified","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_modified","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_modified))}}"},"post_modified_gmt":{"index":15,"width":150,"id":"post_modified_gmt","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_modified_gmt","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_modified_gmt))}}"},"post_content_filtered":{"index":16,"width":150,"id":"post_content_filtered","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_content_filtered","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_content_filtered))}}"},"post_parent":{"index":17,"width":150,"id":"post_parent","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_parent","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_parent))}}"},"guid":{"index":18,"width":150,"id":"guid","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"guid","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.guid))}}"},"menu_order":{"index":19,"width":150,"id":"menu_order","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"menu_order","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.menu_order))}}"},"post_type":{"index":20,"width":150,"id":"post_type","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_type","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_type))}}"},"post_mime_type":{"index":21,"width":150,"id":"post_mime_type","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_mime_type","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_mime_type))}}"},"comment_count":{"index":22,"width":150,"id":"comment_count","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_count","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_count))}}"},"object_id":{"index":23,"width":150,"id":"object_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"object_id","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.object_id))}}"},"term_taxonomy_id":{"index":24,"width":150,"id":"term_taxonomy_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"term_taxonomy_id","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.term_taxonomy_id))}}"},"term_order":{"index":25,"width":150,"id":"term_order","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"term_order","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.term_order))}}"},"id":{"index":0,"width":150,"id":"id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"id","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.id))}}"},"__hevo__database_name":{"index":23,"width":150,"id":"__hevo__database_name","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"__hevo__database_name","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.__hevo__database_name))}}"},"__hevo__ingested_at":{"index":24,"width":150,"id":"__hevo__ingested_at","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"__hevo__ingested_at","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.__hevo__ingested_at))}}"}},"delimiter":",","onRowSelected":"{{GetComments.run()}}","derivedColumns":{"customColumn1":{"isDerived":true,"computedValue":"","onClick":"{{DeleteQuery.run()}}","textSize":"PARAGRAPH","buttonStyle":"#DD4B34","index":7,"isVisible":true,"label":"customColumn1","buttonLabel":"{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}","columnType":"button","horizontalAlignment":"LEFT","width":150,"enableFilter":true,"enableSort":true,"id":"customColumn1","buttonLabelColor":"#FFFFFF","verticalAlignment":"CENTER"}},"rightColumn":64,"textSize":"PARAGRAPH","widgetId":"jabdu9f16g","isVisibleFilters":true,"tableData":"","isVisible":"true","label":"Data","searchKey":"","version":3,"parentId":"59rw5mx0bq","serverSidePaginationEnabled":true,"isLoading":false,"isVisibleCompactMode":true,"onSearchTextChanged":"{{SelectQuery.run()}}","horizontalAlignment":"LEFT","isVisibleSearch":true,"isVisiblePagination":true,"verticalAlignment":"CENTER","columnSizeMap":{"task":245,"deliveryAddress":170,"step":62,"id":95,"status":75}},{"isRequired":false,"widgetName":"col_select","isFilterable":true,"rightColumn":22,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"asmgosgxjm","topRow":5,"bottomRow":9,"parentRowSpace":10,"isVisible":"{{SelectQuery.data.length > 0}}","label":"","type":"DROP_DOWN_WIDGET","version":1,"parentId":"59rw5mx0bq","isLoading":false,"defaultOptionValue":"ID","parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":7,"dynamicBindingPathList":[{"key":"isVisible"}],"options":"[\n{\n\t\"label\": \"post_date\",\n\t\"value\": \"post_date\"\n}, \n{\n\t\"label\": \"post_date_gmt\",\n\t\"value\": \"post_date_gmt\"\n}, \n{\n\t\"label\": \"guid\",\n\t\"value\": \"guid\"\n}, \n{\n\t\"label\": \"post_author\",\n\t\"value\": \"post_author\"\n}, \n{\n\t\"label\": \"ID\",\n\t\"value\": \"ID\"\n}]","onOptionChange":"{{SelectQuery.run()}}","isDisabled":false},{"widgetName":"Text15","rightColumn":7,"textAlign":"LEFT","widgetId":"l8pgl90klz","topRow":5,"bottomRow":9,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":19.75,"dynamicTriggerPathList":[],"overflow":"NONE","leftColumn":0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Order By :"},{"isRequired":false,"widgetName":"order_select","isFilterable":true,"rightColumn":33,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"10v8a19m25","topRow":5,"bottomRow":9,"parentRowSpace":10,"isVisible":"{{SelectQuery.data.length > 0}}","label":"","type":"DROP_DOWN_WIDGET","version":1,"parentId":"59rw5mx0bq","isLoading":false,"defaultOptionValue":"ASC","parentColumnSpace":19.75,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":22,"dynamicBindingPathList":[{"key":"isVisible"}],"options":"[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]","onOptionChange":"{{SelectQuery.run()}}","isDisabled":false},{"widgetName":"Text16","rightColumn":64,"textAlign":"LEFT","widgetId":"urzv99hdc8","topRow":0,"bottomRow":4,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"overflow":"NONE","leftColumn":0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Blog Posts"},{"boxShadow":"NONE","widgetName":"refresh_btn","rightColumn":64,"onClick":"{{SelectQuery.run()}}","iconName":"refresh","buttonColor":"#03B365","widgetId":"2jj0197tff","topRow":5,"bottomRow":9,"parentRowSpace":10,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"CIRCLE","leftColumn":60,"dynamicBindingPathList":[],"buttonVariant":"TERTIARY","isDisabled":false},{"boxShadow":"NONE","widgetName":"add_btn","rightColumn":60,"onClick":"{{showModal('Insert_Modal')}}","iconName":"add","buttonColor":"#03B365","widgetId":"kby34l9nbb","topRow":5,"bottomRow":9,"parentRowSpace":10,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"CIRCLE","leftColumn":56,"dynamicBindingPathList":[],"buttonVariant":"TERTIARY","isDisabled":false}]}]},{"widgetName":"Delete_Modal","rightColumn":45,"detachFromLayout":true,"widgetId":"i3whp03wf0","topRow":13,"bottomRow":37,"parentRowSpace":10,"canOutsideClickClose":true,"type":"MODAL_WIDGET","canEscapeKeyClose":true,"version":2,"parentId":"0","shouldScrollContents":false,"isLoading":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":21,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas3","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"zi8fjakv8o","topRow":0,"bottomRow":230,"parentRowSpace":1,"isVisible":"true","canExtend":true,"type":"CANVAS_WIDGET","version":1,"parentId":"i3whp03wf0","shouldScrollContents":false,"minHeight":240,"isLoading":false,"parentColumnSpace":1,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[],"children":[{"widgetName":"Alert_text","rightColumn":41,"textAlign":"LEFT","widgetId":"reyoxo4oec","topRow":1,"bottomRow":5,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[],"overflow":"NONE","leftColumn":1,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Delete Row"},{"widgetName":"Button1","rightColumn":46,"onClick":"{{closeModal('Delete_Modal')}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03B365","widgetId":"lryg8kw537","topRow":17,"bottomRow":21,"isVisible":"true","type":"BUTTON_WIDGET","version":1,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":34,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Cancel","isDisabled":false},{"widgetName":"Delete_Button","rightColumn":64,"onClick":"{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#F22B2B","widgetId":"qq02lh7ust","topRow":17,"bottomRow":21,"isVisible":"true","type":"BUTTON_WIDGET","version":1,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":48,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Confirm","isDisabled":false},{"widgetName":"Text12","rightColumn":63,"textAlign":"LEFT","widgetId":"48uac29g6e","topRow":8,"bottomRow":12,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"zi8fjakv8o","isLoading":false,"parentColumnSpace":6.875,"dynamicTriggerPathList":[],"overflow":"NONE","leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Are you sure you want to delete this item?"}],"isDisabled":false}],"width":456,"height":240},{"widgetName":"Insert_Modal","rightColumn":41,"detachFromLayout":true,"widgetId":"vmorzie6eq","topRow":16,"bottomRow":40,"parentRowSpace":10,"canOutsideClickClose":true,"type":"MODAL_WIDGET","canEscapeKeyClose":true,"version":2,"parentId":"0","shouldScrollContents":false,"isLoading":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":17,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas4","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"9rhv3ioohq","topRow":0,"bottomRow":610,"parentRowSpace":1,"isVisible":"true","canExtend":true,"type":"CANVAS_WIDGET","version":1,"parentId":"vmorzie6eq","shouldScrollContents":false,"minHeight":600,"isLoading":false,"parentColumnSpace":1,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[],"children":[{"widgetName":"Form2","backgroundColor":"#F6F7F8","rightColumn":64,"widgetId":"1ruewbc4ef","topRow":0,"bottomRow":58,"parentRowSpace":10,"isVisible":"true","type":"FORM_WIDGET","parentId":"9rhv3ioohq","isLoading":false,"shouldScrollContents":false,"parentColumnSpace":8,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas5","rightColumn":224,"detachFromLayout":true,"widgetId":"tp9pui0e6y","containerStyle":"none","topRow":0,"bottomRow":570,"parentRowSpace":1,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1,"parentId":"1ruewbc4ef","minHeight":580,"isLoading":false,"parentColumnSpace":1,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[],"children":[{"resetFormOnClick":true,"widgetName":"insert_button","rightColumn":62,"onClick":"{{InsertQuery.run(() => SelectQuery.run(() => closeModal('Insert_Modal')))}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#03B365","widgetId":"h8vxf3oh4s","topRow":51,"bottomRow":55,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1,"recaptchaType":"V3","parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":true,"leftColumn":43,"dynamicBindingPathList":[],"googleRecaptchaKey":"","buttonVariant":"PRIMARY","text":"Submit"},{"resetFormOnClick":true,"widgetName":"reset_button","rightColumn":42,"onClick":"{{closeModal('Insert_Modal')}}","isDefaultClickDisabled":true,"buttonColor":"#03B365","widgetId":"o23gs26wm5","topRow":51,"bottomRow":55,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1,"recaptchaType":"V3","parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":29,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Close"},{"widgetName":"Text21","rightColumn":19,"textAlign":"RIGHT","widgetId":"cfmxebyn06","topRow":5,"bottomRow":9,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"overflow":"NONE","leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"ID:"},{"isRequired":false,"widgetName":"insert_col_input1","rightColumn":62,"widgetId":"h1wbbv7alb","topRow":5,"bottomRow":9,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"Autogenerated Field","isDisabled":true,"validation":"true"},{"widgetName":"Text22","rightColumn":19,"textAlign":"RIGHT","widgetId":"jsffaxrqhw","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"overflow":"NONE","leftColumn":2,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"guid:"},{"isRequired":true,"widgetName":"insert_col_input2","rightColumn":62,"widgetId":"6enalyprua","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21,"dynamicBindingPathList":[],"inputType":"TEXT","defaultText":"","placeholderText":"guid","isDisabled":false,"validation":"true"},{"widgetName":"Text23","rightColumn":19,"textAlign":"RIGHT","widgetId":"btk60uozsm","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"overflow":"NONE","leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"post_author:"},{"isRequired":true,"widgetName":"insert_col_input3","rightColumn":62,"widgetId":"e490gfts69","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"post_author","defaultText":"","isDisabled":false,"validation":"true"},{"widgetName":"Text14","rightColumn":19,"textAlign":"RIGHT","widgetId":"8fm60omwwv","topRow":26,"bottomRow":30,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"overflow":"NONE","leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"post_date:"},{"isRequired":true,"widgetName":"insert_col_input4","rightColumn":62,"widgetId":"r55cydp0ao","topRow":26,"bottomRow":30,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"post_date","defaultText":"","isDisabled":false,"validation":"true"},{"widgetName":"Text24","rightColumn":19,"textAlign":"RIGHT","widgetId":"9t3vdjd5xj","topRow":33,"bottomRow":37,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"overflow":"NONE","leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"post_date_gmt:"},{"isRequired":true,"widgetName":"insert_col_input5","rightColumn":62,"widgetId":"5rfqxgj0vm","topRow":33,"bottomRow":37,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"post_date_gmt","isDisabled":false,"validation":"true"},{"widgetName":"Text13Copy","rightColumn":35,"textAlign":"LEFT","widgetId":"18x7vdv3gs","topRow":0,"bottomRow":4,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"overflow":"NONE","leftColumn":0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Insert Row"}]}]}],"isDisabled":false}],"width":532,"height":600},{"widgetName":"Form1","backgroundColor":"white","rightColumn":64,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"m7dvlazbn7","topRow":73,"bottomRow":124,"parentRowSpace":10,"isVisible":"{{!!Table1.selectedRow.id}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":32,"dynamicBindingPathList":[{"key":"isVisible"}],"children":[{"widgetName":"Canvas2","rightColumn":528.71875,"detachFromLayout":true,"widgetId":"cicukwhp5j","containerStyle":"none","topRow":0,"bottomRow":450,"parentRowSpace":1,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1,"parentId":"m7dvlazbn7","minHeight":460,"isLoading":false,"parentColumnSpace":1,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[],"children":[{"widgetName":"Text20Copy","rightColumn":13,"textAlign":"RIGHT","widgetId":"1sjs79otqs","topRow":28,"bottomRow":32,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","leftColumn":0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Author"},{"widgetName":"author","isFilterable":false,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":28,"bottomRow":35,"parentRowSpace":10,"type":"DROP_DOWN_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{Table1.selectedRow.post_author\n}}","selectionType":"SINGLE_SELECT","animateLoading":true,"parentColumnSpace":12.16796875,"dynamicTriggerPathList":[],"leftColumn":13,"dynamicBindingPathList":[{"key":"defaultOptionValue"},{"key":"options"}],"options":"{{GetUsers.data.map(({id:value,user_nicename:label})=>({value,label}))}}","placeholderText":"Select option","isDisabled":false,"key":"csk41khcun","isRequired":false,"rightColumn":63,"widgetId":"7c1l22596b","isVisible":true,"version":1,"parentId":"cicukwhp5j","renderMode":"CANVAS","isLoading":false},{"resetFormOnClick":false,"widgetName":"update_button","rightColumn":63,"onClick":"{{UpdateQuery.run(() => SelectQuery.run(), () => showAlert('Error while updating resource!','error'))}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03B365","widgetId":"4gnygu5jew","topRow":36,"bottomRow":40,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":true,"leftColumn":42,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Update"},{"resetFormOnClick":true,"widgetName":"reset_update_button","rightColumn":41,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":36,"bottomRow":40,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":27,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"title","rightColumn":63,"widgetId":"in8e51pg3y","topRow":5,"bottomRow":9,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":13,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.post_title}}","isDisabled":false,"validation":"true"},{"isRequired":false,"widgetName":"excerpt","rightColumn":63,"widgetId":"mlhvfasf31","topRow":10,"bottomRow":20,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":13,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.post_excerpt}}","isDisabled":false,"validation":"true"},{"widgetName":"Text9","rightColumn":63,"textAlign":"LEFT","widgetId":"4hnz8ktmz5","topRow":0,"bottomRow":4,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"overflow":"NONE","leftColumn":1,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Post: {{Table1.selectedRow.post_title}}"},{"widgetName":"Text17","rightColumn":13,"textAlign":"RIGHT","widgetId":"afzzc7q8af","topRow":5,"bottomRow":9,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","leftColumn":0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Title"},{"widgetName":"Text18","rightColumn":13,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":10,"bottomRow":14,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","leftColumn":0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Excerpt"},{"widgetName":"Text20","rightColumn":13,"textAlign":"RIGHT","widgetId":"gqpwf0yng6","topRow":21,"bottomRow":25,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"overflow":"NONE","leftColumn":0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Post status"},{"widgetName":"p_status","isFilterable":false,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":21,"bottomRow":28,"parentRowSpace":10,"type":"DROP_DOWN_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{Table1.selectedRow.post_status}}","selectionType":"SINGLE_SELECT","animateLoading":true,"parentColumnSpace":9.59375,"dynamicTriggerPathList":[],"leftColumn":13,"dynamicBindingPathList":[{"key":"defaultOptionValue"}],"options":"[\n {\n \"label\": \"Publish\",\n \"value\": \"publish\"\n },\n {\n \"label\": \"Draft\",\n \"value\": \"draft\"\n },\n {\n \"label\": \"Auto draft\",\n \"value\": \"auto-draft\"\n }\n]","placeholderText":"Select option","isDisabled":false,"key":"mlwomqyu3s","isRequired":false,"rightColumn":63,"widgetId":"lo0yxls487","isVisible":true,"version":1,"parentId":"cicukwhp5j","renderMode":"CANVAS","isLoading":false}]}]},{"boxShadow":"NONE","widgetName":"Container2","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3.svg","topRow":17,"bottomRow":71,"parentRowSpace":10,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":22.1875,"leftColumn":32,"children":[{"widgetName":"Canvas6","rightColumn":532.5,"detachFromLayout":true,"displayName":"Canvas","widgetId":"ns44diaamt","containerStyle":"none","topRow":0,"bottomRow":490,"parentRowSpace":1,"isVisible":true,"type":"CANVAS_WIDGET","canExtend":false,"version":1,"hideCard":true,"parentId":"z86ak9za7r","minHeight":400,"renderMode":"CANVAS","isLoading":false,"parentColumnSpace":1,"leftColumn":0,"children":[{"widgetName":"Text25","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":0,"bottomRow":4,"parentRowSpace":10,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":12.16796875,"dynamicTriggerPathList":[],"overflow":"NONE","leftColumn":0,"dynamicBindingPathList":[{"key":"text"}],"truncateButtonColor":"#FFC13D","text":"{{Table1.selectedRow.post_title}}","key":"6pacxcck35","rightColumn":64,"textAlign":"LEFT","widgetId":"lhjdqceozq","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"ns44diaamt","renderMode":"CANVAS","isLoading":false,"fontSize":"HEADING1"},{"widgetName":"Text26","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":9,"bottomRow":47,"parentRowSpace":10,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":12.16796875,"dynamicTriggerPathList":[],"overflow":"NONE","leftColumn":0,"dynamicBindingPathList":[{"key":"text"}],"truncateButtonColor":"#FFC13D","text":"{{Table1.selectedRow.post_content}}","key":"6pacxcck35","rightColumn":64,"textAlign":"LEFT","widgetId":"msnx2elzmi","isVisible":true,"fontStyle":"","textColor":"#231F20","version":1,"parentId":"ns44diaamt","renderMode":"CANVAS","isLoading":false,"fontSize":"PARAGRAPH"}],"key":"m1q7rvnf0q"}],"borderWidth":"0","key":"6q011hdwm8","backgroundColor":"#FFFFFF","rightColumn":64,"widgetId":"z86ak9za7r","containerStyle":"card","isVisible":true,"version":1,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"0"},{"widgetName":"categories","displayName":"MultiSelect","iconSVG":"/static/media/icon.a3495809.svg","labelText":"","topRow":9,"bottomRow":16,"parentRowSpace":10,"type":"MULTI_SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"[0]","animateLoading":true,"parentColumnSpace":22.1875,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":6,"dynamicBindingPathList":[{"key":"options"}],"options":"{{GetCategories.data.map(cat=>({label:cat.name,value:cat.term_id}))}}","placeholderText":"Select categories","isDisabled":false,"key":"o2jl2eb348","isRequired":false,"rightColumn":26,"widgetId":"n2sv5nbi06","isVisible":true,"version":1,"parentId":"0","renderMode":"CANVAS","isLoading":false,"onOptionChange":"{{SelectQuery.run()}}"},{"widgetName":"Text27","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":10,"bottomRow":14,"parentRowSpace":10,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":22.1875,"dynamicTriggerPathList":[],"overflow":"NONE","leftColumn":0,"dynamicBindingPathList":[],"truncateButtonColor":"#FFC13D","text":"Show posts from","key":"kf4mmyg152","rightColumn":6,"textAlign":"LEFT","widgetId":"mywn2w5z48","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"0","renderMode":"CANVAS","isLoading":false,"fontSize":"PARAGRAPH"},{"widgetName":"Text28","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":0,"bottomRow":7,"parentRowSpace":10,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":22.1875,"dynamicTriggerPathList":[],"overflow":"NONE","leftColumn":21,"dynamicBindingPathList":[],"truncateButtonColor":"#FFC13D","text":"A Simple Blog Admin","key":"kf4mmyg152","rightColumn":37,"textAlign":"CENTER","widgetId":"3k35414uwf","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"0","renderMode":"CANVAS","isLoading":false,"fontSize":"HEADING1"},{"widgetName":"Table2","defaultPageSize":0,"columnOrder":["comment_ID","comment_post_ID","comment_author","comment_author_email","comment_author_url","comment_author_IP","comment_date","comment_date_gmt","comment_content","comment_karma","comment_approved","comment_agent","comment_type","comment_parent","user_id"],"isVisibleDownload":true,"dynamicPropertyPathList":[],"displayName":"Table","iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":125,"bottomRow":186,"isSortable":true,"parentRowSpace":10,"type":"TABLE_WIDGET","defaultSelectedRow":"0","hideCard":false,"animateLoading":true,"parentColumnSpace":30.234375,"dynamicTriggerPathList":[],"dynamicBindingPathList":[{"key":"tableData"},{"key":"primaryColumns.comment_ID.computedValue"},{"key":"primaryColumns.comment_post_ID.computedValue"},{"key":"primaryColumns.comment_author.computedValue"},{"key":"primaryColumns.comment_author_email.computedValue"},{"key":"primaryColumns.comment_author_url.computedValue"},{"key":"primaryColumns.comment_author_IP.computedValue"},{"key":"primaryColumns.comment_date.computedValue"},{"key":"primaryColumns.comment_date_gmt.computedValue"},{"key":"primaryColumns.comment_content.computedValue"},{"key":"primaryColumns.comment_karma.computedValue"},{"key":"primaryColumns.comment_approved.computedValue"},{"key":"primaryColumns.comment_agent.computedValue"},{"key":"primaryColumns.comment_type.computedValue"},{"key":"primaryColumns.comment_parent.computedValue"},{"key":"primaryColumns.user_id.computedValue"}],"leftColumn":0,"primaryColumns":{"comment_ID":{"index":0,"width":150,"id":"comment_ID","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_ID","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_ID))}}"},"comment_post_ID":{"index":1,"width":150,"id":"comment_post_ID","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_post_ID","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_post_ID))}}"},"comment_author":{"index":2,"width":150,"id":"comment_author","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_author","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_author))}}"},"comment_author_email":{"index":3,"width":150,"id":"comment_author_email","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_author_email","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_email))}}"},"comment_author_url":{"index":4,"width":150,"id":"comment_author_url","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_author_url","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_url))}}"},"comment_author_IP":{"index":5,"width":150,"id":"comment_author_IP","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_author_IP","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_IP))}}"},"comment_date":{"index":6,"width":150,"id":"comment_date","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_date","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_date))}}"},"comment_date_gmt":{"index":7,"width":150,"id":"comment_date_gmt","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_date_gmt","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_date_gmt))}}"},"comment_content":{"index":8,"width":150,"id":"comment_content","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_content","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_content))}}"},"comment_karma":{"index":9,"width":150,"id":"comment_karma","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_karma","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_karma))}}"},"comment_approved":{"index":10,"width":150,"id":"comment_approved","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_approved","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_approved))}}"},"comment_agent":{"index":11,"width":150,"id":"comment_agent","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_agent","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_agent))}}"},"comment_type":{"index":12,"width":150,"id":"comment_type","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_type","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_type))}}"},"comment_parent":{"index":13,"width":150,"id":"comment_parent","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_parent","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_parent))}}"},"user_id":{"index":14,"width":150,"id":"user_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"user_id","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.user_id))}}"}},"delimiter":",","key":"3o40dz6neg","derivedColumns":{},"rightColumn":64,"textSize":"PARAGRAPH","widgetId":"0w2wtazhe9","isVisibleFilters":true,"tableData":"{{GetComments.data}}","isVisible":true,"label":"Data","searchKey":"","enableClientSideSearch":true,"version":3,"totalRecordsCount":0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"horizontalAlignment":"LEFT","isVisibleSearch":true,"isVisiblePagination":true,"verticalAlignment":"CENTER","columnSizeMap":{"task":245,"step":62,"status":75}},{"widgetName":"Modal1","isCanvas":true,"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","topRow":7,"bottomRow":31,"parentRowSpace":10,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":19.8125,"leftColumn":38,"children":[{"widgetName":"Canvas7","displayName":"Canvas","topRow":0,"bottomRow":760,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":770,"parentColumnSpace":1,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[],"children":[{"widgetName":"Icon1","rightColumn":64,"onClick":"{{closeModal('Modal1')}}","iconName":"cross","buttonColor":"#2E3D49","displayName":"Icon","iconSVG":"/static/media/icon.31d6cfe0.svg","widgetId":"hmgi4boxq2","topRow":1,"bottomRow":5,"isVisible":true,"type":"ICON_BUTTON_WIDGET","version":1,"hideCard":true,"parentId":"76vv2ztsz3","renderMode":"CANVAS","isLoading":false,"leftColumn":56,"borderRadius":"SHARP","buttonVariant":"TERTIARY","iconSize":24,"key":"o7daf79fmd"},{"widgetName":"Text29","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":1,"bottomRow":5,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"dynamicTriggerPathList":[],"overflow":"NONE","leftColumn":1,"dynamicBindingPathList":[],"truncateButtonColor":"#FFC13D","text":"Post Comments","key":"brfs5vee1o","rightColumn":41,"textAlign":"LEFT","widgetId":"53g2qiabn4","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"76vv2ztsz3","renderMode":"CANVAS","isLoading":false,"fontSize":"HEADING1"},{"widgetName":"Button2","onClick":"{{closeModal('Modal1')}}","buttonColor":"#03B365","displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":70,"bottomRow":74,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":38,"text":"Close","isDisabled":false,"key":"5m8dfthjur","rightColumn":50,"isDefaultClickDisabled":true,"widgetId":"xuk880axit","buttonStyle":"PRIMARY","isVisible":true,"recaptchaType":"V3","version":1,"parentId":"76vv2ztsz3","renderMode":"CANVAS","isLoading":false,"buttonVariant":"SECONDARY","placement":"CENTER"},{"widgetName":"Button3","buttonColor":"#03B365","displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":70,"bottomRow":74,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":50,"text":"Confirm","isDisabled":false,"key":"5m8dfthjur","rightColumn":62,"isDefaultClickDisabled":true,"widgetId":"1qemf70h8t","buttonStyle":"PRIMARY_BUTTON","isVisible":true,"recaptchaType":"V3","version":1,"parentId":"76vv2ztsz3","renderMode":"CANVAS","isLoading":false,"buttonVariant":"PRIMARY","placement":"CENTER"},{"widgetName":"Table3","defaultPageSize":0,"columnOrder":["step","task","status","action"],"isVisibleDownload":true,"displayName":"Table","iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":7,"bottomRow":61,"isSortable":true,"parentRowSpace":10,"type":"TABLE_WIDGET","defaultSelectedRow":"0","hideCard":false,"animateLoading":true,"parentColumnSpace":14.96875,"dynamicTriggerPathList":[],"dynamicBindingPathList":[{"key":"primaryColumns.step.computedValue"},{"key":"primaryColumns.task.computedValue"},{"key":"primaryColumns.status.computedValue"},{"key":"primaryColumns.action.computedValue"},{"key":"tableData"}],"leftColumn":1,"primaryColumns":{"step":{"index":0,"width":150,"id":"step","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isCellVisible":true,"isDerived":false,"label":"step","computedValue":"{{Table3.sanitizedTableData.map((currentRow) => ( currentRow.step))}}","buttonColor":"#03B365","menuColor":"#03B365","labelColor":"#FFFFFF"},"task":{"index":1,"width":150,"id":"task","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isCellVisible":true,"isDerived":false,"label":"task","computedValue":"{{Table3.sanitizedTableData.map((currentRow) => ( currentRow.task))}}","buttonColor":"#03B365","menuColor":"#03B365","labelColor":"#FFFFFF"},"status":{"index":2,"width":150,"id":"status","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isCellVisible":true,"isDerived":false,"label":"status","computedValue":"{{Table3.sanitizedTableData.map((currentRow) => ( currentRow.status))}}","buttonColor":"#03B365","menuColor":"#03B365","labelColor":"#FFFFFF"},"action":{"index":3,"width":150,"id":"action","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"button","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isCellVisible":true,"isDisabled":false,"isDerived":false,"label":"action","onClick":"{{currentRow.step === '#1' ? showAlert('Done', 'success') : currentRow.step === '#2' ? navigateTo('https://docs.appsmith.com/core-concepts/connecting-to-data-sources/querying-a-database',undefined,'NEW_WINDOW') : navigateTo('https://docs.appsmith.com/core-concepts/displaying-data-read/display-data-tables',undefined,'NEW_WINDOW')}}","computedValue":"{{Table3.sanitizedTableData.map((currentRow) => ( currentRow.action))}}","buttonColor":"#03B365","menuColor":"#03B365","labelColor":"#FFFFFF"}},"delimiter":",","key":"mcujxyczb9","derivedColumns":{},"rightColumn":63,"textSize":"PARAGRAPH","widgetId":"iyd643nar2","isVisibleFilters":true,"tableData":"{{GetComments.data}}","isVisible":true,"label":"Data","searchKey":"","enableClientSideSearch":true,"version":3,"totalRecordsCount":0,"parentId":"76vv2ztsz3","renderMode":"CANVAS","isLoading":false,"horizontalAlignment":"LEFT","isVisibleSearch":true,"isVisiblePagination":true,"verticalAlignment":"CENTER","columnSizeMap":{"task":245,"step":62,"status":75}}],"isDisabled":false,"key":"r6kp6re5b6","rightColumn":475.5,"detachFromLayout":true,"widgetId":"76vv2ztsz3","isVisible":true,"version":1,"parentId":"wmh1lgly6x","renderMode":"CANVAS","isLoading":false}],"key":"x9fztaaory","height":770,"rightColumn":62,"detachFromLayout":true,"widgetId":"wmh1lgly6x","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2,"parentId":"0","renderMode":"CANVAS","isLoading":false,"width":970}]},"layoutOnLoadActions":[[{"id":"Blog_SelectQuery","name":"SelectQuery","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","categories.selectedOptionValues.reduce((str,value)=>`${str},${value}`,'0')","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"timeoutInMillisecond":10000}],[{"id":"Blog_GetUsers","name":"GetUsers","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","Table1.searchText || \"\"","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"timeoutInMillisecond":10000}],[{"id":"Blog_GetComments","name":"GetComments","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":["Table1.selectedRow.id"],"timeoutInMillisecond":10000}],[{"id":"Blog_GetCategories","name":"GetCategories","confirmBeforeExecute":false,"pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000}]],"new":false}],"userPermissions":[],"isHidden":false},"publishedPage":{"name":"Blog","slug":"blog","layouts":[{"id":"Blog","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1280.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":1880.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":51.0,"minHeight":1010.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0.0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":32.0,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":17.0,"bottomRow":124.0,"parentRowSpace":10.0,"isVisible":"true","type":"CONTAINER_WIDGET","version":1.0,"parentId":"0","isLoading":false,"parentColumnSpace":19.75,"leftColumn":0.0,"children":[{"widgetName":"Canvas1","rightColumn":632.0,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0.0,"bottomRow":1110.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"mvubsemxfo","minHeight":870.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Table1","columnOrder":["ID","post_title","post_excerpt","post_status","post_author","post_date","post_date_gmt","post_content","comment_status","ping_status","post_password","post_name","to_ping","pinged","post_modified","post_modified_gmt","post_content_filtered","post_parent","guid","menu_order","post_type","post_mime_type","comment_count","object_id","term_taxonomy_id","term_order","customColumn1"],"dynamicPropertyPathList":[{"key":"onPageChange"}],"isVisibleDownload":true,"topRow":10.0,"bottomRow":109.0,"parentRowSpace":10.0,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1.0,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"primaryColumns.customColumn1.onClick"},{"key":"onSearchTextChanged"},{"key":"onRowSelected"}],"dynamicBindingPathList":[{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"primaryColumns.ID.computedValue"},{"key":"primaryColumns.post_author.computedValue"},{"key":"primaryColumns.post_date.computedValue"},{"key":"primaryColumns.post_date_gmt.computedValue"},{"key":"primaryColumns.post_content.computedValue"},{"key":"primaryColumns.post_title.computedValue"},{"key":"primaryColumns.post_excerpt.computedValue"},{"key":"primaryColumns.post_status.computedValue"},{"key":"primaryColumns.comment_status.computedValue"},{"key":"primaryColumns.ping_status.computedValue"},{"key":"primaryColumns.post_password.computedValue"},{"key":"primaryColumns.post_name.computedValue"},{"key":"primaryColumns.to_ping.computedValue"},{"key":"primaryColumns.pinged.computedValue"},{"key":"primaryColumns.post_modified.computedValue"},{"key":"primaryColumns.post_modified_gmt.computedValue"},{"key":"primaryColumns.post_content_filtered.computedValue"},{"key":"primaryColumns.post_parent.computedValue"},{"key":"primaryColumns.guid.computedValue"},{"key":"primaryColumns.menu_order.computedValue"},{"key":"primaryColumns.post_type.computedValue"},{"key":"primaryColumns.post_mime_type.computedValue"},{"key":"primaryColumns.comment_count.computedValue"},{"key":"primaryColumns.object_id.computedValue"},{"key":"primaryColumns.term_taxonomy_id.computedValue"},{"key":"primaryColumns.term_order.computedValue"}],"leftColumn":0.0,"primaryColumns":{"customColumn1":{"isCellVisible":true,"isDerived":true,"computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.customColumn1))}}","onClick":"{{showModal('Delete_Modal')}}","textSize":"PARAGRAPH","buttonColor":"#DD4B34","index":7.0,"isVisible":true,"label":"Delete","buttonLabel":"{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}","columnType":"button","horizontalAlignment":"LEFT","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF","verticalAlignment":"CENTER"},"ID":{"index":0.0,"width":150.0,"id":"ID","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"ID","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.ID))}}"},"post_author":{"index":1.0,"width":150.0,"id":"post_author","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_author","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_author))}}"},"post_date":{"index":2.0,"width":150.0,"id":"post_date","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_date","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_date))}}"},"post_date_gmt":{"index":3.0,"width":150.0,"id":"post_date_gmt","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_date_gmt","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_date_gmt))}}"},"post_content":{"index":4.0,"width":150.0,"id":"post_content","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_content","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_content))}}"},"post_title":{"index":5.0,"width":150.0,"id":"post_title","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_title","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_title))}}"},"post_excerpt":{"index":6.0,"width":150.0,"id":"post_excerpt","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_excerpt","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_excerpt))}}"},"post_status":{"index":7.0,"width":150.0,"id":"post_status","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_status","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_status))}}"},"comment_status":{"index":8.0,"width":150.0,"id":"comment_status","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_status","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_status))}}"},"ping_status":{"index":9.0,"width":150.0,"id":"ping_status","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"ping_status","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.ping_status))}}"},"post_password":{"index":10.0,"width":150.0,"id":"post_password","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_password","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_password))}}"},"post_name":{"index":11.0,"width":150.0,"id":"post_name","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_name","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_name))}}"},"to_ping":{"index":12.0,"width":150.0,"id":"to_ping","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"to_ping","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.to_ping))}}"},"pinged":{"index":13.0,"width":150.0,"id":"pinged","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"pinged","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.pinged))}}"},"post_modified":{"index":14.0,"width":150.0,"id":"post_modified","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_modified","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_modified))}}"},"post_modified_gmt":{"index":15.0,"width":150.0,"id":"post_modified_gmt","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_modified_gmt","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_modified_gmt))}}"},"post_content_filtered":{"index":16.0,"width":150.0,"id":"post_content_filtered","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_content_filtered","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_content_filtered))}}"},"post_parent":{"index":17.0,"width":150.0,"id":"post_parent","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_parent","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_parent))}}"},"guid":{"index":18.0,"width":150.0,"id":"guid","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"guid","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.guid))}}"},"menu_order":{"index":19.0,"width":150.0,"id":"menu_order","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"menu_order","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.menu_order))}}"},"post_type":{"index":20.0,"width":150.0,"id":"post_type","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_type","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_type))}}"},"post_mime_type":{"index":21.0,"width":150.0,"id":"post_mime_type","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"post_mime_type","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_mime_type))}}"},"comment_count":{"index":22.0,"width":150.0,"id":"comment_count","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_count","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_count))}}"},"object_id":{"index":23.0,"width":150.0,"id":"object_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"object_id","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.object_id))}}"},"term_taxonomy_id":{"index":24.0,"width":150.0,"id":"term_taxonomy_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"term_taxonomy_id","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.term_taxonomy_id))}}"},"term_order":{"index":25.0,"width":150.0,"id":"term_order","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"term_order","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.term_order))}}"}},"delimiter":",","onRowSelected":"{{GetComments.run()}}","derivedColumns":{"customColumn1":{"isDerived":true,"computedValue":"","onClick":"{{DeleteQuery.run()}}","textSize":"PARAGRAPH","buttonStyle":"#DD4B34","index":7.0,"isVisible":true,"label":"customColumn1","buttonLabel":"{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}","columnType":"button","horizontalAlignment":"LEFT","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","buttonLabelColor":"#FFFFFF","verticalAlignment":"CENTER"}},"rightColumn":64.0,"textSize":"PARAGRAPH","widgetId":"jabdu9f16g","isVisibleFilters":true,"tableData":"","isVisible":"true","label":"Data","searchKey":"","version":3.0,"parentId":"59rw5mx0bq","serverSidePaginationEnabled":true,"isLoading":false,"isVisibleCompactMode":true,"onSearchTextChanged":"{{SelectQuery.run()}}","horizontalAlignment":"LEFT","isVisibleSearch":true,"isVisiblePagination":true,"verticalAlignment":"CENTER","columnSizeMap":{"task":245.0,"deliveryAddress":170.0,"step":62.0,"id":228.0,"status":75.0}},{"isRequired":false,"widgetName":"col_select","isFilterable":true,"rightColumn":22.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"asmgosgxjm","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"{{SelectQuery.data.length > 0}}","label":"","type":"DROP_DOWN_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"defaultOptionValue":"ID","parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":7.0,"dynamicBindingPathList":[{"key":"isVisible"}],"options":"[\n{\n\t\"label\": \"post_date\",\n\t\"value\": \"post_date\"\n}, \n{\n\t\"label\": \"post_date_gmt\",\n\t\"value\": \"post_date_gmt\"\n}, \n{\n\t\"label\": \"guid\",\n\t\"value\": \"guid\"\n}, \n{\n\t\"label\": \"post_author\",\n\t\"value\": \"post_author\"\n}, \n{\n\t\"label\": \"ID\",\n\t\"value\": \"ID\"\n}]","onOptionChange":"{{SelectQuery.run()}}","isDisabled":false},{"widgetName":"Text15","rightColumn":7.0,"textAlign":"LEFT","widgetId":"l8pgl90klz","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":19.75,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Order By :"},{"isRequired":false,"widgetName":"order_select","isFilterable":true,"rightColumn":33.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"10v8a19m25","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"{{SelectQuery.data.length > 0}}","label":"","type":"DROP_DOWN_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"defaultOptionValue":"ASC","parentColumnSpace":19.75,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":22.0,"dynamicBindingPathList":[{"key":"isVisible"}],"options":"[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]","onOptionChange":"{{SelectQuery.run()}}","isDisabled":false},{"widgetName":"Text16","rightColumn":64.0,"textAlign":"LEFT","widgetId":"urzv99hdc8","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Blog Posts"},{"boxShadow":"NONE","widgetName":"refresh_btn","rightColumn":64.0,"onClick":"{{SelectQuery.run()}}","iconName":"refresh","buttonColor":"#03B365","widgetId":"2jj0197tff","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"CIRCLE","leftColumn":60.0,"dynamicBindingPathList":[],"buttonVariant":"TERTIARY","isDisabled":false},{"boxShadow":"NONE","widgetName":"add_btn","rightColumn":60.0,"onClick":"{{showModal('Insert_Modal')}}","iconName":"add","buttonColor":"#03B365","widgetId":"kby34l9nbb","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"CIRCLE","leftColumn":56.0,"dynamicBindingPathList":[],"buttonVariant":"TERTIARY","isDisabled":false}]}]},{"widgetName":"Delete_Modal","rightColumn":45.0,"detachFromLayout":true,"widgetId":"i3whp03wf0","topRow":13.0,"bottomRow":37.0,"parentRowSpace":10.0,"canOutsideClickClose":true,"type":"MODAL_WIDGET","canEscapeKeyClose":true,"version":2.0,"parentId":"0","shouldScrollContents":false,"isLoading":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":21.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas3","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"zi8fjakv8o","topRow":0.0,"bottomRow":230.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":true,"type":"CANVAS_WIDGET","version":1.0,"parentId":"i3whp03wf0","shouldScrollContents":false,"minHeight":240.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Alert_text","rightColumn":41.0,"textAlign":"LEFT","widgetId":"reyoxo4oec","topRow":1.0,"bottomRow":5.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Delete Row"},{"widgetName":"Button1","rightColumn":46.0,"onClick":"{{closeModal('Delete_Modal')}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03B365","widgetId":"lryg8kw537","topRow":17.0,"bottomRow":21.0,"isVisible":"true","type":"BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":34.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Cancel","isDisabled":false},{"widgetName":"Delete_Button","rightColumn":64.0,"onClick":"{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#F22B2B","widgetId":"qq02lh7ust","topRow":17.0,"bottomRow":21.0,"isVisible":"true","type":"BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":48.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Confirm","isDisabled":false},{"widgetName":"Text12","rightColumn":63.0,"textAlign":"LEFT","widgetId":"48uac29g6e","topRow":8.0,"bottomRow":12.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"parentColumnSpace":6.875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Are you sure you want to delete this item?"}],"isDisabled":false}],"width":456.0,"height":240.0},{"widgetName":"Insert_Modal","rightColumn":41.0,"detachFromLayout":true,"widgetId":"vmorzie6eq","topRow":16.0,"bottomRow":40.0,"parentRowSpace":10.0,"canOutsideClickClose":true,"type":"MODAL_WIDGET","canEscapeKeyClose":true,"version":2.0,"parentId":"0","shouldScrollContents":false,"isLoading":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":17.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas4","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"9rhv3ioohq","topRow":0.0,"bottomRow":610.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":true,"type":"CANVAS_WIDGET","version":1.0,"parentId":"vmorzie6eq","shouldScrollContents":false,"minHeight":600.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Form2","backgroundColor":"#F6F7F8","rightColumn":64.0,"widgetId":"1ruewbc4ef","topRow":0.0,"bottomRow":58.0,"parentRowSpace":10.0,"isVisible":"true","type":"FORM_WIDGET","parentId":"9rhv3ioohq","isLoading":false,"shouldScrollContents":false,"parentColumnSpace":8.0,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas5","rightColumn":224.0,"detachFromLayout":true,"widgetId":"tp9pui0e6y","containerStyle":"none","topRow":0.0,"bottomRow":570.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"1ruewbc4ef","minHeight":580.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"resetFormOnClick":true,"widgetName":"insert_button","rightColumn":62.0,"onClick":"{{InsertQuery.run(() => SelectQuery.run(() => closeModal('Insert_Modal')))}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#03B365","widgetId":"h8vxf3oh4s","topRow":51.0,"bottomRow":55.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":true,"leftColumn":43.0,"dynamicBindingPathList":[],"googleRecaptchaKey":"","buttonVariant":"PRIMARY","text":"Submit"},{"resetFormOnClick":true,"widgetName":"reset_button","rightColumn":42.0,"onClick":"{{closeModal('Insert_Modal')}}","isDefaultClickDisabled":true,"buttonColor":"#03B365","widgetId":"o23gs26wm5","topRow":51.0,"bottomRow":55.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":29.0,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Close"},{"widgetName":"Text21","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"cfmxebyn06","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"ID:"},{"isRequired":false,"widgetName":"insert_col_input1","rightColumn":62.0,"widgetId":"h1wbbv7alb","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"Autogenerated Field","isDisabled":true,"validation":"true"},{"widgetName":"Text22","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"jsffaxrqhw","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":2.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"guid:"},{"isRequired":true,"widgetName":"insert_col_input2","rightColumn":62.0,"widgetId":"6enalyprua","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","defaultText":"","placeholderText":"guid","isDisabled":false,"validation":"true"},{"widgetName":"Text23","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"btk60uozsm","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"post_author:"},{"isRequired":true,"widgetName":"insert_col_input3","rightColumn":62.0,"widgetId":"e490gfts69","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"post_author","defaultText":"","isDisabled":false,"validation":"true"},{"widgetName":"Text14","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"8fm60omwwv","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"post_date:"},{"isRequired":true,"widgetName":"insert_col_input4","rightColumn":62.0,"widgetId":"r55cydp0ao","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"post_date","defaultText":"","isDisabled":false,"validation":"true"},{"widgetName":"Text24","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"9t3vdjd5xj","topRow":33.0,"bottomRow":37.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"post_date_gmt:"},{"isRequired":true,"widgetName":"insert_col_input5","rightColumn":62.0,"widgetId":"5rfqxgj0vm","topRow":33.0,"bottomRow":37.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"post_date_gmt","isDisabled":false,"validation":"true"},{"widgetName":"Text13Copy","rightColumn":35.0,"textAlign":"LEFT","widgetId":"18x7vdv3gs","topRow":0.0,"bottomRow":4.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Insert Row"}]}]}],"isDisabled":false}],"width":532.0,"height":600.0},{"widgetName":"Form1","backgroundColor":"white","rightColumn":64.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"m7dvlazbn7","topRow":73.0,"bottomRow":124.0,"parentRowSpace":10.0,"isVisible":"{{!!Table1.selectedRow.ID}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":32.0,"dynamicBindingPathList":[{"key":"isVisible"}],"children":[{"widgetName":"Canvas2","rightColumn":528.71875,"detachFromLayout":true,"widgetId":"cicukwhp5j","containerStyle":"none","topRow":0.0,"bottomRow":450.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"m7dvlazbn7","minHeight":460.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Text20Copy","rightColumn":13.0,"textAlign":"RIGHT","widgetId":"1sjs79otqs","topRow":28.0,"bottomRow":32.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Author"},{"widgetName":"author","isFilterable":false,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":28.0,"bottomRow":35.0,"parentRowSpace":10.0,"type":"DROP_DOWN_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{Table1.selectedRow.post_author\n}}","selectionType":"SINGLE_SELECT","animateLoading":true,"parentColumnSpace":12.16796875,"dynamicTriggerPathList":[],"leftColumn":13.0,"dynamicBindingPathList":[{"key":"defaultOptionValue"},{"key":"options"}],"options":"{{GetUsers.data.map(({id:value,user_nicename:label})=>({value,label}))}}","placeholderText":"Select option","isDisabled":false,"key":"csk41khcun","isRequired":false,"rightColumn":63.0,"widgetId":"7c1l22596b","isVisible":true,"version":1.0,"parentId":"cicukwhp5j","renderMode":"CANVAS","isLoading":false},{"resetFormOnClick":false,"widgetName":"update_button","rightColumn":63.0,"onClick":"{{UpdateQuery.run(() => SelectQuery.run(), () => showAlert('Error while updating resource!','error'))}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03B365","widgetId":"4gnygu5jew","topRow":36.0,"bottomRow":40.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":true,"leftColumn":42.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Update"},{"resetFormOnClick":true,"widgetName":"reset_update_button","rightColumn":41.0,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":36.0,"bottomRow":40.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":27.0,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"title","rightColumn":63.0,"widgetId":"in8e51pg3y","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":13.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.post_title}}","isDisabled":false,"validation":"true"},{"isRequired":false,"widgetName":"excerpt","rightColumn":63.0,"widgetId":"mlhvfasf31","topRow":10.0,"bottomRow":20.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":13.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.post_excerpt}}","isDisabled":false,"validation":"true"},{"widgetName":"Text9","rightColumn":63.0,"textAlign":"LEFT","widgetId":"4hnz8ktmz5","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Post: {{Table1.selectedRow.post_title}}"},{"widgetName":"Text17","rightColumn":13.0,"textAlign":"RIGHT","widgetId":"afzzc7q8af","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Title"},{"widgetName":"Text18","rightColumn":13.0,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":10.0,"bottomRow":14.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Excerpt"},{"widgetName":"Text20","rightColumn":13.0,"textAlign":"RIGHT","widgetId":"gqpwf0yng6","topRow":21.0,"bottomRow":25.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Post status"},{"widgetName":"p_status","isFilterable":false,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":21.0,"bottomRow":28.0,"parentRowSpace":10.0,"type":"DROP_DOWN_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"{{Table1.selectedRow.post_status}}","selectionType":"SINGLE_SELECT","animateLoading":true,"parentColumnSpace":9.59375,"dynamicTriggerPathList":[],"leftColumn":13.0,"dynamicBindingPathList":[{"key":"defaultOptionValue"}],"options":"[\n {\n \"label\": \"Publish\",\n \"value\": \"publish\"\n },\n {\n \"label\": \"Draft\",\n \"value\": \"draft\"\n },\n {\n \"label\": \"Auto draft\",\n \"value\": \"auto-draft\"\n }\n]","placeholderText":"Select option","isDisabled":false,"key":"mlwomqyu3s","isRequired":false,"rightColumn":63.0,"widgetId":"lo0yxls487","isVisible":true,"version":1.0,"parentId":"cicukwhp5j","renderMode":"CANVAS","isLoading":false}]}]},{"boxShadow":"NONE","widgetName":"Container2","borderColor":"transparent","isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3.svg","topRow":17.0,"bottomRow":71.0,"parentRowSpace":10.0,"type":"CONTAINER_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":22.1875,"leftColumn":32.0,"children":[{"widgetName":"Canvas6","rightColumn":532.5,"detachFromLayout":true,"displayName":"Canvas","widgetId":"ns44diaamt","containerStyle":"none","topRow":0.0,"bottomRow":490.0,"parentRowSpace":1.0,"isVisible":true,"type":"CANVAS_WIDGET","canExtend":false,"version":1.0,"hideCard":true,"parentId":"z86ak9za7r","minHeight":400.0,"renderMode":"CANVAS","isLoading":false,"parentColumnSpace":1.0,"leftColumn":0.0,"children":[{"widgetName":"Text25","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":12.16796875,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"text"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"{{Table1.selectedRow.post_title}}","key":"6pacxcck35","rightColumn":64.0,"textAlign":"LEFT","widgetId":"lhjdqceozq","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","shouldScroll":false,"version":1.0,"parentId":"ns44diaamt","renderMode":"CANVAS","isLoading":false,"fontSize":"HEADING1"},{"widgetName":"Text26","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":9.0,"bottomRow":47.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":12.16796875,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[{"key":"text"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"{{Table1.selectedRow.post_content}}","key":"6pacxcck35","rightColumn":64.0,"textAlign":"LEFT","widgetId":"msnx2elzmi","isVisible":true,"fontStyle":"","textColor":"#231F20","shouldScroll":false,"version":1.0,"parentId":"ns44diaamt","renderMode":"CANVAS","isLoading":false,"fontSize":"PARAGRAPH"}],"key":"m1q7rvnf0q"}],"borderWidth":"0","key":"6q011hdwm8","backgroundColor":"#FFFFFF","rightColumn":64.0,"widgetId":"z86ak9za7r","containerStyle":"card","isVisible":true,"version":1.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"borderRadius":"0"},{"widgetName":"categories","displayName":"MultiSelect","iconSVG":"/static/media/icon.a3495809.svg","labelText":"","topRow":9.0,"bottomRow":16.0,"parentRowSpace":10.0,"type":"MULTI_SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"[0]","animateLoading":true,"parentColumnSpace":22.1875,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":6.0,"dynamicBindingPathList":[{"key":"options"}],"options":"{{GetCategories.data.map(cat=>({label:cat.name,value:cat.term_id}))}}","placeholderText":"Select categories","isDisabled":false,"key":"o2jl2eb348","isRequired":false,"rightColumn":26.0,"widgetId":"n2sv5nbi06","isVisible":true,"version":1.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"onOptionChange":"{{SelectQuery.run()}}"},{"widgetName":"Text27","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":10.0,"bottomRow":14.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":22.1875,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Show posts from","key":"kf4mmyg152","rightColumn":6.0,"textAlign":"LEFT","widgetId":"mywn2w5z48","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","shouldScroll":false,"version":1.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"fontSize":"PARAGRAPH"},{"widgetName":"Text28","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":0.0,"bottomRow":7.0,"parentRowSpace":10.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":22.1875,"dynamicTriggerPathList":[],"leftColumn":21.0,"dynamicBindingPathList":[],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"A Simple Blog Admin","key":"kf4mmyg152","rightColumn":37.0,"textAlign":"CENTER","widgetId":"3k35414uwf","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","shouldScroll":false,"version":1.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"fontSize":"HEADING1"},{"widgetName":"Table2","defaultPageSize":0.0,"columnOrder":["comment_ID","comment_post_ID","comment_author","comment_author_email","comment_author_url","comment_author_IP","comment_date","comment_date_gmt","comment_content","comment_karma","comment_approved","comment_agent","comment_type","comment_parent","user_id"],"isVisibleDownload":true,"dynamicPropertyPathList":[],"displayName":"Table","iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":125.0,"bottomRow":186.0,"isSortable":true,"parentRowSpace":10.0,"type":"TABLE_WIDGET","defaultSelectedRow":"0","hideCard":false,"animateLoading":true,"parentColumnSpace":30.234375,"dynamicTriggerPathList":[],"dynamicBindingPathList":[{"key":"tableData"},{"key":"primaryColumns.comment_ID.computedValue"},{"key":"primaryColumns.comment_post_ID.computedValue"},{"key":"primaryColumns.comment_author.computedValue"},{"key":"primaryColumns.comment_author_email.computedValue"},{"key":"primaryColumns.comment_author_url.computedValue"},{"key":"primaryColumns.comment_author_IP.computedValue"},{"key":"primaryColumns.comment_date.computedValue"},{"key":"primaryColumns.comment_date_gmt.computedValue"},{"key":"primaryColumns.comment_content.computedValue"},{"key":"primaryColumns.comment_karma.computedValue"},{"key":"primaryColumns.comment_approved.computedValue"},{"key":"primaryColumns.comment_agent.computedValue"},{"key":"primaryColumns.comment_type.computedValue"},{"key":"primaryColumns.comment_parent.computedValue"},{"key":"primaryColumns.user_id.computedValue"}],"leftColumn":0.0,"primaryColumns":{"comment_ID":{"index":0.0,"width":150.0,"id":"comment_ID","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_ID","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_ID))}}"},"comment_post_ID":{"index":1.0,"width":150.0,"id":"comment_post_ID","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_post_ID","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_post_ID))}}"},"comment_author":{"index":2.0,"width":150.0,"id":"comment_author","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_author","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_author))}}"},"comment_author_email":{"index":3.0,"width":150.0,"id":"comment_author_email","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_author_email","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_email))}}"},"comment_author_url":{"index":4.0,"width":150.0,"id":"comment_author_url","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_author_url","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_url))}}"},"comment_author_IP":{"index":5.0,"width":150.0,"id":"comment_author_IP","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_author_IP","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_IP))}}"},"comment_date":{"index":6.0,"width":150.0,"id":"comment_date","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_date","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_date))}}"},"comment_date_gmt":{"index":7.0,"width":150.0,"id":"comment_date_gmt","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_date_gmt","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_date_gmt))}}"},"comment_content":{"index":8.0,"width":150.0,"id":"comment_content","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_content","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_content))}}"},"comment_karma":{"index":9.0,"width":150.0,"id":"comment_karma","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_karma","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_karma))}}"},"comment_approved":{"index":10.0,"width":150.0,"id":"comment_approved","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_approved","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_approved))}}"},"comment_agent":{"index":11.0,"width":150.0,"id":"comment_agent","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_agent","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_agent))}}"},"comment_type":{"index":12.0,"width":150.0,"id":"comment_type","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_type","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_type))}}"},"comment_parent":{"index":13.0,"width":150.0,"id":"comment_parent","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"comment_parent","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_parent))}}"},"user_id":{"index":14.0,"width":150.0,"id":"user_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"user_id","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.user_id))}}"}},"delimiter":",","key":"3o40dz6neg","derivedColumns":{},"rightColumn":64.0,"textSize":"PARAGRAPH","widgetId":"0w2wtazhe9","isVisibleFilters":true,"tableData":"{{GetComments.data}}","isVisible":true,"label":"Data","searchKey":"","enableClientSideSearch":true,"version":3.0,"totalRecordsCount":0.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"horizontalAlignment":"LEFT","isVisibleSearch":true,"isVisiblePagination":true,"verticalAlignment":"CENTER","columnSizeMap":{"task":245.0,"step":62.0,"status":75.0}},{"widgetName":"Modal1","isCanvas":true,"displayName":"Modal","iconSVG":"/static/media/icon.4975978e.svg","topRow":7.0,"bottomRow":31.0,"parentRowSpace":10.0,"type":"MODAL_WIDGET","hideCard":false,"shouldScrollContents":true,"animateLoading":true,"parentColumnSpace":19.8125,"leftColumn":38.0,"children":[{"widgetName":"Canvas7","displayName":"Canvas","topRow":0.0,"bottomRow":760.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"hideCard":true,"shouldScrollContents":false,"minHeight":770.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Icon1","rightColumn":64.0,"onClick":"{{closeModal('Modal1')}}","color":"#040627","iconName":"cross","displayName":"Icon","iconSVG":"/static/media/icon.31d6cfe0.svg","widgetId":"hmgi4boxq2","topRow":1.0,"bottomRow":5.0,"isVisible":true,"type":"ICON_WIDGET","version":1.0,"hideCard":true,"parentId":"76vv2ztsz3","renderMode":"CANVAS","isLoading":false,"leftColumn":56.0,"iconSize":24.0,"key":"o7daf79fmd"},{"widgetName":"Text29","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":1.0,"bottomRow":5.0,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Post Comments","key":"brfs5vee1o","rightColumn":41.0,"textAlign":"LEFT","widgetId":"53g2qiabn4","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","shouldScroll":false,"version":1.0,"parentId":"76vv2ztsz3","renderMode":"CANVAS","isLoading":false,"fontSize":"HEADING1"},{"widgetName":"Button2","onClick":"{{closeModal('Modal1')}}","buttonColor":"#03B365","displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":70.0,"bottomRow":74.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":38.0,"text":"Close","isDisabled":false,"key":"5m8dfthjur","rightColumn":50.0,"isDefaultClickDisabled":true,"widgetId":"xuk880axit","buttonStyle":"PRIMARY","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"76vv2ztsz3","renderMode":"CANVAS","isLoading":false,"buttonVariant":"SECONDARY","placement":"CENTER"},{"widgetName":"Button3","buttonColor":"#03B365","displayName":"Button","iconSVG":"/static/media/icon.cca02633.svg","topRow":70.0,"bottomRow":74.0,"type":"BUTTON_WIDGET","hideCard":false,"animateLoading":true,"leftColumn":50.0,"text":"Confirm","isDisabled":false,"key":"5m8dfthjur","rightColumn":62.0,"isDefaultClickDisabled":true,"widgetId":"1qemf70h8t","buttonStyle":"PRIMARY_BUTTON","isVisible":true,"recaptchaType":"V3","version":1.0,"parentId":"76vv2ztsz3","renderMode":"CANVAS","isLoading":false,"buttonVariant":"PRIMARY","placement":"CENTER"},{"widgetName":"Table3","defaultPageSize":0.0,"columnOrder":["step","task","status","action"],"isVisibleDownload":true,"displayName":"Table","iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":7.0,"bottomRow":61.0,"isSortable":true,"parentRowSpace":10.0,"type":"TABLE_WIDGET","defaultSelectedRow":"0","hideCard":false,"animateLoading":true,"parentColumnSpace":14.96875,"dynamicTriggerPathList":[],"dynamicBindingPathList":[{"key":"primaryColumns.step.computedValue"},{"key":"primaryColumns.task.computedValue"},{"key":"primaryColumns.status.computedValue"},{"key":"primaryColumns.action.computedValue"},{"key":"tableData"}],"leftColumn":1.0,"primaryColumns":{"step":{"index":0.0,"width":150.0,"id":"step","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isCellVisible":true,"isDerived":false,"label":"step","computedValue":"{{Table3.sanitizedTableData.map((currentRow) => ( currentRow.step))}}","buttonColor":"#03B365","menuColor":"#03B365","labelColor":"#FFFFFF"},"task":{"index":1.0,"width":150.0,"id":"task","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isCellVisible":true,"isDerived":false,"label":"task","computedValue":"{{Table3.sanitizedTableData.map((currentRow) => ( currentRow.task))}}","buttonColor":"#03B365","menuColor":"#03B365","labelColor":"#FFFFFF"},"status":{"index":2.0,"width":150.0,"id":"status","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isCellVisible":true,"isDerived":false,"label":"status","computedValue":"{{Table3.sanitizedTableData.map((currentRow) => ( currentRow.status))}}","buttonColor":"#03B365","menuColor":"#03B365","labelColor":"#FFFFFF"},"action":{"index":3.0,"width":150.0,"id":"action","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"button","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isCellVisible":true,"isDisabled":false,"isDerived":false,"label":"action","onClick":"{{currentRow.step === '#1' ? showAlert('Done', 'success') : currentRow.step === '#2' ? navigateTo('https://docs.appsmith.com/core-concepts/connecting-to-data-sources/querying-a-database',undefined,'NEW_WINDOW') : navigateTo('https://docs.appsmith.com/core-concepts/displaying-data-read/display-data-tables',undefined,'NEW_WINDOW')}}","computedValue":"{{Table3.sanitizedTableData.map((currentRow) => ( currentRow.action))}}","buttonColor":"#03B365","menuColor":"#03B365","labelColor":"#FFFFFF"}},"delimiter":",","key":"mcujxyczb9","derivedColumns":{},"rightColumn":63.0,"textSize":"PARAGRAPH","widgetId":"iyd643nar2","isVisibleFilters":true,"tableData":"{{GetComments.data}}","isVisible":true,"label":"Data","searchKey":"","enableClientSideSearch":true,"version":3.0,"totalRecordsCount":0.0,"parentId":"76vv2ztsz3","renderMode":"CANVAS","isLoading":false,"horizontalAlignment":"LEFT","isVisibleSearch":true,"isVisiblePagination":true,"verticalAlignment":"CENTER","columnSizeMap":{"task":245.0,"step":62.0,"status":75.0}}],"isDisabled":false,"key":"r6kp6re5b6","rightColumn":475.5,"detachFromLayout":true,"widgetId":"76vv2ztsz3","isVisible":true,"version":1.0,"parentId":"wmh1lgly6x","renderMode":"CANVAS","isLoading":false}],"key":"x9fztaaory","height":770.0,"rightColumn":62.0,"detachFromLayout":true,"widgetId":"wmh1lgly6x","canOutsideClickClose":true,"canEscapeKeyClose":true,"version":2.0,"parentId":"0","renderMode":"CANVAS","isLoading":false,"width":970.0}]},"layoutOnLoadActions":[[{"id":"Blog_GetUsers","name":"GetUsers","pluginType":"DB","jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","Table1.searchText || \"\"","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"timeoutInMillisecond":10000},{"id":"Blog_SelectQuery","name":"SelectQuery","pluginType":"DB","jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","categories.selectedOptionValues.reduce((str,value)=>`${str},${value}`,'0')","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"timeoutInMillisecond":10000}],[{"id":"Blog_GetComments","name":"GetComments","pluginType":"DB","jsonPathKeys":["Table1.selectedRow.ID"],"timeoutInMillisecond":10000}],[{"id":"Blog_GetCategories","name":"GetCategories","pluginType":"DB","jsonPathKeys":[],"timeoutInMillisecond":10000}]],"new":false}],"userPermissions":[],"isHidden":false},"new":true},{"userPermissions":["read:pages","manage:pages"],"gitSyncId":"61efc0f939a0da5942775f01_61f3add7345f0c36171f8d59","unpublishedPage":{"name":"WP Options","slug":"wp-options","layouts":[{"id":"WP Options","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1280.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":890.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":51.0,"minHeight":900.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0.0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40.0,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0.0,"bottomRow":87.0,"parentRowSpace":10.0,"isVisible":"true","type":"CONTAINER_WIDGET","version":1.0,"parentId":"0","isLoading":false,"parentColumnSpace":19.75,"leftColumn":0.0,"children":[{"widgetName":"Canvas1","rightColumn":632.0,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0.0,"bottomRow":890.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"mvubsemxfo","minHeight":870.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Table1","columnOrder":["option_id","option_name","option_value","autoload","customColumn1"],"dynamicPropertyPathList":[{"key":"onPageChange"}],"isVisibleDownload":true,"topRow":10.0,"bottomRow":86.0,"parentRowSpace":10.0,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1.0,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"primaryColumns.customColumn1.onClick"},{"key":"onSearchTextChanged"}],"dynamicBindingPathList":[{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"tableData"},{"key":"primaryColumns.option_id.computedValue"},{"key":"primaryColumns.option_name.computedValue"},{"key":"primaryColumns.option_value.computedValue"},{"key":"primaryColumns.autoload.computedValue"}],"leftColumn":0.0,"primaryColumns":{"customColumn1":{"isCellVisible":true,"isDerived":true,"computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.customColumn1))}}","onClick":"{{showModal('Delete_Modal')}}","textSize":"PARAGRAPH","buttonColor":"#DD4B34","index":7.0,"isVisible":true,"label":"Delete","buttonLabel":"{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}","columnType":"button","horizontalAlignment":"LEFT","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF","verticalAlignment":"CENTER"},"option_id":{"index":0.0,"width":150.0,"id":"option_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"option_id","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.option_id))}}"},"option_name":{"index":1.0,"width":150.0,"id":"option_name","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"option_name","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.option_name))}}"},"option_value":{"index":2.0,"width":150.0,"id":"option_value","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"option_value","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.option_value))}}"},"autoload":{"index":3.0,"width":150.0,"id":"autoload","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"autoload","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.autoload))}}"}},"delimiter":",","derivedColumns":{"customColumn1":{"isDerived":true,"computedValue":"","onClick":"{{DeleteQuery.run()}}","textSize":"PARAGRAPH","buttonStyle":"#DD4B34","index":7.0,"isVisible":true,"label":"customColumn1","buttonLabel":"{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}","columnType":"button","horizontalAlignment":"LEFT","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","buttonLabelColor":"#FFFFFF","verticalAlignment":"CENTER"}},"rightColumn":64.0,"textSize":"PARAGRAPH","widgetId":"jabdu9f16g","isVisibleFilters":true,"tableData":"","isVisible":"true","label":"Data","searchKey":"","version":3.0,"parentId":"59rw5mx0bq","serverSidePaginationEnabled":true,"isLoading":false,"isVisibleCompactMode":true,"onSearchTextChanged":"{{SelectQuery.run()}}","horizontalAlignment":"LEFT","isVisibleSearch":true,"isVisiblePagination":true,"verticalAlignment":"CENTER","columnSizeMap":{"task":245.0,"deliveryAddress":170.0,"step":62.0,"id":228.0,"status":75.0}},{"isRequired":false,"widgetName":"col_select","isFilterable":true,"rightColumn":22.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"asmgosgxjm","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"{{SelectQuery.data.length > 0}}","label":"","type":"DROP_DOWN_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"defaultOptionValue":"option_id","parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":7.0,"dynamicBindingPathList":[{"key":"isVisible"}],"options":"[\n{\n\t\"label\": \"autoload\",\n\t\"value\": \"autoload\"\n}, \n{\n\t\"label\": \"option_name\",\n\t\"value\": \"option_name\"\n}, \n{\n\t\"label\": \"option_value\",\n\t\"value\": \"option_value\"\n}, \n{\n\t\"label\": \"option_id\",\n\t\"value\": \"option_id\"\n}]","onOptionChange":"{{SelectQuery.run()}}","isDisabled":false},{"widgetName":"Text15","rightColumn":7.0,"textAlign":"LEFT","widgetId":"l8pgl90klz","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":19.75,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Order By :"},{"isRequired":false,"widgetName":"order_select","isFilterable":true,"rightColumn":33.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"10v8a19m25","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"{{SelectQuery.data.length > 0}}","label":"","type":"DROP_DOWN_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"defaultOptionValue":"ASC","parentColumnSpace":19.75,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":22.0,"dynamicBindingPathList":[{"key":"isVisible"}],"options":"[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]","onOptionChange":"{{SelectQuery.run()}}","isDisabled":false},{"widgetName":"Text16","rightColumn":64.0,"textAlign":"LEFT","widgetId":"urzv99hdc8","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_options Data"},{"boxShadow":"NONE","widgetName":"refresh_btn","rightColumn":64.0,"onClick":"{{SelectQuery.run()}}","iconName":"refresh","buttonColor":"#03B365","widgetId":"2jj0197tff","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"CIRCLE","leftColumn":60.0,"dynamicBindingPathList":[],"buttonVariant":"TERTIARY","isDisabled":false},{"boxShadow":"NONE","widgetName":"add_btn","rightColumn":60.0,"onClick":"{{showModal('Insert_Modal')}}","iconName":"add","buttonColor":"#03B365","widgetId":"kby34l9nbb","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"CIRCLE","leftColumn":56.0,"dynamicBindingPathList":[],"buttonVariant":"TERTIARY","isDisabled":false}]}]},{"widgetName":"Delete_Modal","rightColumn":45.0,"detachFromLayout":true,"widgetId":"i3whp03wf0","topRow":13.0,"bottomRow":37.0,"parentRowSpace":10.0,"canOutsideClickClose":true,"type":"MODAL_WIDGET","canEscapeKeyClose":true,"version":2.0,"parentId":"0","shouldScrollContents":false,"isLoading":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":21.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas3","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"zi8fjakv8o","topRow":0.0,"bottomRow":230.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":true,"type":"CANVAS_WIDGET","version":1.0,"parentId":"i3whp03wf0","shouldScrollContents":false,"minHeight":240.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Alert_text","rightColumn":41.0,"textAlign":"LEFT","widgetId":"reyoxo4oec","topRow":1.0,"bottomRow":5.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Delete Row"},{"widgetName":"Button1","rightColumn":46.0,"onClick":"{{closeModal('Delete_Modal')}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03B365","widgetId":"lryg8kw537","topRow":17.0,"bottomRow":21.0,"isVisible":"true","type":"BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":34.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Cancel","isDisabled":false},{"widgetName":"Delete_Button","rightColumn":64.0,"onClick":"{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#F22B2B","widgetId":"qq02lh7ust","topRow":17.0,"bottomRow":21.0,"isVisible":"true","type":"BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":48.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Confirm","isDisabled":false},{"widgetName":"Text12","rightColumn":63.0,"textAlign":"LEFT","widgetId":"48uac29g6e","topRow":8.0,"bottomRow":12.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"parentColumnSpace":6.875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Are you sure you want to delete this item?"}],"isDisabled":false}],"width":456.0,"height":240.0},{"widgetName":"Insert_Modal","rightColumn":41.0,"detachFromLayout":true,"widgetId":"vmorzie6eq","topRow":16.0,"bottomRow":40.0,"parentRowSpace":10.0,"canOutsideClickClose":true,"type":"MODAL_WIDGET","canEscapeKeyClose":true,"version":2.0,"parentId":"0","shouldScrollContents":false,"isLoading":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":17.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas4","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"9rhv3ioohq","topRow":0.0,"bottomRow":610.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":true,"type":"CANVAS_WIDGET","version":1.0,"parentId":"vmorzie6eq","shouldScrollContents":false,"minHeight":600.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Form2","backgroundColor":"#F6F7F8","rightColumn":64.0,"widgetId":"1ruewbc4ef","topRow":0.0,"bottomRow":58.0,"parentRowSpace":10.0,"isVisible":"true","type":"FORM_WIDGET","parentId":"9rhv3ioohq","isLoading":false,"shouldScrollContents":false,"parentColumnSpace":8.0,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas5","rightColumn":224.0,"detachFromLayout":true,"widgetId":"tp9pui0e6y","containerStyle":"none","topRow":0.0,"bottomRow":570.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"1ruewbc4ef","minHeight":580.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"resetFormOnClick":true,"widgetName":"insert_button","rightColumn":62.0,"onClick":"{{InsertQuery.run(() => SelectQuery.run(() => closeModal('Insert_Modal')))}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#03B365","widgetId":"h8vxf3oh4s","topRow":51.0,"bottomRow":55.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":true,"leftColumn":43.0,"dynamicBindingPathList":[],"googleRecaptchaKey":"","buttonVariant":"PRIMARY","text":"Submit"},{"resetFormOnClick":true,"widgetName":"reset_button","rightColumn":42.0,"onClick":"{{closeModal('Insert_Modal')}}","isDefaultClickDisabled":true,"buttonColor":"#03B365","widgetId":"o23gs26wm5","topRow":51.0,"bottomRow":55.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":29.0,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Close"},{"widgetName":"Text21","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"cfmxebyn06","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_id:"},{"isRequired":false,"widgetName":"insert_col_input1","rightColumn":62.0,"widgetId":"h1wbbv7alb","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"Autogenerated Field","isDisabled":true,"validation":"true"},{"widgetName":"Text22","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"jsffaxrqhw","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":2.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_name:"},{"isRequired":true,"widgetName":"insert_col_input2","rightColumn":62.0,"widgetId":"6enalyprua","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","defaultText":"","placeholderText":"option_name","isDisabled":false,"validation":"true"},{"widgetName":"Text23","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"btk60uozsm","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_value:"},{"isRequired":true,"widgetName":"insert_col_input3","rightColumn":62.0,"widgetId":"e490gfts69","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"option_value","defaultText":"","isDisabled":false,"validation":"true"},{"widgetName":"Text14","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"8fm60omwwv","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"autoload:"},{"isRequired":true,"widgetName":"insert_col_input4","rightColumn":62.0,"widgetId":"r55cydp0ao","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"autoload","defaultText":"","isDisabled":false,"validation":"true"},{"widgetName":"Text13Copy","rightColumn":35.0,"textAlign":"LEFT","widgetId":"18x7vdv3gs","topRow":0.0,"bottomRow":4.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Insert Row"}]}]}],"isDisabled":false}],"width":532.0,"height":600.0},{"widgetName":"Form1","backgroundColor":"white","rightColumn":64.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"m7dvlazbn7","topRow":0.0,"bottomRow":46.0,"parentRowSpace":10.0,"isVisible":"{{!!Table1.selectedRow.option_id}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40.0,"dynamicBindingPathList":[{"key":"isVisible"}],"children":[{"widgetName":"Canvas2","rightColumn":528.71875,"detachFromLayout":true,"widgetId":"cicukwhp5j","containerStyle":"none","topRow":0.0,"bottomRow":450.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"m7dvlazbn7","minHeight":460.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"resetFormOnClick":false,"widgetName":"update_button","rightColumn":63.0,"onClick":"{{UpdateQuery.run(() => SelectQuery.run(), () => showAlert('Error while updating resource!','error'))}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03B365","widgetId":"4gnygu5jew","topRow":39.0,"bottomRow":43.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":true,"leftColumn":42.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Update"},{"resetFormOnClick":true,"widgetName":"reset_update_button","rightColumn":42.0,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39.0,"bottomRow":43.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28.0,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","rightColumn":63.0,"widgetId":"in8e51pg3y","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.option_name}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63.0,"widgetId":"mlhvfasf31","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.option_value}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63.0,"widgetId":"0lz9vhcnr0","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.autoload}}","isDisabled":false,"validation":"true"},{"widgetName":"Text9","rightColumn":63.0,"textAlign":"LEFT","widgetId":"4hnz8ktmz5","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.option_id}}"},{"widgetName":"Text17","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"afzzc7q8af","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_name:"},{"widgetName":"Text18","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_value:"},{"widgetName":"Text19","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"autoload:"}]}]}]},"layoutOnLoadActions":[[{"id":"WP Options_SelectQuery","name":"SelectQuery","pluginType":"DB","jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","Table1.searchText || \"\"","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"timeoutInMillisecond":10000}]],"new":false}],"userPermissions":[],"isHidden":false},"publishedPage":{"name":"WP Options","slug":"wp-options","layouts":[{"id":"WP Options","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1280.0,"snapColumns":64.0,"detachFromLayout":true,"widgetId":"0","topRow":0.0,"bottomRow":890.0,"containerStyle":"none","snapRows":125.0,"parentRowSpace":1.0,"type":"CANVAS_WIDGET","canExtend":true,"version":51.0,"minHeight":900.0,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0.0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40.0,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0.0,"bottomRow":87.0,"parentRowSpace":10.0,"isVisible":"true","type":"CONTAINER_WIDGET","version":1.0,"parentId":"0","isLoading":false,"parentColumnSpace":19.75,"leftColumn":0.0,"children":[{"widgetName":"Canvas1","rightColumn":632.0,"detachFromLayout":true,"widgetId":"59rw5mx0bq","containerStyle":"none","topRow":0.0,"bottomRow":890.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"mvubsemxfo","minHeight":870.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Table1","columnOrder":["option_id","option_name","option_value","autoload","customColumn1"],"dynamicPropertyPathList":[{"key":"onPageChange"}],"isVisibleDownload":true,"topRow":10.0,"bottomRow":86.0,"parentRowSpace":10.0,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1.0,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"primaryColumns.customColumn1.onClick"},{"key":"onSearchTextChanged"}],"dynamicBindingPathList":[{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"tableData"},{"key":"primaryColumns.option_id.computedValue"},{"key":"primaryColumns.option_name.computedValue"},{"key":"primaryColumns.option_value.computedValue"},{"key":"primaryColumns.autoload.computedValue"}],"leftColumn":0.0,"primaryColumns":{"customColumn1":{"isCellVisible":true,"isDerived":true,"computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.customColumn1))}}","onClick":"{{showModal('Delete_Modal')}}","textSize":"PARAGRAPH","buttonColor":"#DD4B34","index":7.0,"isVisible":true,"label":"Delete","buttonLabel":"{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}","columnType":"button","horizontalAlignment":"LEFT","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","isDisabled":false,"buttonLabelColor":"#FFFFFF","verticalAlignment":"CENTER"},"option_id":{"index":0.0,"width":150.0,"id":"option_id","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"option_id","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.option_id))}}"},"option_name":{"index":1.0,"width":150.0,"id":"option_name","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"option_name","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.option_name))}}"},"option_value":{"index":2.0,"width":150.0,"id":"option_value","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"option_value","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.option_value))}}"},"autoload":{"index":3.0,"width":150.0,"id":"autoload","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"autoload","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.autoload))}}"}},"delimiter":",","derivedColumns":{"customColumn1":{"isDerived":true,"computedValue":"","onClick":"{{DeleteQuery.run()}}","textSize":"PARAGRAPH","buttonStyle":"#DD4B34","index":7.0,"isVisible":true,"label":"customColumn1","buttonLabel":"{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}","columnType":"button","horizontalAlignment":"LEFT","width":150.0,"enableFilter":true,"enableSort":true,"id":"customColumn1","buttonLabelColor":"#FFFFFF","verticalAlignment":"CENTER"}},"rightColumn":64.0,"textSize":"PARAGRAPH","widgetId":"jabdu9f16g","isVisibleFilters":true,"tableData":"","isVisible":"true","label":"Data","searchKey":"","version":3.0,"parentId":"59rw5mx0bq","serverSidePaginationEnabled":true,"isLoading":false,"isVisibleCompactMode":true,"onSearchTextChanged":"{{SelectQuery.run()}}","horizontalAlignment":"LEFT","isVisibleSearch":true,"isVisiblePagination":true,"verticalAlignment":"CENTER","columnSizeMap":{"task":245.0,"deliveryAddress":170.0,"step":62.0,"id":228.0,"status":75.0}},{"isRequired":false,"widgetName":"col_select","isFilterable":true,"rightColumn":22.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"asmgosgxjm","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"{{SelectQuery.data.length > 0}}","label":"","type":"DROP_DOWN_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"defaultOptionValue":"option_id","parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":7.0,"dynamicBindingPathList":[{"key":"isVisible"}],"options":"[\n{\n\t\"label\": \"autoload\",\n\t\"value\": \"autoload\"\n}, \n{\n\t\"label\": \"option_name\",\n\t\"value\": \"option_name\"\n}, \n{\n\t\"label\": \"option_value\",\n\t\"value\": \"option_value\"\n}, \n{\n\t\"label\": \"option_id\",\n\t\"value\": \"option_id\"\n}]","onOptionChange":"{{SelectQuery.run()}}","isDisabled":false},{"widgetName":"Text15","rightColumn":7.0,"textAlign":"LEFT","widgetId":"l8pgl90klz","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":19.75,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Order By :"},{"isRequired":false,"widgetName":"order_select","isFilterable":true,"rightColumn":33.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"10v8a19m25","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"{{SelectQuery.data.length > 0}}","label":"","type":"DROP_DOWN_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"defaultOptionValue":"ASC","parentColumnSpace":19.75,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":22.0,"dynamicBindingPathList":[{"key":"isVisible"}],"options":"[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]","onOptionChange":"{{SelectQuery.run()}}","isDisabled":false},{"widgetName":"Text16","rightColumn":64.0,"textAlign":"LEFT","widgetId":"urzv99hdc8","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":11.78515625,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_options Data"},{"boxShadow":"NONE","widgetName":"refresh_btn","rightColumn":64.0,"onClick":"{{SelectQuery.run()}}","iconName":"refresh","buttonColor":"#03B365","widgetId":"2jj0197tff","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"CIRCLE","leftColumn":60.0,"dynamicBindingPathList":[],"buttonVariant":"TERTIARY","isDisabled":false},{"boxShadow":"NONE","widgetName":"add_btn","rightColumn":60.0,"onClick":"{{showModal('Insert_Modal')}}","iconName":"add","buttonColor":"#03B365","widgetId":"kby34l9nbb","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","type":"ICON_BUTTON_WIDGET","version":1.0,"parentId":"59rw5mx0bq","isLoading":false,"parentColumnSpace":12.0703125,"dynamicTriggerPathList":[{"key":"onClick"}],"borderRadius":"CIRCLE","leftColumn":56.0,"dynamicBindingPathList":[],"buttonVariant":"TERTIARY","isDisabled":false}]}]},{"widgetName":"Delete_Modal","rightColumn":45.0,"detachFromLayout":true,"widgetId":"i3whp03wf0","topRow":13.0,"bottomRow":37.0,"parentRowSpace":10.0,"canOutsideClickClose":true,"type":"MODAL_WIDGET","canEscapeKeyClose":true,"version":2.0,"parentId":"0","shouldScrollContents":false,"isLoading":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":21.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas3","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"zi8fjakv8o","topRow":0.0,"bottomRow":230.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":true,"type":"CANVAS_WIDGET","version":1.0,"parentId":"i3whp03wf0","shouldScrollContents":false,"minHeight":240.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Alert_text","rightColumn":41.0,"textAlign":"LEFT","widgetId":"reyoxo4oec","topRow":1.0,"bottomRow":5.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Delete Row"},{"widgetName":"Button1","rightColumn":46.0,"onClick":"{{closeModal('Delete_Modal')}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03B365","widgetId":"lryg8kw537","topRow":17.0,"bottomRow":21.0,"isVisible":"true","type":"BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":34.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Cancel","isDisabled":false},{"widgetName":"Delete_Button","rightColumn":64.0,"onClick":"{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#F22B2B","widgetId":"qq02lh7ust","topRow":17.0,"bottomRow":21.0,"isVisible":"true","type":"BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"zi8fjakv8o","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"leftColumn":48.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Confirm","isDisabled":false},{"widgetName":"Text12","rightColumn":63.0,"textAlign":"LEFT","widgetId":"48uac29g6e","topRow":8.0,"bottomRow":12.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"zi8fjakv8o","isLoading":false,"parentColumnSpace":6.875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"Are you sure you want to delete this item?"}],"isDisabled":false}],"width":456.0,"height":240.0},{"widgetName":"Insert_Modal","rightColumn":41.0,"detachFromLayout":true,"widgetId":"vmorzie6eq","topRow":16.0,"bottomRow":40.0,"parentRowSpace":10.0,"canOutsideClickClose":true,"type":"MODAL_WIDGET","canEscapeKeyClose":true,"version":2.0,"parentId":"0","shouldScrollContents":false,"isLoading":false,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":17.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas4","rightColumn":453.1875,"detachFromLayout":true,"widgetId":"9rhv3ioohq","topRow":0.0,"bottomRow":610.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":true,"type":"CANVAS_WIDGET","version":1.0,"parentId":"vmorzie6eq","shouldScrollContents":false,"minHeight":600.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Form2","backgroundColor":"#F6F7F8","rightColumn":64.0,"widgetId":"1ruewbc4ef","topRow":0.0,"bottomRow":58.0,"parentRowSpace":10.0,"isVisible":"true","type":"FORM_WIDGET","parentId":"9rhv3ioohq","isLoading":false,"shouldScrollContents":false,"parentColumnSpace":8.0,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"children":[{"widgetName":"Canvas5","rightColumn":224.0,"detachFromLayout":true,"widgetId":"tp9pui0e6y","containerStyle":"none","topRow":0.0,"bottomRow":570.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"1ruewbc4ef","minHeight":580.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"resetFormOnClick":true,"widgetName":"insert_button","rightColumn":62.0,"onClick":"{{InsertQuery.run(() => SelectQuery.run(() => closeModal('Insert_Modal')))}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[{"key":"onClick"}],"buttonColor":"#03B365","widgetId":"h8vxf3oh4s","topRow":51.0,"bottomRow":55.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":true,"leftColumn":43.0,"dynamicBindingPathList":[],"googleRecaptchaKey":"","buttonVariant":"PRIMARY","text":"Submit"},{"resetFormOnClick":true,"widgetName":"reset_button","rightColumn":42.0,"onClick":"{{closeModal('Insert_Modal')}}","isDefaultClickDisabled":true,"buttonColor":"#03B365","widgetId":"o23gs26wm5","topRow":51.0,"bottomRow":55.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":29.0,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Close"},{"widgetName":"Text21","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"cfmxebyn06","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_id:"},{"isRequired":false,"widgetName":"insert_col_input1","rightColumn":62.0,"widgetId":"h1wbbv7alb","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"Autogenerated Field","isDisabled":true,"validation":"true"},{"widgetName":"Text22","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"jsffaxrqhw","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":2.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_name:"},{"isRequired":true,"widgetName":"insert_col_input2","rightColumn":62.0,"widgetId":"6enalyprua","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","defaultText":"","placeholderText":"option_name","isDisabled":false,"validation":"true"},{"widgetName":"Text23","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"btk60uozsm","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":7.6865234375,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_value:"},{"isRequired":true,"widgetName":"insert_col_input3","rightColumn":62.0,"widgetId":"e490gfts69","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"option_value","defaultText":"","isDisabled":false,"validation":"true"},{"widgetName":"Text14","rightColumn":19.0,"textAlign":"RIGHT","widgetId":"8fm60omwwv","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"leftColumn":3.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"autoload:"},{"isRequired":true,"widgetName":"insert_col_input4","rightColumn":62.0,"widgetId":"r55cydp0ao","topRow":26.0,"bottomRow":30.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"tp9pui0e6y","isLoading":false,"parentColumnSpace":8.0625,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":21.0,"dynamicBindingPathList":[],"inputType":"TEXT","placeholderText":"autoload","defaultText":"","isDisabled":false,"validation":"true"},{"widgetName":"Text13Copy","rightColumn":35.0,"textAlign":"LEFT","widgetId":"18x7vdv3gs","topRow":0.0,"bottomRow":4.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"Insert Row"}]}]}],"isDisabled":false}],"width":532.0,"height":600.0},{"widgetName":"Form1","backgroundColor":"white","rightColumn":64.0,"dynamicPropertyPathList":[{"key":"isVisible"}],"widgetId":"m7dvlazbn7","topRow":0.0,"bottomRow":46.0,"parentRowSpace":10.0,"isVisible":"{{!!Table1.selectedRow.option_id}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40.0,"dynamicBindingPathList":[{"key":"isVisible"}],"children":[{"widgetName":"Canvas2","rightColumn":528.71875,"detachFromLayout":true,"widgetId":"cicukwhp5j","containerStyle":"none","topRow":0.0,"bottomRow":450.0,"parentRowSpace":1.0,"isVisible":"true","canExtend":false,"type":"CANVAS_WIDGET","version":1.0,"parentId":"m7dvlazbn7","minHeight":460.0,"isLoading":false,"parentColumnSpace":1.0,"dynamicTriggerPathList":[],"leftColumn":0.0,"dynamicBindingPathList":[],"children":[{"resetFormOnClick":false,"widgetName":"update_button","rightColumn":63.0,"onClick":"{{UpdateQuery.run(() => SelectQuery.run(), () => showAlert('Error while updating resource!','error'))}}","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03B365","widgetId":"4gnygu5jew","topRow":39.0,"bottomRow":43.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":true,"leftColumn":42.0,"dynamicBindingPathList":[],"buttonVariant":"PRIMARY","text":"Update"},{"resetFormOnClick":true,"widgetName":"reset_update_button","rightColumn":42.0,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39.0,"bottomRow":43.0,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1.0,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28.0,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","rightColumn":63.0,"widgetId":"in8e51pg3y","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.option_name}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63.0,"widgetId":"mlhvfasf31","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.option_value}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63.0,"widgetId":"0lz9vhcnr0","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19.0,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.autoload}}","isDisabled":false,"validation":"true"},{"widgetName":"Text9","rightColumn":63.0,"textAlign":"LEFT","widgetId":"4hnz8ktmz5","topRow":0.0,"bottomRow":4.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.option_id}}"},{"widgetName":"Text17","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"afzzc7q8af","topRow":5.0,"bottomRow":9.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_name:"},{"widgetName":"Text18","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12.0,"bottomRow":16.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_value:"},{"widgetName":"Text19","rightColumn":18.0,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19.0,"bottomRow":23.0,"parentRowSpace":10.0,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1.0,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1.0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"autoload:"}]}]}]},"layoutOnLoadActions":[[{"id":"WP Options_SelectQuery","name":"SelectQuery","pluginType":"DB","jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","Table1.searchText || \"\"","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"timeoutInMillisecond":10000}]],"new":false}],"userPermissions":[],"isHidden":false},"new":true}],"publishedDefaultPageName":"Blog","unpublishedDefaultPageName":"Blog","actionList":[{"id":"Blog_UpdateQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61efc19939a0da5942775f12","pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"UpdateQuery","datasource":{"id":"PostgresGolden","userPermissions":[],"pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Blog","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE perf_posts SET\n\t\tpost_title = '{{title.text}}',\n\t\tpost_excerpt = '{{excerpt.text}}',\n\t\tpost_author = '{{author.selectedOptionValue}}',\n\t\tpost_status = '{{p_status.selectedOptionValue}}'\n \n WHERE id = {{Table1.selectedRow.id}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Table1.selectedRow.id","title.text","author.selectedOptionValue","excerpt.text","p_status.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"UpdateQuery"},"publishedAction":{"name":"UpdateQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Blog","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE perf_posts SET\n\t\tpost_title = '{{title.text}}',\n\t\tpost_excerpt = '{{excerpt.text}}',\n\t\tpost_author = '{{author.selectedOptionValue}}',\n\t\tpost_status = '{{p_status.selectedOptionValue}}'\n \n WHERE ID = {{Table1.selectedRow.ID}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Table1.selectedRow.ID","title.text","author.selectedOptionValue","excerpt.text","p_status.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"UpdateQuery"},"new":false},{"id":"Blog_SelectQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61efc19939a0da5942775f14","pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"SelectQuery","datasource":{"id":"PostgresGolden","userPermissions":[],"pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Blog","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"\n\n\nselect * from perf_posts \nINNER JOIN perf_term_relationships ON perf_posts.ID= perf_term_relationships.object_id\nwhere perf_term_relationships.term_taxonomy_id in ({{categories.selectedOptionValues.reduce((str,value)=>`${str},${value}`,'0')}})\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};\n\n\n\n\n\n\n\n\n","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","categories.selectedOptionValues.reduce((str,value)=>`${str},${value}`,'0')","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"SelectQuery"},"publishedAction":{"name":"SelectQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Blog","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"\n\n\nselect * from perf_posts \nINNER JOIN perf_term_relationships ON perf_posts.ID= perf_term_relationships.object_id\nwhere perf_term_relationships.term_taxonomy_id in ({{categories.selectedOptionValues.reduce((str,value)=>`${str},${value}`,'0')}})\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};\n\n\n\n\n\n\n\n\n","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","categories.selectedOptionValues.reduce((str,value)=>`${str},${value}`,'0')","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"SelectQuery"},"new":false},{"id":"Blog_DeleteQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61efc19939a0da5942775f13","pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"DeleteQuery","datasource":{"id":"PostgresGolden","userPermissions":[],"pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Blog","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM perf_posts\n WHERE id = {{Table1.triggeredRow.id}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Table1.triggeredRow.id"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"DeleteQuery"},"publishedAction":{"name":"DeleteQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Blog","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM perf_posts\n WHERE ID = {{Table1.triggeredRow.ID}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Table1.triggeredRow.ID"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"DeleteQuery"},"new":false},{"id":"Blog_InsertQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61efc19939a0da5942775f16","pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"InsertQuery","datasource":{"id":"PostgresGolden","userPermissions":[],"pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Blog","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO perf_posts (\n\tguid, \n\tpost_author,\n\tpost_date, \n\tpost_date_gmt\n)\nVALUES (\n\t\t\t\t{{insert_col_input2.text}}, \n\t\t\t\t{{insert_col_input3.text}}, \n\t\t\t\t{{insert_col_input4.text}}, \n\t\t\t\t{{insert_col_input5.text}}\n);","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["insert_col_input5.text","insert_col_input4.text","insert_col_input3.text","insert_col_input2.text"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"InsertQuery"},"publishedAction":{"name":"InsertQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Blog","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO perf_posts (\n\tguid, \n\tpost_author,\n\tpost_date, \n\tpost_date_gmt\n)\nVALUES (\n\t\t\t\t{{insert_col_input2.text}}, \n\t\t\t\t{{insert_col_input3.text}}, \n\t\t\t\t{{insert_col_input4.text}}, \n\t\t\t\t{{insert_col_input5.text}}\n);","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["insert_col_input5.text","insert_col_input4.text","insert_col_input3.text","insert_col_input2.text"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"InsertQuery"},"new":false},{"id":"Blog_GetCategories","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61efe23d3b61bf7f582f1826","pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"GetCategories","datasource":{"id":"PostgresGolden","userPermissions":[],"pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Blog","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT term_id,name FROM perf_terms ORDER BY term_id;\n","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"confirmBeforeExecute":false,"userPermissions":[],"validName":"GetCategories"},"publishedAction":{"name":"GetCategories","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Blog","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT term_id,name FROM perf_terms;\n","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"confirmBeforeExecute":false,"userPermissions":[],"validName":"GetCategories"},"new":false},{"id":"Users_SelectQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61eff4a53b61bf7f582f1833","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"SelectQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Users","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT * FROM perf_users\nWHERE user_login like '%{{Table1.searchText || \"\"}}%'\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","Table1.searchText || \"\"","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"SelectQuery"},"publishedAction":{"name":"SelectQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Users","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT * FROM perf_users\nWHERE user_login like '%{{Table1.searchText || \"\"}}%'\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","Table1.searchText || \"\"","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"SelectQuery"},"new":false},{"id":"Users_InsertQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61eff4a53b61bf7f582f1836","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"InsertQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Users","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO perf_users (\n\tuser_login, \n\tuser_pass,\n\tuser_nicename, \n\tuser_email\n)\nVALUES (\n\t\t\t\t{{insert_col_input2.text}}, \n\t\t\t\t{{insert_col_input3.text}}, \n\t\t\t\t{{insert_col_input4.text}}, \n\t\t\t\t{{insert_col_input5.text}}\n);","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["insert_col_input5.text","insert_col_input4.text","insert_col_input3.text","insert_col_input2.text"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"InsertQuery"},"publishedAction":{"name":"InsertQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Users","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO perf_users (\n\tuser_login, \n\tuser_pass,\n\tuser_nicename, \n\tuser_email\n)\nVALUES (\n\t\t\t\t{{insert_col_input2.text}}, \n\t\t\t\t{{insert_col_input3.text}}, \n\t\t\t\t{{insert_col_input4.text}}, \n\t\t\t\t{{insert_col_input5.text}}\n);","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["insert_col_input5.text","insert_col_input4.text","insert_col_input3.text","insert_col_input2.text"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"InsertQuery"},"new":false},{"id":"Users_UpdateQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61eff4a53b61bf7f582f1834","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"UpdateQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Users","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE perf_users SET\n\t\tuser_login = '{{update_col_2.text}}',\n user_pass = '{{update_col_3.text}}',\n user_nicename = '{{update_col_4.text}}',\n user_email = '{{update_col_5.text}}'\n WHERE ID = {{Table1.selectedRow.ID}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["update_col_3.text","update_col_2.text","Table1.selectedRow.ID","update_col_5.text","update_col_4.text"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"UpdateQuery"},"publishedAction":{"name":"UpdateQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Users","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE perf_users SET\n\t\tuser_login = '{{update_col_2.text}}',\n user_pass = '{{update_col_3.text}}',\n user_nicename = '{{update_col_4.text}}',\n user_email = '{{update_col_5.text}}'\n WHERE ID = {{Table1.selectedRow.ID}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["update_col_3.text","update_col_2.text","Table1.selectedRow.ID","update_col_5.text","update_col_4.text"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"UpdateQuery"},"new":false},{"id":"Blog_GetComments","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f242880dcb6f75e86b5e78","pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"GetComments","datasource":{"id":"PostgresGolden","userPermissions":[],"pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Blog","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT * FROM perf_comments where comment_post_id = {{Table1.selectedRow.id}} ORDER BY comment_id LIMIT 10;\n","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Table1.selectedRow.id"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"GetComments"},"publishedAction":{"name":"GetComments","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Blog","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT * FROM perf_comments where comment_post_ID = {{Table1.selectedRow.ID}} ORDER BY comment_ID LIMIT 10;\n","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"body"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Table1.selectedRow.ID"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"GetComments"},"new":false},{"id":"Comments_InsertQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f3adb1345f0c36171f8d4e","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"InsertQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Comments","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO perf_comments (\n\tcomment_author_email, \n\tcomment_post_ID,\n\tcomment_author, \n\tcomment_author_url\n)\nVALUES (\n\t\t\t\t{{insert_col_input2.text}}, \n\t\t\t\t{{insert_col_input3.text}}, \n\t\t\t\t{{insert_col_input4.text}}, \n\t\t\t\t{{insert_col_input5.text}}\n);","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["insert_col_input5.text","insert_col_input4.text","insert_col_input3.text","insert_col_input2.text"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"InsertQuery"},"publishedAction":{"name":"InsertQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Comments","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO perf_comments (\n\tcomment_author_email, \n\tcomment_post_ID,\n\tcomment_author, \n\tcomment_author_url\n)\nVALUES (\n\t\t\t\t{{insert_col_input2.text}}, \n\t\t\t\t{{insert_col_input3.text}}, \n\t\t\t\t{{insert_col_input4.text}}, \n\t\t\t\t{{insert_col_input5.text}}\n);","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["insert_col_input5.text","insert_col_input4.text","insert_col_input3.text","insert_col_input2.text"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"InsertQuery"},"new":false},{"id":"Users_DeleteQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61eff4a53b61bf7f582f1835","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"DeleteQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Users","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM perf_users\n WHERE ID = {{Table1.triggeredRow.ID}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Table1.triggeredRow.ID"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"DeleteQuery"},"publishedAction":{"name":"DeleteQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Users","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM perf_users\n WHERE ID = {{Table1.triggeredRow.ID}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Table1.triggeredRow.ID"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"DeleteQuery"},"new":false},{"id":"Blog_GetUsers","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61eff4d73b61bf7f582f183b","pluginType":"DB","pluginId":"postgres-plugin","unpublishedAction":{"name":"GetUsers","datasource":{"id":"PostgresGolden","userPermissions":[],"pluginId":"postgres-plugin","messages":[],"isValid":true,"new":false},"pageId":"Blog","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT * FROM perf_users\nWHERE user_login like '%{{Table1.searchText || \"\"}}%'\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","Table1.searchText || \"\"","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"GetUsers"},"publishedAction":{"name":"GetUsers","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Blog","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT * FROM perf_users\nWHERE user_login like '%{{Table1.searchText || \"\"}}%'\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","Table1.searchText || \"\"","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"GetUsers"},"new":false},{"id":"Comments_UpdateQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f3adb1345f0c36171f8d51","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"UpdateQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Comments","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE perf_comments SET\n\t\tcomment_author_email = '{{update_col_2.text}}',\n comment_post_ID = '{{update_col_3.text}}',\n comment_author = '{{update_col_4.text}}',\n comment_author_url = '{{update_col_5.text}}'\n WHERE comment_ID = {{Table1.selectedRow.comment_ID}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["update_col_3.text","Table1.selectedRow.comment_ID","update_col_2.text","update_col_5.text","update_col_4.text"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"UpdateQuery"},"publishedAction":{"name":"UpdateQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Comments","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE perf_comments SET\n\t\tcomment_author_email = '{{update_col_2.text}}',\n comment_post_ID = '{{update_col_3.text}}',\n comment_author = '{{update_col_4.text}}',\n comment_author_url = '{{update_col_5.text}}'\n WHERE comment_ID = {{Table1.selectedRow.comment_ID}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["update_col_3.text","Table1.selectedRow.comment_ID","update_col_2.text","update_col_5.text","update_col_4.text"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"UpdateQuery"},"new":false},{"id":"Comments_DeleteQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f3adb1345f0c36171f8d4f","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"DeleteQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Comments","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM perf_comments\n WHERE comment_ID = {{Table1.triggeredRow.comment_ID}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Table1.triggeredRow.comment_ID"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"DeleteQuery"},"publishedAction":{"name":"DeleteQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Comments","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM perf_comments\n WHERE comment_ID = {{Table1.triggeredRow.comment_ID}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Table1.triggeredRow.comment_ID"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"DeleteQuery"},"new":false},{"id":"Comments_SelectQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f3adb1345f0c36171f8d50","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"SelectQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Comments","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT * FROM perf_comments\nWHERE comment_author_email like '%{{Table1.searchText || \"\"}}%'\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","Table1.searchText || \"\"","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"SelectQuery"},"publishedAction":{"name":"SelectQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Comments","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT * FROM perf_comments\nWHERE comment_author_email like '%{{Table1.searchText || \"\"}}%'\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","Table1.searchText || \"\"","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"SelectQuery"},"new":false},{"id":"WP Options_InsertQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f3ae03345f0c36171f8d5c","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"InsertQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"WP Options","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO perf_options (\n\toption_name, \n\toption_value,\n\tautoload)\nVALUES (\n\t\t\t\t{{insert_col_input2.text}}, \n\t\t\t\t{{insert_col_input3.text}}, \n\t\t\t\t{{insert_col_input4.text}});","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["insert_col_input4.text","insert_col_input3.text","insert_col_input2.text"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"InsertQuery"},"publishedAction":{"name":"InsertQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"WP Options","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO perf_options (\n\toption_name, \n\toption_value,\n\tautoload)\nVALUES (\n\t\t\t\t{{insert_col_input2.text}}, \n\t\t\t\t{{insert_col_input3.text}}, \n\t\t\t\t{{insert_col_input4.text}});","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["insert_col_input4.text","insert_col_input3.text","insert_col_input2.text"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"InsertQuery"},"new":false},{"id":"WP Options_DeleteQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f3ae03345f0c36171f8d5b","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"DeleteQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"WP Options","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM perf_options\n WHERE option_id = {{Table1.triggeredRow.option_id}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Table1.triggeredRow.option_id"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"DeleteQuery"},"publishedAction":{"name":"DeleteQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"WP Options","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM perf_options\n WHERE option_id = {{Table1.triggeredRow.option_id}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Table1.triggeredRow.option_id"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"DeleteQuery"},"new":false},{"id":"WP Options_SelectQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f3ae03345f0c36171f8d5f","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"SelectQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"WP Options","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT * FROM perf_options\nWHERE option_name like '%{{Table1.searchText || \"\"}}%'\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","Table1.searchText || \"\"","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"SelectQuery"},"publishedAction":{"name":"SelectQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"WP Options","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT * FROM perf_options\nWHERE option_name like '%{{Table1.searchText || \"\"}}%'\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","Table1.searchText || \"\"","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"SelectQuery"},"new":false},{"id":"WP Options_UpdateQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f3ae03345f0c36171f8d5d","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"UpdateQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"WP Options","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE perf_options SET\n\t\toption_name = '{{update_col_2.text}}',\n option_value = '{{update_col_3.text}}',\n autoload = '{{update_col_4.text}}'\nWHERE option_id = {{Table1.selectedRow.option_id}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["update_col_3.text","Table1.selectedRow.option_id","update_col_2.text","update_col_4.text"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"UpdateQuery"},"publishedAction":{"name":"UpdateQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"WP Options","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE perf_options SET\n\t\toption_name = '{{update_col_2.text}}',\n option_value = '{{update_col_3.text}}',\n autoload = '{{update_col_4.text}}'\nWHERE option_id = {{Table1.selectedRow.option_id}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["update_col_3.text","Table1.selectedRow.option_id","update_col_2.text","update_col_4.text"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"UpdateQuery"},"new":false},{"id":"Post Meta_InsertQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f3ae36345f0c36171f8d66","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"InsertQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Post Meta","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO perf_postmeta (\n\tmeta_key, \n\tpost_id,\n\tmeta_value)\nVALUES (\n\t\t\t\t{{insert_col_input2.text}}, \n\t\t\t\t{{insert_col_input3.text}}, \n\t\t\t\t{{insert_col_input4.text}});","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["insert_col_input4.text","insert_col_input3.text","insert_col_input2.text"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"InsertQuery"},"publishedAction":{"name":"InsertQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Post Meta","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO perf_postmeta (\n\tmeta_key, \n\tpost_id,\n\tmeta_value)\nVALUES (\n\t\t\t\t{{insert_col_input2.text}}, \n\t\t\t\t{{insert_col_input3.text}}, \n\t\t\t\t{{insert_col_input4.text}});","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["insert_col_input4.text","insert_col_input3.text","insert_col_input2.text"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"InsertQuery"},"new":false},{"id":"Post Meta_DeleteQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f3ae36345f0c36171f8d68","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"DeleteQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Post Meta","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM perf_postmeta\n WHERE meta_id = {{Table1.triggeredRow.meta_id}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Table1.triggeredRow.meta_id"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"DeleteQuery"},"publishedAction":{"name":"DeleteQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Post Meta","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM perf_postmeta\n WHERE meta_id = {{Table1.triggeredRow.meta_id}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Table1.triggeredRow.meta_id"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"DeleteQuery"},"new":false},{"id":"Post Meta_UpdateQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f3ae36345f0c36171f8d67","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"UpdateQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Post Meta","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE perf_postmeta SET\n\t\tmeta_key = '{{update_col_2.text}}',\n post_id = '{{update_col_3.text}}',\n meta_value = '{{update_col_4.text}}'\nWHERE meta_id = {{Table1.selectedRow.meta_id}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["update_col_3.text","update_col_2.text","Table1.selectedRow.meta_id","update_col_4.text"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"UpdateQuery"},"publishedAction":{"name":"UpdateQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Post Meta","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE perf_postmeta SET\n\t\tmeta_key = '{{update_col_2.text}}',\n post_id = '{{update_col_3.text}}',\n meta_value = '{{update_col_4.text}}'\nWHERE meta_id = {{Table1.selectedRow.meta_id}};","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":false,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["update_col_3.text","update_col_2.text","Table1.selectedRow.meta_id","update_col_4.text"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"UpdateQuery"},"new":false},{"id":"Post Meta_SelectQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f3ae36345f0c36171f8d6a","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"SelectQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Post Meta","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT * FROM perf_postmeta\nWHERE meta_key like '%{{Table1.searchText || \"\"}}%'\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","Table1.searchText || \"\"","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"SelectQuery"},"publishedAction":{"name":"SelectQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Post Meta","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT * FROM perf_postmeta\nWHERE meta_key like '%{{Table1.searchText || \"\"}}%'\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};","pluginSpecifiedTemplates":[{"value":false}]},"executeOnLoad":true,"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["(Table1.pageNo - 1) * Table1.pageSize","Table1.searchText || \"\"","col_select.selectedOptionValue","Table1.pageSize","order_select.selectedOptionValue"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"SelectQuery"},"new":false}],"actionCollectionList":[], - "decryptedFields":{"PostgresGolden":{"password":"docker","authType":"com.appsmith.external.models.DBAuth","dbAuth":{"authenticationType":"dbAuth","authenticationType":"dbAuth","username":"docker","databaseName":"ui_perf_test_db"}}},"invisibleActionFields":{"Blog_DeleteQuery":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Comments_InsertQuery":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Post Meta_DeleteQuery":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"WP Options_InsertQuery":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Post Meta_SelectQuery":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Comments_SelectQuery":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"WP Options_SelectQuery":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Users_UpdateQuery":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Comments_UpdateQuery":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Blog_InsertQuery":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"WP Options_UpdateQuery":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Post Meta_InsertQuery":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Users_InsertQuery":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Blog_UpdateQuery":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Users_SelectQuery":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Blog_GetCategories":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Post Meta_UpdateQuery":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Users_DeleteQuery":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Blog_SelectQuery":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"WP Options_DeleteQuery":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Blog_GetComments":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Blog_GetUsers":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false},"Comments_DeleteQuery":{"unpublishedUserSetOnLoad":false,"publishedUserSetOnLoad":false}},"editModeTheme":{"name":"Classic","displayName":"Classic","new":true,"isSystemTheme":true},"publishedTheme":{"name":"Classic","displayName":"Classic","new":true,"isSystemTheme":true},"publishedLayoutmongoEscapedWidgets":{},"unpublishedLayoutmongoEscapedWidgets":{}} \ No newline at end of file +{ + "clientSchemaVersion": 1.0, + "serverSchemaVersion": 6.0, + "exportedApplication": { + "name": "GoldenAppPostgres", + "isPublic": true, + "pages": [{ + "id": "Users", + "isDefault": false + }, { + "id": "Comments", + "isDefault": false + }, { + "id": "Post Meta", + "isDefault": false + }, { + "id": "Blog", + "isDefault": true + }, { + "id": "WP Options", + "isDefault": false + }], + "publishedPages": [{ + "id": "Users", + "isDefault": false + }, { + "id": "Comments", + "isDefault": false + }, { + "id": "Post Meta", + "isDefault": false + }, { + "id": "Blog", + "isDefault": true + }, { + "id": "WP Options", + "isDefault": false + }], + "viewMode": false, + "appIsExample": false, + "unreadCommentThreads": 0.0, + "color": "#F1DEFF", + "icon": "love", + "slug": "goldenapppostgres", + "evaluationVersion": 2.0, + "applicationVersion": 1.0, + "isManualUpdate": false, + "deleted": false + }, + "datasourceList": [{ + "name": "PostgresGolden", + "pluginId": "postgres-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "gitSyncId": "61c9902d14b067061fc1a243_624d34477c84a52b1633510f", + "datasourceConfiguration": { + "connection": { + "mode": "READ_WRITE", + "ssl": { + "authType": "DEFAULT" + } + }, + "endpoints": [{ + "host": "localhost", + "port": 5432 + }], + "sshProxyEnabled": false + } + }], + "decryptedFields": { + "PostgresGolden": { + "password": "docker", + "authType": "com.appsmith.external.models.DBAuth", + "dbAuth": { + "authenticationType": "dbAuth", + "username": "docker", + "databaseName": "ui_perf_test_db" + } + } + }, + "pageList": [{ + "unpublishedPage": { + "name": "Users", + "slug": "users", + "layouts": [{ + "viewMode": false, + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 1432.0, + "snapColumns": 64.0, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0.0, + "bottomRow": 890.0, + "containerStyle": "none", + "snapRows": 125.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 50.0, + "minHeight": 900.0, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "dynamicBindingPathList": [], + "leftColumn": 0.0, + "children": [{ + "backgroundColor": "#FFFFFF", + "widgetName": "Container1", + "rightColumn": 40.0, + "widgetId": "mvubsemxfo", + "containerStyle": "card", + "topRow": 0.0, + "bottomRow": 87.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "CONTAINER_WIDGET", + "version": 1.0, + "parentId": "0", + "isLoading": false, + "parentColumnSpace": 19.75, + "leftColumn": 0.0, + "children": [{ + "widgetName": "Canvas1", + "rightColumn": 632.0, + "detachFromLayout": true, + "widgetId": "59rw5mx0bq", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 890.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "mvubsemxfo", + "minHeight": 870.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Table1", + "columnOrder": ["ID", "user_login", "user_pass", "user_nicename", "user_email", "user_url", "user_registered", "user_activation_key", "user_status", "display_name", "customColumn1"], + "dynamicPropertyPathList": [{ + "key": "onPageChange" + }], + "isVisibleDownload": true, + "topRow": 10.0, + "bottomRow": 86.0, + "parentRowSpace": 10.0, + "onPageChange": "{{SelectQuery.run()}}", + "isSortable": true, + "type": "TABLE_WIDGET", + "defaultSelectedRow": "0", + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [{ + "key": "onPageChange" + }, { + "key": "primaryColumns.customColumn1.onClick" + }, { + "key": "onSearchTextChanged" + }], + "dynamicBindingPathList": [{ + "key": "primaryColumns.customColumn1.buttonLabel" + }, { + "key": "tableData" + }, { + "key": "primaryColumns.ID.computedValue" + }, { + "key": "primaryColumns.user_login.computedValue" + }, { + "key": "primaryColumns.user_pass.computedValue" + }, { + "key": "primaryColumns.user_nicename.computedValue" + }, { + "key": "primaryColumns.user_email.computedValue" + }, { + "key": "primaryColumns.user_url.computedValue" + }, { + "key": "primaryColumns.user_registered.computedValue" + }, { + "key": "primaryColumns.user_activation_key.computedValue" + }, { + "key": "primaryColumns.user_status.computedValue" + }, { + "key": "primaryColumns.display_name.computedValue" + }], + "leftColumn": 0.0, + "primaryColumns": { + "customColumn1": { + "isCellVisible": true, + "isDerived": true, + "computedValue": "", + "onClick": "{{showModal('Delete_Modal')}}", + "textSize": "PARAGRAPH", + "buttonColor": "#DD4B34", + "index": 7.0, + "isVisible": true, + "label": "Delete", + "buttonLabel": "{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}", + "columnType": "button", + "horizontalAlignment": "LEFT", + "width": 150.0, + "enableFilter": true, + "enableSort": true, + "id": "customColumn1", + "isDisabled": false, + "buttonLabelColor": "#FFFFFF", + "verticalAlignment": "CENTER" + }, + "ID": { + "index": 0.0, + "width": 150.0, + "id": "ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "ID", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.ID))}}" + }, + "user_login": { + "index": 1.0, + "width": 150.0, + "id": "user_login", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "user_login", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_login))}}" + }, + "user_pass": { + "index": 2.0, + "width": 150.0, + "id": "user_pass", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "user_pass", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_pass))}}" + }, + "user_nicename": { + "index": 3.0, + "width": 150.0, + "id": "user_nicename", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "user_nicename", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_nicename))}}" + }, + "user_email": { + "index": 4.0, + "width": 150.0, + "id": "user_email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "user_email", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_email))}}" + }, + "user_url": { + "index": 5.0, + "width": 150.0, + "id": "user_url", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "user_url", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_url))}}" + }, + "user_registered": { + "index": 6.0, + "width": 150.0, + "id": "user_registered", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "user_registered", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_registered))}}" + }, + "user_activation_key": { + "index": 7.0, + "width": 150.0, + "id": "user_activation_key", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "user_activation_key", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_activation_key))}}" + }, + "user_status": { + "index": 8.0, + "width": 150.0, + "id": "user_status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "user_status", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_status))}}" + }, + "display_name": { + "index": 9.0, + "width": 150.0, + "id": "display_name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "display_name", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.display_name))}}" + } + }, + "delimiter": ",", + "derivedColumns": { + "customColumn1": { + "isDerived": true, + "computedValue": "", + "onClick": "{{DeleteQuery.run()}}", + "textSize": "PARAGRAPH", + "buttonStyle": "#DD4B34", + "index": 7.0, + "isVisible": true, + "label": "customColumn1", + "buttonLabel": "{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}", + "columnType": "button", + "horizontalAlignment": "LEFT", + "width": 150.0, + "enableFilter": true, + "enableSort": true, + "id": "customColumn1", + "buttonLabelColor": "#FFFFFF", + "verticalAlignment": "CENTER" + } + }, + "rightColumn": 64.0, + "textSize": "PARAGRAPH", + "widgetId": "jabdu9f16g", + "isVisibleFilters": true, + "tableData": "", + "isVisible": "true", + "label": "Data", + "searchKey": "", + "version": 3.0, + "parentId": "59rw5mx0bq", + "serverSidePaginationEnabled": true, + "isLoading": false, + "isVisibleCompactMode": true, + "onSearchTextChanged": "{{SelectQuery.run()}}", + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "isVisiblePagination": true, + "verticalAlignment": "CENTER", + "columnSizeMap": { + "task": 245.0, + "deliveryAddress": 170.0, + "step": 62.0, + "id": 228.0, + "status": 75.0 + } + }, { + "isRequired": false, + "widgetName": "col_select", + "isFilterable": true, + "rightColumn": 22.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "asmgosgxjm", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "{{SelectQuery.data.length > 0}}", + "label": "", + "type": "DROP_DOWN_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "defaultOptionValue": "ID", + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 7.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "options": "[\n{\n\t\"label\": \"user_nicename\",\n\t\"value\": \"user_nicename\"\n}, \n{\n\t\"label\": \"user_email\",\n\t\"value\": \"user_email\"\n}, \n{\n\t\"label\": \"user_login\",\n\t\"value\": \"user_login\"\n}, \n{\n\t\"label\": \"user_pass\",\n\t\"value\": \"user_pass\"\n}, \n{\n\t\"label\": \"ID\",\n\t\"value\": \"ID\"\n}]", + "onOptionChange": "{{SelectQuery.run()}}", + "isDisabled": false + }, { + "widgetName": "Text15", + "rightColumn": 7.0, + "textAlign": "LEFT", + "widgetId": "l8pgl90klz", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Order By :" + }, { + "isRequired": false, + "widgetName": "order_select", + "isFilterable": true, + "rightColumn": 33.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "10v8a19m25", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "{{SelectQuery.data.length > 0}}", + "label": "", + "type": "DROP_DOWN_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "defaultOptionValue": "ASC", + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 22.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "options": "[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]", + "onOptionChange": "{{SelectQuery.run()}}", + "isDisabled": false + }, { + "widgetName": "Text16", + "rightColumn": 64.0, + "textAlign": "LEFT", + "widgetId": "urzv99hdc8", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 11.78515625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "perf_users Data" + }, { + "boxShadow": "NONE", + "widgetName": "refresh_btn", + "rightColumn": 64.0, + "onClick": "{{SelectQuery.run()}}", + "iconName": "refresh", + "buttonColor": "#03B365", + "widgetId": "2jj0197tff", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "ICON_BUTTON_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 12.0703125, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "borderRadius": "CIRCLE", + "leftColumn": 60.0, + "dynamicBindingPathList": [], + "buttonVariant": "TERTIARY", + "isDisabled": false + }, { + "boxShadow": "NONE", + "widgetName": "add_btn", + "rightColumn": 60.0, + "onClick": "{{showModal('Insert_Modal')}}", + "iconName": "add", + "buttonColor": "#03B365", + "widgetId": "kby34l9nbb", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "ICON_BUTTON_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 12.0703125, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "borderRadius": "CIRCLE", + "leftColumn": 56.0, + "dynamicBindingPathList": [], + "buttonVariant": "TERTIARY", + "isDisabled": false + }] + }] + }, { + "widgetName": "Delete_Modal", + "rightColumn": 45.0, + "detachFromLayout": true, + "widgetId": "i3whp03wf0", + "topRow": 13.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "canOutsideClickClose": true, + "type": "MODAL_WIDGET", + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "shouldScrollContents": false, + "isLoading": false, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas3", + "rightColumn": 453.1875, + "detachFromLayout": true, + "widgetId": "zi8fjakv8o", + "topRow": 0.0, + "bottomRow": 230.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": true, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "i3whp03wf0", + "shouldScrollContents": false, + "minHeight": 240.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Alert_text", + "rightColumn": 41.0, + "textAlign": "LEFT", + "widgetId": "reyoxo4oec", + "topRow": 1.0, + "bottomRow": 5.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "Delete Row" + }, { + "widgetName": "Button1", + "rightColumn": 46.0, + "onClick": "{{closeModal('Delete_Modal')}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03B365", + "widgetId": "lryg8kw537", + "topRow": 17.0, + "bottomRow": 21.0, + "isVisible": "true", + "type": "BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 34.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Cancel", + "isDisabled": false + }, { + "widgetName": "Delete_Button", + "rightColumn": 64.0, + "onClick": "{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [{ + "key": "onClick" + }], + "buttonColor": "#F22B2B", + "widgetId": "qq02lh7ust", + "topRow": 17.0, + "bottomRow": 21.0, + "isVisible": "true", + "type": "BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 48.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Confirm", + "isDisabled": false + }, { + "widgetName": "Text12", + "rightColumn": 63.0, + "textAlign": "LEFT", + "widgetId": "48uac29g6e", + "topRow": 8.0, + "bottomRow": 12.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "parentColumnSpace": 6.875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Are you sure you want to delete this item?" + }], + "isDisabled": false + }], + "width": 456.0, + "height": 240.0 + }, { + "widgetName": "Insert_Modal", + "rightColumn": 41.0, + "detachFromLayout": true, + "widgetId": "vmorzie6eq", + "topRow": 16.0, + "bottomRow": 40.0, + "parentRowSpace": 10.0, + "canOutsideClickClose": true, + "type": "MODAL_WIDGET", + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "shouldScrollContents": false, + "isLoading": false, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 17.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas4", + "rightColumn": 453.1875, + "detachFromLayout": true, + "widgetId": "9rhv3ioohq", + "topRow": 0.0, + "bottomRow": 610.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": true, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "vmorzie6eq", + "shouldScrollContents": false, + "minHeight": 600.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Form2", + "backgroundColor": "#F6F7F8", + "rightColumn": 64.0, + "widgetId": "1ruewbc4ef", + "topRow": 0.0, + "bottomRow": 58.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "FORM_WIDGET", + "parentId": "9rhv3ioohq", + "isLoading": false, + "shouldScrollContents": false, + "parentColumnSpace": 8.0, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas5", + "rightColumn": 224.0, + "detachFromLayout": true, + "widgetId": "tp9pui0e6y", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 570.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "1ruewbc4ef", + "minHeight": 580.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "resetFormOnClick": true, + "widgetName": "insert_button", + "rightColumn": 62.0, + "onClick": "{{InsertQuery.run(() => SelectQuery.run(() => closeModal('Insert_Modal')))}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [{ + "key": "onClick" + }], + "buttonColor": "#03B365", + "widgetId": "h8vxf3oh4s", + "topRow": 51.0, + "bottomRow": 55.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": true, + "leftColumn": 43.0, + "dynamicBindingPathList": [], + "googleRecaptchaKey": "", + "buttonVariant": "PRIMARY", + "text": "Submit" + }, { + "resetFormOnClick": true, + "widgetName": "reset_button", + "rightColumn": 42.0, + "onClick": "{{closeModal('Insert_Modal')}}", + "isDefaultClickDisabled": true, + "buttonColor": "#03B365", + "widgetId": "o23gs26wm5", + "topRow": 51.0, + "bottomRow": 55.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": false, + "leftColumn": 29.0, + "dynamicBindingPathList": [], + "buttonVariant": "SECONDARY", + "text": "Close" + }, { + "widgetName": "Text21", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "cfmxebyn06", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "ID:" + }, { + "isRequired": false, + "widgetName": "insert_col_input1", + "rightColumn": 62.0, + "widgetId": "h1wbbv7alb", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "Autogenerated Field", + "isDisabled": true, + "validation": "true" + }, { + "widgetName": "Text22", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "jsffaxrqhw", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 2.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "user_login:" + }, { + "isRequired": true, + "widgetName": "insert_col_input2", + "rightColumn": 62.0, + "widgetId": "6enalyprua", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "defaultText": "", + "placeholderText": "user_login", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text23", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "btk60uozsm", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "user_pass:" + }, { + "isRequired": true, + "widgetName": "insert_col_input3", + "rightColumn": 62.0, + "widgetId": "e490gfts69", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "user_pass", + "defaultText": "", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text14", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "8fm60omwwv", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "user_nicename:" + }, { + "isRequired": true, + "widgetName": "insert_col_input4", + "rightColumn": 62.0, + "widgetId": "r55cydp0ao", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "user_nicename", + "defaultText": "", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text24", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "9t3vdjd5xj", + "topRow": 33.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "user_email:" + }, { + "isRequired": true, + "widgetName": "insert_col_input5", + "rightColumn": 62.0, + "widgetId": "5rfqxgj0vm", + "topRow": 33.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "user_email", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text13Copy", + "rightColumn": 35.0, + "textAlign": "LEFT", + "widgetId": "18x7vdv3gs", + "topRow": 0.0, + "bottomRow": 4.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "shouldScroll": false, + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "Insert Row" + }] + }] + }], + "isDisabled": false + }], + "width": 532.0, + "height": 600.0 + }, { + "widgetName": "Form1", + "backgroundColor": "white", + "rightColumn": 64.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "m7dvlazbn7", + "topRow": 0.0, + "bottomRow": 46.0, + "parentRowSpace": 10.0, + "isVisible": "{{!!Table1.selectedRow.ID}}", + "type": "FORM_WIDGET", + "parentId": "0", + "isLoading": false, + "shouldScrollContents": true, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 40.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "children": [{ + "widgetName": "Canvas2", + "rightColumn": 528.71875, + "detachFromLayout": true, + "widgetId": "cicukwhp5j", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 450.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "m7dvlazbn7", + "minHeight": 460.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "resetFormOnClick": false, + "widgetName": "update_button", + "rightColumn": 63.0, + "onClick": "{{UpdateQuery.run(() => SelectQuery.run(), () => showAlert('Error while updating resource!','error'))}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03B365", + "widgetId": "4gnygu5jew", + "topRow": 39.0, + "bottomRow": 43.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "cicukwhp5j", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": true, + "leftColumn": 42.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Update" + }, { + "resetFormOnClick": true, + "widgetName": "reset_update_button", + "rightColumn": 42.0, + "onClick": "", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03b365", + "widgetId": "twwgpz5wfu", + "topRow": 39.0, + "bottomRow": 43.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "cicukwhp5j", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": false, + "leftColumn": 28.0, + "dynamicBindingPathList": [], + "buttonVariant": "SECONDARY", + "text": "Reset" + }, { + "isRequired": true, + "widgetName": "update_col_2", + "rightColumn": 63.0, + "widgetId": "in8e51pg3y", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.user_login}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": true, + "widgetName": "update_col_3", + "rightColumn": 63.0, + "widgetId": "mlhvfasf31", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.user_pass}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": true, + "widgetName": "update_col_4", + "rightColumn": 63.0, + "widgetId": "0lz9vhcnr0", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.user_nicename}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": true, + "widgetName": "update_col_5", + "rightColumn": 63.0, + "widgetId": "m4esf7fww5", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.user_email}}", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text9", + "rightColumn": 63.0, + "textAlign": "LEFT", + "widgetId": "4hnz8ktmz5", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [{ + "key": "text" + }], + "fontSize": "HEADING1", + "text": "Update Row: {{Table1.selectedRow.ID}}" + }, { + "widgetName": "Text17", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "afzzc7q8af", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "user_login:" + }, { + "widgetName": "Text18", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "xqcsd2e5dj", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "user_pass:" + }, { + "widgetName": "Text19", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "l109ilp3vq", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "user_nicename:" + }, { + "widgetName": "Text20", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "gqpwf0yng6", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "user_email:" + }] + }] + }] + }, + "layoutOnLoadActions": [ + [{ + "id": "Users_SelectQuery", + "name": "SelectQuery", + "pluginType": "DB", + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "Table1.searchText || \"\"", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "timeoutInMillisecond": 10000.0 + }] + ], + "validOnPageLoadActions": true, + "id": "Users", + "deleted": false, + "policies": [], + "userPermissions": [] + }], + "userPermissions": [], + "policies": [], + "isHidden": false + }, + "publishedPage": { + "name": "Users", + "slug": "users", + "layouts": [{ + "viewMode": false, + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 1432.0, + "snapColumns": 64.0, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0.0, + "bottomRow": 890.0, + "containerStyle": "none", + "snapRows": 125.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 50.0, + "minHeight": 900.0, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "dynamicBindingPathList": [], + "leftColumn": 0.0, + "children": [{ + "backgroundColor": "#FFFFFF", + "widgetName": "Container1", + "rightColumn": 40.0, + "widgetId": "mvubsemxfo", + "containerStyle": "card", + "topRow": 0.0, + "bottomRow": 87.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "CONTAINER_WIDGET", + "version": 1.0, + "parentId": "0", + "isLoading": false, + "parentColumnSpace": 19.75, + "leftColumn": 0.0, + "children": [{ + "widgetName": "Canvas1", + "rightColumn": 632.0, + "detachFromLayout": true, + "widgetId": "59rw5mx0bq", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 890.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "mvubsemxfo", + "minHeight": 870.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Table1", + "columnOrder": ["ID", "user_login", "user_pass", "user_nicename", "user_email", "user_url", "user_registered", "user_activation_key", "user_status", "display_name", "customColumn1"], + "dynamicPropertyPathList": [{ + "key": "onPageChange" + }], + "isVisibleDownload": true, + "topRow": 10.0, + "bottomRow": 86.0, + "parentRowSpace": 10.0, + "onPageChange": "{{SelectQuery.run()}}", + "isSortable": true, + "type": "TABLE_WIDGET", + "defaultSelectedRow": "0", + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [{ + "key": "onPageChange" + }, { + "key": "primaryColumns.customColumn1.onClick" + }, { + "key": "onSearchTextChanged" + }], + "dynamicBindingPathList": [{ + "key": "primaryColumns.customColumn1.buttonLabel" + }, { + "key": "tableData" + }, { + "key": "primaryColumns.ID.computedValue" + }, { + "key": "primaryColumns.user_login.computedValue" + }, { + "key": "primaryColumns.user_pass.computedValue" + }, { + "key": "primaryColumns.user_nicename.computedValue" + }, { + "key": "primaryColumns.user_email.computedValue" + }, { + "key": "primaryColumns.user_url.computedValue" + }, { + "key": "primaryColumns.user_registered.computedValue" + }, { + "key": "primaryColumns.user_activation_key.computedValue" + }, { + "key": "primaryColumns.user_status.computedValue" + }, { + "key": "primaryColumns.display_name.computedValue" + }], + "leftColumn": 0.0, + "primaryColumns": { + "customColumn1": { + "isCellVisible": true, + "isDerived": true, + "computedValue": "", + "onClick": "{{showModal('Delete_Modal')}}", + "textSize": "PARAGRAPH", + "buttonColor": "#DD4B34", + "index": 7.0, + "isVisible": true, + "label": "Delete", + "buttonLabel": "{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}", + "columnType": "button", + "horizontalAlignment": "LEFT", + "width": 150.0, + "enableFilter": true, + "enableSort": true, + "id": "customColumn1", + "isDisabled": false, + "buttonLabelColor": "#FFFFFF", + "verticalAlignment": "CENTER" + }, + "ID": { + "index": 0.0, + "width": 150.0, + "id": "ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "ID", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.ID))}}" + }, + "user_login": { + "index": 1.0, + "width": 150.0, + "id": "user_login", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "user_login", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_login))}}" + }, + "user_pass": { + "index": 2.0, + "width": 150.0, + "id": "user_pass", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "user_pass", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_pass))}}" + }, + "user_nicename": { + "index": 3.0, + "width": 150.0, + "id": "user_nicename", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "user_nicename", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_nicename))}}" + }, + "user_email": { + "index": 4.0, + "width": 150.0, + "id": "user_email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "user_email", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_email))}}" + }, + "user_url": { + "index": 5.0, + "width": 150.0, + "id": "user_url", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "user_url", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_url))}}" + }, + "user_registered": { + "index": 6.0, + "width": 150.0, + "id": "user_registered", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "user_registered", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_registered))}}" + }, + "user_activation_key": { + "index": 7.0, + "width": 150.0, + "id": "user_activation_key", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "user_activation_key", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_activation_key))}}" + }, + "user_status": { + "index": 8.0, + "width": 150.0, + "id": "user_status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "user_status", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_status))}}" + }, + "display_name": { + "index": 9.0, + "width": 150.0, + "id": "display_name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "display_name", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.display_name))}}" + } + }, + "delimiter": ",", + "derivedColumns": { + "customColumn1": { + "isDerived": true, + "computedValue": "", + "onClick": "{{DeleteQuery.run()}}", + "textSize": "PARAGRAPH", + "buttonStyle": "#DD4B34", + "index": 7.0, + "isVisible": true, + "label": "customColumn1", + "buttonLabel": "{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}", + "columnType": "button", + "horizontalAlignment": "LEFT", + "width": 150.0, + "enableFilter": true, + "enableSort": true, + "id": "customColumn1", + "buttonLabelColor": "#FFFFFF", + "verticalAlignment": "CENTER" + } + }, + "rightColumn": 64.0, + "textSize": "PARAGRAPH", + "widgetId": "jabdu9f16g", + "isVisibleFilters": true, + "tableData": "", + "isVisible": "true", + "label": "Data", + "searchKey": "", + "version": 3.0, + "parentId": "59rw5mx0bq", + "serverSidePaginationEnabled": true, + "isLoading": false, + "isVisibleCompactMode": true, + "onSearchTextChanged": "{{SelectQuery.run()}}", + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "isVisiblePagination": true, + "verticalAlignment": "CENTER", + "columnSizeMap": { + "task": 245.0, + "deliveryAddress": 170.0, + "step": 62.0, + "id": 228.0, + "status": 75.0 + } + }, { + "isRequired": false, + "widgetName": "col_select", + "isFilterable": true, + "rightColumn": 22.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "asmgosgxjm", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "{{SelectQuery.data.length > 0}}", + "label": "", + "type": "DROP_DOWN_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "defaultOptionValue": "ID", + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 7.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "options": "[\n{\n\t\"label\": \"user_nicename\",\n\t\"value\": \"user_nicename\"\n}, \n{\n\t\"label\": \"user_email\",\n\t\"value\": \"user_email\"\n}, \n{\n\t\"label\": \"user_login\",\n\t\"value\": \"user_login\"\n}, \n{\n\t\"label\": \"user_pass\",\n\t\"value\": \"user_pass\"\n}, \n{\n\t\"label\": \"ID\",\n\t\"value\": \"ID\"\n}]", + "onOptionChange": "{{SelectQuery.run()}}", + "isDisabled": false + }, { + "widgetName": "Text15", + "rightColumn": 7.0, + "textAlign": "LEFT", + "widgetId": "l8pgl90klz", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Order By :" + }, { + "isRequired": false, + "widgetName": "order_select", + "isFilterable": true, + "rightColumn": 33.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "10v8a19m25", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "{{SelectQuery.data.length > 0}}", + "label": "", + "type": "DROP_DOWN_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "defaultOptionValue": "ASC", + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 22.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "options": "[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]", + "onOptionChange": "{{SelectQuery.run()}}", + "isDisabled": false + }, { + "widgetName": "Text16", + "rightColumn": 64.0, + "textAlign": "LEFT", + "widgetId": "urzv99hdc8", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 11.78515625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "perf_users Data" + }, { + "boxShadow": "NONE", + "widgetName": "refresh_btn", + "rightColumn": 64.0, + "onClick": "{{SelectQuery.run()}}", + "iconName": "refresh", + "buttonColor": "#03B365", + "widgetId": "2jj0197tff", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "ICON_BUTTON_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 12.0703125, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "borderRadius": "CIRCLE", + "leftColumn": 60.0, + "dynamicBindingPathList": [], + "buttonVariant": "TERTIARY", + "isDisabled": false + }, { + "boxShadow": "NONE", + "widgetName": "add_btn", + "rightColumn": 60.0, + "onClick": "{{showModal('Insert_Modal')}}", + "iconName": "add", + "buttonColor": "#03B365", + "widgetId": "kby34l9nbb", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "ICON_BUTTON_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 12.0703125, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "borderRadius": "CIRCLE", + "leftColumn": 56.0, + "dynamicBindingPathList": [], + "buttonVariant": "TERTIARY", + "isDisabled": false + }] + }] + }, { + "widgetName": "Delete_Modal", + "rightColumn": 45.0, + "detachFromLayout": true, + "widgetId": "i3whp03wf0", + "topRow": 13.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "canOutsideClickClose": true, + "type": "MODAL_WIDGET", + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "shouldScrollContents": false, + "isLoading": false, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas3", + "rightColumn": 453.1875, + "detachFromLayout": true, + "widgetId": "zi8fjakv8o", + "topRow": 0.0, + "bottomRow": 230.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": true, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "i3whp03wf0", + "shouldScrollContents": false, + "minHeight": 240.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Alert_text", + "rightColumn": 41.0, + "textAlign": "LEFT", + "widgetId": "reyoxo4oec", + "topRow": 1.0, + "bottomRow": 5.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "Delete Row" + }, { + "widgetName": "Button1", + "rightColumn": 46.0, + "onClick": "{{closeModal('Delete_Modal')}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03B365", + "widgetId": "lryg8kw537", + "topRow": 17.0, + "bottomRow": 21.0, + "isVisible": "true", + "type": "BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 34.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Cancel", + "isDisabled": false + }, { + "widgetName": "Delete_Button", + "rightColumn": 64.0, + "onClick": "{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [{ + "key": "onClick" + }], + "buttonColor": "#F22B2B", + "widgetId": "qq02lh7ust", + "topRow": 17.0, + "bottomRow": 21.0, + "isVisible": "true", + "type": "BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 48.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Confirm", + "isDisabled": false + }, { + "widgetName": "Text12", + "rightColumn": 63.0, + "textAlign": "LEFT", + "widgetId": "48uac29g6e", + "topRow": 8.0, + "bottomRow": 12.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "parentColumnSpace": 6.875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Are you sure you want to delete this item?" + }], + "isDisabled": false + }], + "width": 456.0, + "height": 240.0 + }, { + "widgetName": "Insert_Modal", + "rightColumn": 41.0, + "detachFromLayout": true, + "widgetId": "vmorzie6eq", + "topRow": 16.0, + "bottomRow": 40.0, + "parentRowSpace": 10.0, + "canOutsideClickClose": true, + "type": "MODAL_WIDGET", + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "shouldScrollContents": false, + "isLoading": false, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 17.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas4", + "rightColumn": 453.1875, + "detachFromLayout": true, + "widgetId": "9rhv3ioohq", + "topRow": 0.0, + "bottomRow": 610.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": true, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "vmorzie6eq", + "shouldScrollContents": false, + "minHeight": 600.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Form2", + "backgroundColor": "#F6F7F8", + "rightColumn": 64.0, + "widgetId": "1ruewbc4ef", + "topRow": 0.0, + "bottomRow": 58.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "FORM_WIDGET", + "parentId": "9rhv3ioohq", + "isLoading": false, + "shouldScrollContents": false, + "parentColumnSpace": 8.0, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas5", + "rightColumn": 224.0, + "detachFromLayout": true, + "widgetId": "tp9pui0e6y", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 570.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "1ruewbc4ef", + "minHeight": 580.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "resetFormOnClick": true, + "widgetName": "insert_button", + "rightColumn": 62.0, + "onClick": "{{InsertQuery.run(() => SelectQuery.run(() => closeModal('Insert_Modal')))}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [{ + "key": "onClick" + }], + "buttonColor": "#03B365", + "widgetId": "h8vxf3oh4s", + "topRow": 51.0, + "bottomRow": 55.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": true, + "leftColumn": 43.0, + "dynamicBindingPathList": [], + "googleRecaptchaKey": "", + "buttonVariant": "PRIMARY", + "text": "Submit" + }, { + "resetFormOnClick": true, + "widgetName": "reset_button", + "rightColumn": 42.0, + "onClick": "{{closeModal('Insert_Modal')}}", + "isDefaultClickDisabled": true, + "buttonColor": "#03B365", + "widgetId": "o23gs26wm5", + "topRow": 51.0, + "bottomRow": 55.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": false, + "leftColumn": 29.0, + "dynamicBindingPathList": [], + "buttonVariant": "SECONDARY", + "text": "Close" + }, { + "widgetName": "Text21", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "cfmxebyn06", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "ID:" + }, { + "isRequired": false, + "widgetName": "insert_col_input1", + "rightColumn": 62.0, + "widgetId": "h1wbbv7alb", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "Autogenerated Field", + "isDisabled": true, + "validation": "true" + }, { + "widgetName": "Text22", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "jsffaxrqhw", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 2.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "user_login:" + }, { + "isRequired": true, + "widgetName": "insert_col_input2", + "rightColumn": 62.0, + "widgetId": "6enalyprua", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "defaultText": "", + "placeholderText": "user_login", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text23", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "btk60uozsm", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "user_pass:" + }, { + "isRequired": true, + "widgetName": "insert_col_input3", + "rightColumn": 62.0, + "widgetId": "e490gfts69", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "user_pass", + "defaultText": "", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text14", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "8fm60omwwv", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "user_nicename:" + }, { + "isRequired": true, + "widgetName": "insert_col_input4", + "rightColumn": 62.0, + "widgetId": "r55cydp0ao", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "user_nicename", + "defaultText": "", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text24", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "9t3vdjd5xj", + "topRow": 33.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "user_email:" + }, { + "isRequired": true, + "widgetName": "insert_col_input5", + "rightColumn": 62.0, + "widgetId": "5rfqxgj0vm", + "topRow": 33.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "user_email", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text13Copy", + "rightColumn": 35.0, + "textAlign": "LEFT", + "widgetId": "18x7vdv3gs", + "topRow": 0.0, + "bottomRow": 4.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "shouldScroll": false, + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "Insert Row" + }] + }] + }], + "isDisabled": false + }], + "width": 532.0, + "height": 600.0 + }, { + "widgetName": "Form1", + "backgroundColor": "white", + "rightColumn": 64.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "m7dvlazbn7", + "topRow": 0.0, + "bottomRow": 46.0, + "parentRowSpace": 10.0, + "isVisible": "{{!!Table1.selectedRow.ID}}", + "type": "FORM_WIDGET", + "parentId": "0", + "isLoading": false, + "shouldScrollContents": true, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 40.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "children": [{ + "widgetName": "Canvas2", + "rightColumn": 528.71875, + "detachFromLayout": true, + "widgetId": "cicukwhp5j", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 450.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "m7dvlazbn7", + "minHeight": 460.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "resetFormOnClick": false, + "widgetName": "update_button", + "rightColumn": 63.0, + "onClick": "{{UpdateQuery.run(() => SelectQuery.run(), () => showAlert('Error while updating resource!','error'))}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03B365", + "widgetId": "4gnygu5jew", + "topRow": 39.0, + "bottomRow": 43.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "cicukwhp5j", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": true, + "leftColumn": 42.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Update" + }, { + "resetFormOnClick": true, + "widgetName": "reset_update_button", + "rightColumn": 42.0, + "onClick": "", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03b365", + "widgetId": "twwgpz5wfu", + "topRow": 39.0, + "bottomRow": 43.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "cicukwhp5j", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": false, + "leftColumn": 28.0, + "dynamicBindingPathList": [], + "buttonVariant": "SECONDARY", + "text": "Reset" + }, { + "isRequired": true, + "widgetName": "update_col_2", + "rightColumn": 63.0, + "widgetId": "in8e51pg3y", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.user_login}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": true, + "widgetName": "update_col_3", + "rightColumn": 63.0, + "widgetId": "mlhvfasf31", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.user_pass}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": true, + "widgetName": "update_col_4", + "rightColumn": 63.0, + "widgetId": "0lz9vhcnr0", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.user_nicename}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": true, + "widgetName": "update_col_5", + "rightColumn": 63.0, + "widgetId": "m4esf7fww5", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.user_email}}", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text9", + "rightColumn": 63.0, + "textAlign": "LEFT", + "widgetId": "4hnz8ktmz5", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [{ + "key": "text" + }], + "fontSize": "HEADING1", + "text": "Update Row: {{Table1.selectedRow.ID}}" + }, { + "widgetName": "Text17", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "afzzc7q8af", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "user_login:" + }, { + "widgetName": "Text18", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "xqcsd2e5dj", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "user_pass:" + }, { + "widgetName": "Text19", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "l109ilp3vq", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "user_nicename:" + }, { + "widgetName": "Text20", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "gqpwf0yng6", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "user_email:" + }] + }] + }] + }, + "layoutOnLoadActions": [ + [{ + "id": "Users_SelectQuery", + "name": "SelectQuery", + "pluginType": "DB", + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "Table1.searchText || \"\"", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "timeoutInMillisecond": 10000.0 + }] + ], + "validOnPageLoadActions": true, + "id": "Users", + "deleted": false, + "policies": [], + "userPermissions": [] + }], + "userPermissions": [], + "policies": [], + "isHidden": false + }, + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61eff4883b61bf7f582f1831" + }, { + "unpublishedPage": { + "name": "Comments", + "slug": "comments", + "layouts": [{ + "viewMode": false, + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 1280.0, + "snapColumns": 64.0, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0.0, + "bottomRow": 890.0, + "containerStyle": "none", + "snapRows": 125.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 51.0, + "minHeight": 900.0, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "dynamicBindingPathList": [], + "leftColumn": 0.0, + "children": [{ + "backgroundColor": "#FFFFFF", + "widgetName": "Container1", + "rightColumn": 40.0, + "widgetId": "mvubsemxfo", + "containerStyle": "card", + "topRow": 0.0, + "bottomRow": 87.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "CONTAINER_WIDGET", + "version": 1.0, + "parentId": "0", + "isLoading": false, + "parentColumnSpace": 19.75, + "leftColumn": 0.0, + "children": [{ + "widgetName": "Canvas1", + "rightColumn": 632.0, + "detachFromLayout": true, + "widgetId": "59rw5mx0bq", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 890.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "mvubsemxfo", + "minHeight": 870.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Table1", + "columnOrder": ["comment_ID", "comment_post_ID", "comment_author", "comment_author_email", "comment_author_url", "comment_author_IP", "comment_date", "comment_date_gmt", "comment_content", "comment_karma", "comment_approved", "comment_agent", "comment_type", "comment_parent", "user_id", "customColumn1"], + "dynamicPropertyPathList": [{ + "key": "onPageChange" + }], + "isVisibleDownload": true, + "topRow": 10.0, + "bottomRow": 86.0, + "parentRowSpace": 10.0, + "onPageChange": "{{SelectQuery.run()}}", + "isSortable": true, + "type": "TABLE_WIDGET", + "defaultSelectedRow": "0", + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [{ + "key": "onPageChange" + }, { + "key": "primaryColumns.customColumn1.onClick" + }, { + "key": "onSearchTextChanged" + }], + "dynamicBindingPathList": [{ + "key": "primaryColumns.customColumn1.buttonLabel" + }, { + "key": "tableData" + }, { + "key": "primaryColumns.comment_ID.computedValue" + }, { + "key": "primaryColumns.comment_post_ID.computedValue" + }, { + "key": "primaryColumns.comment_author.computedValue" + }, { + "key": "primaryColumns.comment_author_email.computedValue" + }, { + "key": "primaryColumns.comment_author_url.computedValue" + }, { + "key": "primaryColumns.comment_author_IP.computedValue" + }, { + "key": "primaryColumns.comment_date.computedValue" + }, { + "key": "primaryColumns.comment_date_gmt.computedValue" + }, { + "key": "primaryColumns.comment_content.computedValue" + }, { + "key": "primaryColumns.comment_karma.computedValue" + }, { + "key": "primaryColumns.comment_approved.computedValue" + }, { + "key": "primaryColumns.comment_agent.computedValue" + }, { + "key": "primaryColumns.comment_type.computedValue" + }, { + "key": "primaryColumns.comment_parent.computedValue" + }, { + "key": "primaryColumns.user_id.computedValue" + }], + "leftColumn": 0.0, + "primaryColumns": { + "customColumn1": { + "isCellVisible": true, + "isDerived": true, + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.customColumn1))}}", + "onClick": "{{showModal('Delete_Modal')}}", + "textSize": "PARAGRAPH", + "buttonColor": "#DD4B34", + "index": 7.0, + "isVisible": true, + "label": "Delete", + "buttonLabel": "{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}", + "columnType": "button", + "horizontalAlignment": "LEFT", + "width": 150.0, + "enableFilter": true, + "enableSort": true, + "id": "customColumn1", + "isDisabled": false, + "buttonLabelColor": "#FFFFFF", + "verticalAlignment": "CENTER" + }, + "comment_ID": { + "index": 0.0, + "width": 150.0, + "id": "comment_ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_ID", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_ID))}}" + }, + "comment_post_ID": { + "index": 1.0, + "width": 150.0, + "id": "comment_post_ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_post_ID", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_post_ID))}}" + }, + "comment_author": { + "index": 2.0, + "width": 150.0, + "id": "comment_author", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_author", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_author))}}" + }, + "comment_author_email": { + "index": 3.0, + "width": 150.0, + "id": "comment_author_email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_author_email", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_email))}}" + }, + "comment_author_url": { + "index": 4.0, + "width": 150.0, + "id": "comment_author_url", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_author_url", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_url))}}" + }, + "comment_author_IP": { + "index": 5.0, + "width": 150.0, + "id": "comment_author_IP", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_author_IP", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_IP))}}" + }, + "comment_date": { + "index": 6.0, + "width": 150.0, + "id": "comment_date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_date", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_date))}}" + }, + "comment_date_gmt": { + "index": 7.0, + "width": 150.0, + "id": "comment_date_gmt", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_date_gmt", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_date_gmt))}}" + }, + "comment_content": { + "index": 8.0, + "width": 150.0, + "id": "comment_content", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_content", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_content))}}" + }, + "comment_karma": { + "index": 9.0, + "width": 150.0, + "id": "comment_karma", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_karma", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_karma))}}" + }, + "comment_approved": { + "index": 10.0, + "width": 150.0, + "id": "comment_approved", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_approved", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_approved))}}" + }, + "comment_agent": { + "index": 11.0, + "width": 150.0, + "id": "comment_agent", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_agent", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_agent))}}" + }, + "comment_type": { + "index": 12.0, + "width": 150.0, + "id": "comment_type", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_type", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_type))}}" + }, + "comment_parent": { + "index": 13.0, + "width": 150.0, + "id": "comment_parent", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_parent", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_parent))}}" + }, + "user_id": { + "index": 14.0, + "width": 150.0, + "id": "user_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "user_id", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_id))}}" + } + }, + "delimiter": ",", + "derivedColumns": { + "customColumn1": { + "isDerived": true, + "computedValue": "", + "onClick": "{{DeleteQuery.run()}}", + "textSize": "PARAGRAPH", + "buttonStyle": "#DD4B34", + "index": 7.0, + "isVisible": true, + "label": "customColumn1", + "buttonLabel": "{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}", + "columnType": "button", + "horizontalAlignment": "LEFT", + "width": 150.0, + "enableFilter": true, + "enableSort": true, + "id": "customColumn1", + "buttonLabelColor": "#FFFFFF", + "verticalAlignment": "CENTER" + } + }, + "rightColumn": 64.0, + "textSize": "PARAGRAPH", + "widgetId": "jabdu9f16g", + "isVisibleFilters": true, + "tableData": "", + "isVisible": "true", + "label": "Data", + "searchKey": "", + "version": 3.0, + "parentId": "59rw5mx0bq", + "serverSidePaginationEnabled": true, + "isLoading": false, + "isVisibleCompactMode": true, + "onSearchTextChanged": "{{SelectQuery.run()}}", + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "isVisiblePagination": true, + "verticalAlignment": "CENTER", + "columnSizeMap": { + "task": 245.0, + "deliveryAddress": 170.0, + "step": 62.0, + "id": 228.0, + "status": 75.0 + } + }, { + "isRequired": false, + "widgetName": "col_select", + "isFilterable": true, + "rightColumn": 22.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "asmgosgxjm", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "{{SelectQuery.data.length > 0}}", + "label": "", + "type": "DROP_DOWN_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "defaultOptionValue": "comment_ID", + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 7.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "options": "[\n{\n\t\"label\": \"comment_author\",\n\t\"value\": \"comment_author\"\n}, \n{\n\t\"label\": \"comment_author_url\",\n\t\"value\": \"comment_author_url\"\n}, \n{\n\t\"label\": \"comment_author_email\",\n\t\"value\": \"comment_author_email\"\n}, \n{\n\t\"label\": \"comment_post_ID\",\n\t\"value\": \"comment_post_ID\"\n}, \n{\n\t\"label\": \"comment_ID\",\n\t\"value\": \"comment_ID\"\n}]", + "onOptionChange": "{{SelectQuery.run()}}", + "isDisabled": false + }, { + "widgetName": "Text15", + "rightColumn": 7.0, + "textAlign": "LEFT", + "widgetId": "l8pgl90klz", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Order By :" + }, { + "isRequired": false, + "widgetName": "order_select", + "isFilterable": true, + "rightColumn": 33.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "10v8a19m25", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "{{SelectQuery.data.length > 0}}", + "label": "", + "type": "DROP_DOWN_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "defaultOptionValue": "ASC", + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 22.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "options": "[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]", + "onOptionChange": "{{SelectQuery.run()}}", + "isDisabled": false + }, { + "widgetName": "Text16", + "rightColumn": 64.0, + "textAlign": "LEFT", + "widgetId": "urzv99hdc8", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 11.78515625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "perf_comments Data" + }, { + "boxShadow": "NONE", + "widgetName": "refresh_btn", + "rightColumn": 64.0, + "onClick": "{{SelectQuery.run()}}", + "iconName": "refresh", + "buttonColor": "#03B365", + "widgetId": "2jj0197tff", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "ICON_BUTTON_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 12.0703125, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "borderRadius": "CIRCLE", + "leftColumn": 60.0, + "dynamicBindingPathList": [], + "buttonVariant": "TERTIARY", + "isDisabled": false + }, { + "boxShadow": "NONE", + "widgetName": "add_btn", + "rightColumn": 60.0, + "onClick": "{{showModal('Insert_Modal')}}", + "iconName": "add", + "buttonColor": "#03B365", + "widgetId": "kby34l9nbb", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "ICON_BUTTON_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 12.0703125, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "borderRadius": "CIRCLE", + "leftColumn": 56.0, + "dynamicBindingPathList": [], + "buttonVariant": "TERTIARY", + "isDisabled": false + }] + }] + }, { + "widgetName": "Delete_Modal", + "rightColumn": 45.0, + "detachFromLayout": true, + "widgetId": "i3whp03wf0", + "topRow": 13.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "canOutsideClickClose": true, + "type": "MODAL_WIDGET", + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "shouldScrollContents": false, + "isLoading": false, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas3", + "rightColumn": 453.1875, + "detachFromLayout": true, + "widgetId": "zi8fjakv8o", + "topRow": 0.0, + "bottomRow": 230.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": true, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "i3whp03wf0", + "shouldScrollContents": false, + "minHeight": 240.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Alert_text", + "rightColumn": 41.0, + "textAlign": "LEFT", + "widgetId": "reyoxo4oec", + "topRow": 1.0, + "bottomRow": 5.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "Delete Row" + }, { + "widgetName": "Button1", + "rightColumn": 46.0, + "onClick": "{{closeModal('Delete_Modal')}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03B365", + "widgetId": "lryg8kw537", + "topRow": 17.0, + "bottomRow": 21.0, + "isVisible": "true", + "type": "BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 34.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Cancel", + "isDisabled": false + }, { + "widgetName": "Delete_Button", + "rightColumn": 64.0, + "onClick": "{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [{ + "key": "onClick" + }], + "buttonColor": "#F22B2B", + "widgetId": "qq02lh7ust", + "topRow": 17.0, + "bottomRow": 21.0, + "isVisible": "true", + "type": "BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 48.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Confirm", + "isDisabled": false + }, { + "widgetName": "Text12", + "rightColumn": 63.0, + "textAlign": "LEFT", + "widgetId": "48uac29g6e", + "topRow": 8.0, + "bottomRow": 12.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "parentColumnSpace": 6.875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Are you sure you want to delete this item?" + }], + "isDisabled": false + }], + "width": 456.0, + "height": 240.0 + }, { + "widgetName": "Insert_Modal", + "rightColumn": 41.0, + "detachFromLayout": true, + "widgetId": "vmorzie6eq", + "topRow": 16.0, + "bottomRow": 40.0, + "parentRowSpace": 10.0, + "canOutsideClickClose": true, + "type": "MODAL_WIDGET", + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "shouldScrollContents": false, + "isLoading": false, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 17.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas4", + "rightColumn": 453.1875, + "detachFromLayout": true, + "widgetId": "9rhv3ioohq", + "topRow": 0.0, + "bottomRow": 610.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": true, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "vmorzie6eq", + "shouldScrollContents": false, + "minHeight": 600.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Form2", + "backgroundColor": "#F6F7F8", + "rightColumn": 64.0, + "widgetId": "1ruewbc4ef", + "topRow": 0.0, + "bottomRow": 58.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "FORM_WIDGET", + "parentId": "9rhv3ioohq", + "isLoading": false, + "shouldScrollContents": false, + "parentColumnSpace": 8.0, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas5", + "rightColumn": 224.0, + "detachFromLayout": true, + "widgetId": "tp9pui0e6y", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 570.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "1ruewbc4ef", + "minHeight": 580.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "resetFormOnClick": true, + "widgetName": "insert_button", + "rightColumn": 62.0, + "onClick": "{{InsertQuery.run(() => SelectQuery.run(() => closeModal('Insert_Modal')))}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [{ + "key": "onClick" + }], + "buttonColor": "#03B365", + "widgetId": "h8vxf3oh4s", + "topRow": 51.0, + "bottomRow": 55.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": true, + "leftColumn": 43.0, + "dynamicBindingPathList": [], + "googleRecaptchaKey": "", + "buttonVariant": "PRIMARY", + "text": "Submit" + }, { + "resetFormOnClick": true, + "widgetName": "reset_button", + "rightColumn": 42.0, + "onClick": "{{closeModal('Insert_Modal')}}", + "isDefaultClickDisabled": true, + "buttonColor": "#03B365", + "widgetId": "o23gs26wm5", + "topRow": 51.0, + "bottomRow": 55.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": false, + "leftColumn": 29.0, + "dynamicBindingPathList": [], + "buttonVariant": "SECONDARY", + "text": "Close" + }, { + "widgetName": "Text21", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "cfmxebyn06", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "comment_ID:" + }, { + "isRequired": false, + "widgetName": "insert_col_input1", + "rightColumn": 62.0, + "widgetId": "h1wbbv7alb", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "Autogenerated Field", + "isDisabled": true, + "validation": "true" + }, { + "widgetName": "Text22", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "jsffaxrqhw", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 2.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "comment_author_email:" + }, { + "isRequired": true, + "widgetName": "insert_col_input2", + "rightColumn": 62.0, + "widgetId": "6enalyprua", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "defaultText": "", + "placeholderText": "comment_author_email", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text23", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "btk60uozsm", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "comment_post_ID:" + }, { + "isRequired": true, + "widgetName": "insert_col_input3", + "rightColumn": 62.0, + "widgetId": "e490gfts69", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "comment_post_ID", + "defaultText": "", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text14", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "8fm60omwwv", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "comment_author:" + }, { + "isRequired": true, + "widgetName": "insert_col_input4", + "rightColumn": 62.0, + "widgetId": "r55cydp0ao", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "comment_author", + "defaultText": "", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text24", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "9t3vdjd5xj", + "topRow": 33.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "comment_author_url:" + }, { + "isRequired": true, + "widgetName": "insert_col_input5", + "rightColumn": 62.0, + "widgetId": "5rfqxgj0vm", + "topRow": 33.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "comment_author_url", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text13Copy", + "rightColumn": 35.0, + "textAlign": "LEFT", + "widgetId": "18x7vdv3gs", + "topRow": 0.0, + "bottomRow": 4.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "shouldScroll": false, + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "Insert Row" + }] + }] + }], + "isDisabled": false + }], + "width": 532.0, + "height": 600.0 + }, { + "widgetName": "Form1", + "backgroundColor": "white", + "rightColumn": 64.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "m7dvlazbn7", + "topRow": 0.0, + "bottomRow": 46.0, + "parentRowSpace": 10.0, + "isVisible": "{{!!Table1.selectedRow.comment_ID}}", + "type": "FORM_WIDGET", + "parentId": "0", + "isLoading": false, + "shouldScrollContents": true, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 40.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "children": [{ + "widgetName": "Canvas2", + "rightColumn": 528.71875, + "detachFromLayout": true, + "widgetId": "cicukwhp5j", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 450.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "m7dvlazbn7", + "minHeight": 460.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "resetFormOnClick": false, + "widgetName": "update_button", + "rightColumn": 63.0, + "onClick": "{{UpdateQuery.run(() => SelectQuery.run(), () => showAlert('Error while updating resource!','error'))}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03B365", + "widgetId": "4gnygu5jew", + "topRow": 39.0, + "bottomRow": 43.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "cicukwhp5j", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": true, + "leftColumn": 42.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Update" + }, { + "resetFormOnClick": true, + "widgetName": "reset_update_button", + "rightColumn": 42.0, + "onClick": "", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03b365", + "widgetId": "twwgpz5wfu", + "topRow": 39.0, + "bottomRow": 43.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "cicukwhp5j", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": false, + "leftColumn": 28.0, + "dynamicBindingPathList": [], + "buttonVariant": "SECONDARY", + "text": "Reset" + }, { + "isRequired": true, + "widgetName": "update_col_2", + "rightColumn": 63.0, + "widgetId": "in8e51pg3y", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.comment_author_email}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": true, + "widgetName": "update_col_3", + "rightColumn": 63.0, + "widgetId": "mlhvfasf31", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.comment_post_ID}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": true, + "widgetName": "update_col_4", + "rightColumn": 63.0, + "widgetId": "0lz9vhcnr0", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.comment_author}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": true, + "widgetName": "update_col_5", + "rightColumn": 63.0, + "widgetId": "m4esf7fww5", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.comment_author_url}}", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text9", + "rightColumn": 63.0, + "textAlign": "LEFT", + "widgetId": "4hnz8ktmz5", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [{ + "key": "text" + }], + "fontSize": "HEADING1", + "text": "Update Row: {{Table1.selectedRow.comment_ID}}" + }, { + "widgetName": "Text17", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "afzzc7q8af", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "comment_author_email:" + }, { + "widgetName": "Text18", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "xqcsd2e5dj", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "comment_post_ID:" + }, { + "widgetName": "Text19", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "l109ilp3vq", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "comment_author:" + }, { + "widgetName": "Text20", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "gqpwf0yng6", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "comment_author_url:" + }] + }] + }] + }, + "layoutOnLoadActions": [ + [{ + "id": "Comments_SelectQuery", + "name": "SelectQuery", + "pluginType": "DB", + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "Table1.searchText || \"\"", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "timeoutInMillisecond": 10000.0 + }] + ], + "validOnPageLoadActions": true, + "id": "Comments", + "deleted": false, + "policies": [], + "userPermissions": [] + }], + "userPermissions": [], + "policies": [], + "isHidden": false + }, + "publishedPage": { + "name": "Comments", + "slug": "comments", + "layouts": [{ + "viewMode": false, + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 1280.0, + "snapColumns": 64.0, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0.0, + "bottomRow": 890.0, + "containerStyle": "none", + "snapRows": 125.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 51.0, + "minHeight": 900.0, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "dynamicBindingPathList": [], + "leftColumn": 0.0, + "children": [{ + "backgroundColor": "#FFFFFF", + "widgetName": "Container1", + "rightColumn": 40.0, + "widgetId": "mvubsemxfo", + "containerStyle": "card", + "topRow": 0.0, + "bottomRow": 87.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "CONTAINER_WIDGET", + "version": 1.0, + "parentId": "0", + "isLoading": false, + "parentColumnSpace": 19.75, + "leftColumn": 0.0, + "children": [{ + "widgetName": "Canvas1", + "rightColumn": 632.0, + "detachFromLayout": true, + "widgetId": "59rw5mx0bq", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 890.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "mvubsemxfo", + "minHeight": 870.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Table1", + "columnOrder": ["comment_ID", "comment_post_ID", "comment_author", "comment_author_email", "comment_author_url", "comment_author_IP", "comment_date", "comment_date_gmt", "comment_content", "comment_karma", "comment_approved", "comment_agent", "comment_type", "comment_parent", "user_id", "customColumn1"], + "dynamicPropertyPathList": [{ + "key": "onPageChange" + }], + "isVisibleDownload": true, + "topRow": 10.0, + "bottomRow": 86.0, + "parentRowSpace": 10.0, + "onPageChange": "{{SelectQuery.run()}}", + "isSortable": true, + "type": "TABLE_WIDGET", + "defaultSelectedRow": "0", + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [{ + "key": "onPageChange" + }, { + "key": "primaryColumns.customColumn1.onClick" + }, { + "key": "onSearchTextChanged" + }], + "dynamicBindingPathList": [{ + "key": "primaryColumns.customColumn1.buttonLabel" + }, { + "key": "tableData" + }, { + "key": "primaryColumns.comment_ID.computedValue" + }, { + "key": "primaryColumns.comment_post_ID.computedValue" + }, { + "key": "primaryColumns.comment_author.computedValue" + }, { + "key": "primaryColumns.comment_author_email.computedValue" + }, { + "key": "primaryColumns.comment_author_url.computedValue" + }, { + "key": "primaryColumns.comment_author_IP.computedValue" + }, { + "key": "primaryColumns.comment_date.computedValue" + }, { + "key": "primaryColumns.comment_date_gmt.computedValue" + }, { + "key": "primaryColumns.comment_content.computedValue" + }, { + "key": "primaryColumns.comment_karma.computedValue" + }, { + "key": "primaryColumns.comment_approved.computedValue" + }, { + "key": "primaryColumns.comment_agent.computedValue" + }, { + "key": "primaryColumns.comment_type.computedValue" + }, { + "key": "primaryColumns.comment_parent.computedValue" + }, { + "key": "primaryColumns.user_id.computedValue" + }], + "leftColumn": 0.0, + "primaryColumns": { + "customColumn1": { + "isCellVisible": true, + "isDerived": true, + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.customColumn1))}}", + "onClick": "{{showModal('Delete_Modal')}}", + "textSize": "PARAGRAPH", + "buttonColor": "#DD4B34", + "index": 7.0, + "isVisible": true, + "label": "Delete", + "buttonLabel": "{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}", + "columnType": "button", + "horizontalAlignment": "LEFT", + "width": 150.0, + "enableFilter": true, + "enableSort": true, + "id": "customColumn1", + "isDisabled": false, + "buttonLabelColor": "#FFFFFF", + "verticalAlignment": "CENTER" + }, + "comment_ID": { + "index": 0.0, + "width": 150.0, + "id": "comment_ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_ID", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_ID))}}" + }, + "comment_post_ID": { + "index": 1.0, + "width": 150.0, + "id": "comment_post_ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_post_ID", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_post_ID))}}" + }, + "comment_author": { + "index": 2.0, + "width": 150.0, + "id": "comment_author", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_author", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_author))}}" + }, + "comment_author_email": { + "index": 3.0, + "width": 150.0, + "id": "comment_author_email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_author_email", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_email))}}" + }, + "comment_author_url": { + "index": 4.0, + "width": 150.0, + "id": "comment_author_url", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_author_url", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_url))}}" + }, + "comment_author_IP": { + "index": 5.0, + "width": 150.0, + "id": "comment_author_IP", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_author_IP", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_IP))}}" + }, + "comment_date": { + "index": 6.0, + "width": 150.0, + "id": "comment_date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_date", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_date))}}" + }, + "comment_date_gmt": { + "index": 7.0, + "width": 150.0, + "id": "comment_date_gmt", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_date_gmt", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_date_gmt))}}" + }, + "comment_content": { + "index": 8.0, + "width": 150.0, + "id": "comment_content", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_content", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_content))}}" + }, + "comment_karma": { + "index": 9.0, + "width": 150.0, + "id": "comment_karma", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_karma", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_karma))}}" + }, + "comment_approved": { + "index": 10.0, + "width": 150.0, + "id": "comment_approved", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_approved", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_approved))}}" + }, + "comment_agent": { + "index": 11.0, + "width": 150.0, + "id": "comment_agent", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_agent", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_agent))}}" + }, + "comment_type": { + "index": 12.0, + "width": 150.0, + "id": "comment_type", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_type", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_type))}}" + }, + "comment_parent": { + "index": 13.0, + "width": 150.0, + "id": "comment_parent", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_parent", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_parent))}}" + }, + "user_id": { + "index": 14.0, + "width": 150.0, + "id": "user_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "user_id", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_id))}}" + } + }, + "delimiter": ",", + "derivedColumns": { + "customColumn1": { + "isDerived": true, + "computedValue": "", + "onClick": "{{DeleteQuery.run()}}", + "textSize": "PARAGRAPH", + "buttonStyle": "#DD4B34", + "index": 7.0, + "isVisible": true, + "label": "customColumn1", + "buttonLabel": "{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}", + "columnType": "button", + "horizontalAlignment": "LEFT", + "width": 150.0, + "enableFilter": true, + "enableSort": true, + "id": "customColumn1", + "buttonLabelColor": "#FFFFFF", + "verticalAlignment": "CENTER" + } + }, + "rightColumn": 64.0, + "textSize": "PARAGRAPH", + "widgetId": "jabdu9f16g", + "isVisibleFilters": true, + "tableData": "", + "isVisible": "true", + "label": "Data", + "searchKey": "", + "version": 3.0, + "parentId": "59rw5mx0bq", + "serverSidePaginationEnabled": true, + "isLoading": false, + "isVisibleCompactMode": true, + "onSearchTextChanged": "{{SelectQuery.run()}}", + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "isVisiblePagination": true, + "verticalAlignment": "CENTER", + "columnSizeMap": { + "task": 245.0, + "deliveryAddress": 170.0, + "step": 62.0, + "id": 228.0, + "status": 75.0 + } + }, { + "isRequired": false, + "widgetName": "col_select", + "isFilterable": true, + "rightColumn": 22.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "asmgosgxjm", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "{{SelectQuery.data.length > 0}}", + "label": "", + "type": "DROP_DOWN_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "defaultOptionValue": "comment_ID", + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 7.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "options": "[\n{\n\t\"label\": \"comment_author\",\n\t\"value\": \"comment_author\"\n}, \n{\n\t\"label\": \"comment_author_url\",\n\t\"value\": \"comment_author_url\"\n}, \n{\n\t\"label\": \"comment_author_email\",\n\t\"value\": \"comment_author_email\"\n}, \n{\n\t\"label\": \"comment_post_ID\",\n\t\"value\": \"comment_post_ID\"\n}, \n{\n\t\"label\": \"comment_ID\",\n\t\"value\": \"comment_ID\"\n}]", + "onOptionChange": "{{SelectQuery.run()}}", + "isDisabled": false + }, { + "widgetName": "Text15", + "rightColumn": 7.0, + "textAlign": "LEFT", + "widgetId": "l8pgl90klz", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Order By :" + }, { + "isRequired": false, + "widgetName": "order_select", + "isFilterable": true, + "rightColumn": 33.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "10v8a19m25", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "{{SelectQuery.data.length > 0}}", + "label": "", + "type": "DROP_DOWN_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "defaultOptionValue": "ASC", + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 22.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "options": "[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]", + "onOptionChange": "{{SelectQuery.run()}}", + "isDisabled": false + }, { + "widgetName": "Text16", + "rightColumn": 64.0, + "textAlign": "LEFT", + "widgetId": "urzv99hdc8", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 11.78515625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "perf_comments Data" + }, { + "boxShadow": "NONE", + "widgetName": "refresh_btn", + "rightColumn": 64.0, + "onClick": "{{SelectQuery.run()}}", + "iconName": "refresh", + "buttonColor": "#03B365", + "widgetId": "2jj0197tff", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "ICON_BUTTON_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 12.0703125, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "borderRadius": "CIRCLE", + "leftColumn": 60.0, + "dynamicBindingPathList": [], + "buttonVariant": "TERTIARY", + "isDisabled": false + }, { + "boxShadow": "NONE", + "widgetName": "add_btn", + "rightColumn": 60.0, + "onClick": "{{showModal('Insert_Modal')}}", + "iconName": "add", + "buttonColor": "#03B365", + "widgetId": "kby34l9nbb", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "ICON_BUTTON_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 12.0703125, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "borderRadius": "CIRCLE", + "leftColumn": 56.0, + "dynamicBindingPathList": [], + "buttonVariant": "TERTIARY", + "isDisabled": false + }] + }] + }, { + "widgetName": "Delete_Modal", + "rightColumn": 45.0, + "detachFromLayout": true, + "widgetId": "i3whp03wf0", + "topRow": 13.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "canOutsideClickClose": true, + "type": "MODAL_WIDGET", + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "shouldScrollContents": false, + "isLoading": false, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas3", + "rightColumn": 453.1875, + "detachFromLayout": true, + "widgetId": "zi8fjakv8o", + "topRow": 0.0, + "bottomRow": 230.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": true, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "i3whp03wf0", + "shouldScrollContents": false, + "minHeight": 240.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Alert_text", + "rightColumn": 41.0, + "textAlign": "LEFT", + "widgetId": "reyoxo4oec", + "topRow": 1.0, + "bottomRow": 5.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "Delete Row" + }, { + "widgetName": "Button1", + "rightColumn": 46.0, + "onClick": "{{closeModal('Delete_Modal')}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03B365", + "widgetId": "lryg8kw537", + "topRow": 17.0, + "bottomRow": 21.0, + "isVisible": "true", + "type": "BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 34.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Cancel", + "isDisabled": false + }, { + "widgetName": "Delete_Button", + "rightColumn": 64.0, + "onClick": "{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [{ + "key": "onClick" + }], + "buttonColor": "#F22B2B", + "widgetId": "qq02lh7ust", + "topRow": 17.0, + "bottomRow": 21.0, + "isVisible": "true", + "type": "BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 48.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Confirm", + "isDisabled": false + }, { + "widgetName": "Text12", + "rightColumn": 63.0, + "textAlign": "LEFT", + "widgetId": "48uac29g6e", + "topRow": 8.0, + "bottomRow": 12.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "parentColumnSpace": 6.875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Are you sure you want to delete this item?" + }], + "isDisabled": false + }], + "width": 456.0, + "height": 240.0 + }, { + "widgetName": "Insert_Modal", + "rightColumn": 41.0, + "detachFromLayout": true, + "widgetId": "vmorzie6eq", + "topRow": 16.0, + "bottomRow": 40.0, + "parentRowSpace": 10.0, + "canOutsideClickClose": true, + "type": "MODAL_WIDGET", + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "shouldScrollContents": false, + "isLoading": false, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 17.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas4", + "rightColumn": 453.1875, + "detachFromLayout": true, + "widgetId": "9rhv3ioohq", + "topRow": 0.0, + "bottomRow": 610.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": true, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "vmorzie6eq", + "shouldScrollContents": false, + "minHeight": 600.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Form2", + "backgroundColor": "#F6F7F8", + "rightColumn": 64.0, + "widgetId": "1ruewbc4ef", + "topRow": 0.0, + "bottomRow": 58.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "FORM_WIDGET", + "parentId": "9rhv3ioohq", + "isLoading": false, + "shouldScrollContents": false, + "parentColumnSpace": 8.0, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas5", + "rightColumn": 224.0, + "detachFromLayout": true, + "widgetId": "tp9pui0e6y", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 570.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "1ruewbc4ef", + "minHeight": 580.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "resetFormOnClick": true, + "widgetName": "insert_button", + "rightColumn": 62.0, + "onClick": "{{InsertQuery.run(() => SelectQuery.run(() => closeModal('Insert_Modal')))}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [{ + "key": "onClick" + }], + "buttonColor": "#03B365", + "widgetId": "h8vxf3oh4s", + "topRow": 51.0, + "bottomRow": 55.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": true, + "leftColumn": 43.0, + "dynamicBindingPathList": [], + "googleRecaptchaKey": "", + "buttonVariant": "PRIMARY", + "text": "Submit" + }, { + "resetFormOnClick": true, + "widgetName": "reset_button", + "rightColumn": 42.0, + "onClick": "{{closeModal('Insert_Modal')}}", + "isDefaultClickDisabled": true, + "buttonColor": "#03B365", + "widgetId": "o23gs26wm5", + "topRow": 51.0, + "bottomRow": 55.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": false, + "leftColumn": 29.0, + "dynamicBindingPathList": [], + "buttonVariant": "SECONDARY", + "text": "Close" + }, { + "widgetName": "Text21", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "cfmxebyn06", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "comment_ID:" + }, { + "isRequired": false, + "widgetName": "insert_col_input1", + "rightColumn": 62.0, + "widgetId": "h1wbbv7alb", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "Autogenerated Field", + "isDisabled": true, + "validation": "true" + }, { + "widgetName": "Text22", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "jsffaxrqhw", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 2.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "comment_author_email:" + }, { + "isRequired": true, + "widgetName": "insert_col_input2", + "rightColumn": 62.0, + "widgetId": "6enalyprua", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "defaultText": "", + "placeholderText": "comment_author_email", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text23", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "btk60uozsm", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "comment_post_ID:" + }, { + "isRequired": true, + "widgetName": "insert_col_input3", + "rightColumn": 62.0, + "widgetId": "e490gfts69", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "comment_post_ID", + "defaultText": "", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text14", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "8fm60omwwv", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "comment_author:" + }, { + "isRequired": true, + "widgetName": "insert_col_input4", + "rightColumn": 62.0, + "widgetId": "r55cydp0ao", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "comment_author", + "defaultText": "", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text24", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "9t3vdjd5xj", + "topRow": 33.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "comment_author_url:" + }, { + "isRequired": true, + "widgetName": "insert_col_input5", + "rightColumn": 62.0, + "widgetId": "5rfqxgj0vm", + "topRow": 33.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "comment_author_url", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text13Copy", + "rightColumn": 35.0, + "textAlign": "LEFT", + "widgetId": "18x7vdv3gs", + "topRow": 0.0, + "bottomRow": 4.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "shouldScroll": false, + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "Insert Row" + }] + }] + }], + "isDisabled": false + }], + "width": 532.0, + "height": 600.0 + }, { + "widgetName": "Form1", + "backgroundColor": "white", + "rightColumn": 64.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "m7dvlazbn7", + "topRow": 0.0, + "bottomRow": 46.0, + "parentRowSpace": 10.0, + "isVisible": "{{!!Table1.selectedRow.comment_ID}}", + "type": "FORM_WIDGET", + "parentId": "0", + "isLoading": false, + "shouldScrollContents": true, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 40.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "children": [{ + "widgetName": "Canvas2", + "rightColumn": 528.71875, + "detachFromLayout": true, + "widgetId": "cicukwhp5j", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 450.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "m7dvlazbn7", + "minHeight": 460.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "resetFormOnClick": false, + "widgetName": "update_button", + "rightColumn": 63.0, + "onClick": "{{UpdateQuery.run(() => SelectQuery.run(), () => showAlert('Error while updating resource!','error'))}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03B365", + "widgetId": "4gnygu5jew", + "topRow": 39.0, + "bottomRow": 43.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "cicukwhp5j", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": true, + "leftColumn": 42.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Update" + }, { + "resetFormOnClick": true, + "widgetName": "reset_update_button", + "rightColumn": 42.0, + "onClick": "", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03b365", + "widgetId": "twwgpz5wfu", + "topRow": 39.0, + "bottomRow": 43.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "cicukwhp5j", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": false, + "leftColumn": 28.0, + "dynamicBindingPathList": [], + "buttonVariant": "SECONDARY", + "text": "Reset" + }, { + "isRequired": true, + "widgetName": "update_col_2", + "rightColumn": 63.0, + "widgetId": "in8e51pg3y", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.comment_author_email}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": true, + "widgetName": "update_col_3", + "rightColumn": 63.0, + "widgetId": "mlhvfasf31", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.comment_post_ID}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": true, + "widgetName": "update_col_4", + "rightColumn": 63.0, + "widgetId": "0lz9vhcnr0", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.comment_author}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": true, + "widgetName": "update_col_5", + "rightColumn": 63.0, + "widgetId": "m4esf7fww5", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.comment_author_url}}", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text9", + "rightColumn": 63.0, + "textAlign": "LEFT", + "widgetId": "4hnz8ktmz5", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [{ + "key": "text" + }], + "fontSize": "HEADING1", + "text": "Update Row: {{Table1.selectedRow.comment_ID}}" + }, { + "widgetName": "Text17", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "afzzc7q8af", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "comment_author_email:" + }, { + "widgetName": "Text18", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "xqcsd2e5dj", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "comment_post_ID:" + }, { + "widgetName": "Text19", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "l109ilp3vq", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "comment_author:" + }, { + "widgetName": "Text20", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "gqpwf0yng6", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "comment_author_url:" + }] + }] + }] + }, + "layoutOnLoadActions": [ + [{ + "id": "Comments_SelectQuery", + "name": "SelectQuery", + "pluginType": "DB", + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "Table1.searchText || \"\"", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "timeoutInMillisecond": 10000.0 + }] + ], + "validOnPageLoadActions": true, + "id": "Comments", + "deleted": false, + "policies": [], + "userPermissions": [] + }], + "userPermissions": [], + "policies": [], + "isHidden": false + }, + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61f3ad8f345f0c36171f8d4b" + }, { + "unpublishedPage": { + "name": "Post Meta", + "slug": "post-meta", + "layouts": [{ + "viewMode": false, + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 1280.0, + "snapColumns": 64.0, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0.0, + "bottomRow": 890.0, + "containerStyle": "none", + "snapRows": 125.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 51.0, + "minHeight": 900.0, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "dynamicBindingPathList": [], + "leftColumn": 0.0, + "children": [{ + "backgroundColor": "#FFFFFF", + "widgetName": "Container1", + "rightColumn": 40.0, + "widgetId": "mvubsemxfo", + "containerStyle": "card", + "topRow": 0.0, + "bottomRow": 87.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "CONTAINER_WIDGET", + "version": 1.0, + "parentId": "0", + "isLoading": false, + "parentColumnSpace": 19.75, + "leftColumn": 0.0, + "children": [{ + "widgetName": "Canvas1", + "rightColumn": 632.0, + "detachFromLayout": true, + "widgetId": "59rw5mx0bq", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 890.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "mvubsemxfo", + "minHeight": 870.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Table1", + "columnOrder": ["meta_id", "post_id", "meta_key", "meta_value", "customColumn1"], + "dynamicPropertyPathList": [{ + "key": "onPageChange" + }], + "isVisibleDownload": true, + "topRow": 10.0, + "bottomRow": 86.0, + "parentRowSpace": 10.0, + "onPageChange": "{{SelectQuery.run()}}", + "isSortable": true, + "type": "TABLE_WIDGET", + "defaultSelectedRow": "0", + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [{ + "key": "onPageChange" + }, { + "key": "primaryColumns.customColumn1.onClick" + }, { + "key": "onSearchTextChanged" + }], + "dynamicBindingPathList": [{ + "key": "primaryColumns.customColumn1.buttonLabel" + }, { + "key": "tableData" + }, { + "key": "primaryColumns.meta_id.computedValue" + }, { + "key": "primaryColumns.post_id.computedValue" + }, { + "key": "primaryColumns.meta_key.computedValue" + }, { + "key": "primaryColumns.meta_value.computedValue" + }], + "leftColumn": 0.0, + "primaryColumns": { + "customColumn1": { + "isCellVisible": true, + "isDerived": true, + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.customColumn1))}}", + "onClick": "{{showModal('Delete_Modal')}}", + "textSize": "PARAGRAPH", + "buttonColor": "#DD4B34", + "index": 7.0, + "isVisible": true, + "label": "Delete", + "buttonLabel": "{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}", + "columnType": "button", + "horizontalAlignment": "LEFT", + "width": 150.0, + "enableFilter": true, + "enableSort": true, + "id": "customColumn1", + "isDisabled": false, + "buttonLabelColor": "#FFFFFF", + "verticalAlignment": "CENTER" + }, + "meta_id": { + "index": 0.0, + "width": 150.0, + "id": "meta_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "meta_id", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.meta_id))}}" + }, + "post_id": { + "index": 1.0, + "width": 150.0, + "id": "post_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_id", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_id))}}" + }, + "meta_key": { + "index": 2.0, + "width": 150.0, + "id": "meta_key", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "meta_key", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.meta_key))}}" + }, + "meta_value": { + "index": 3.0, + "width": 150.0, + "id": "meta_value", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "meta_value", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.meta_value))}}" + } + }, + "delimiter": ",", + "derivedColumns": { + "customColumn1": { + "isDerived": true, + "computedValue": "", + "onClick": "{{DeleteQuery.run()}}", + "textSize": "PARAGRAPH", + "buttonStyle": "#DD4B34", + "index": 7.0, + "isVisible": true, + "label": "customColumn1", + "buttonLabel": "{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}", + "columnType": "button", + "horizontalAlignment": "LEFT", + "width": 150.0, + "enableFilter": true, + "enableSort": true, + "id": "customColumn1", + "buttonLabelColor": "#FFFFFF", + "verticalAlignment": "CENTER" + } + }, + "rightColumn": 64.0, + "textSize": "PARAGRAPH", + "widgetId": "jabdu9f16g", + "isVisibleFilters": true, + "tableData": "", + "isVisible": "true", + "label": "Data", + "searchKey": "", + "version": 3.0, + "parentId": "59rw5mx0bq", + "serverSidePaginationEnabled": true, + "isLoading": false, + "isVisibleCompactMode": true, + "onSearchTextChanged": "{{SelectQuery.run()}}", + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "isVisiblePagination": true, + "verticalAlignment": "CENTER", + "columnSizeMap": { + "task": 245.0, + "deliveryAddress": 170.0, + "step": 62.0, + "id": 228.0, + "status": 75.0 + } + }, { + "isRequired": false, + "widgetName": "col_select", + "isFilterable": true, + "rightColumn": 22.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "asmgosgxjm", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "{{SelectQuery.data.length > 0}}", + "label": "", + "type": "DROP_DOWN_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "defaultOptionValue": "meta_id", + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 7.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "options": "[\n{\n\t\"label\": \"meta_value\",\n\t\"value\": \"meta_value\"\n}, \n{\n\t\"label\": \"meta_key\",\n\t\"value\": \"meta_key\"\n}, \n{\n\t\"label\": \"post_id\",\n\t\"value\": \"post_id\"\n}, \n{\n\t\"label\": \"meta_id\",\n\t\"value\": \"meta_id\"\n}]", + "onOptionChange": "{{SelectQuery.run()}}", + "isDisabled": false + }, { + "widgetName": "Text15", + "rightColumn": 7.0, + "textAlign": "LEFT", + "widgetId": "l8pgl90klz", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Order By :" + }, { + "isRequired": false, + "widgetName": "order_select", + "isFilterable": true, + "rightColumn": 33.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "10v8a19m25", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "{{SelectQuery.data.length > 0}}", + "label": "", + "type": "DROP_DOWN_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "defaultOptionValue": "ASC", + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 22.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "options": "[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]", + "onOptionChange": "{{SelectQuery.run()}}", + "isDisabled": false + }, { + "widgetName": "Text16", + "rightColumn": 64.0, + "textAlign": "LEFT", + "widgetId": "urzv99hdc8", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 11.78515625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "perf_postmeta Data" + }, { + "boxShadow": "NONE", + "widgetName": "refresh_btn", + "rightColumn": 64.0, + "onClick": "{{SelectQuery.run()}}", + "iconName": "refresh", + "buttonColor": "#03B365", + "widgetId": "2jj0197tff", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "ICON_BUTTON_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 12.0703125, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "borderRadius": "CIRCLE", + "leftColumn": 60.0, + "dynamicBindingPathList": [], + "buttonVariant": "TERTIARY", + "isDisabled": false + }, { + "boxShadow": "NONE", + "widgetName": "add_btn", + "rightColumn": 60.0, + "onClick": "{{showModal('Insert_Modal')}}", + "iconName": "add", + "buttonColor": "#03B365", + "widgetId": "kby34l9nbb", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "ICON_BUTTON_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 12.0703125, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "borderRadius": "CIRCLE", + "leftColumn": 56.0, + "dynamicBindingPathList": [], + "buttonVariant": "TERTIARY", + "isDisabled": false + }] + }] + }, { + "widgetName": "Delete_Modal", + "rightColumn": 45.0, + "detachFromLayout": true, + "widgetId": "i3whp03wf0", + "topRow": 13.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "canOutsideClickClose": true, + "type": "MODAL_WIDGET", + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "shouldScrollContents": false, + "isLoading": false, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas3", + "rightColumn": 453.1875, + "detachFromLayout": true, + "widgetId": "zi8fjakv8o", + "topRow": 0.0, + "bottomRow": 230.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": true, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "i3whp03wf0", + "shouldScrollContents": false, + "minHeight": 240.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Alert_text", + "rightColumn": 41.0, + "textAlign": "LEFT", + "widgetId": "reyoxo4oec", + "topRow": 1.0, + "bottomRow": 5.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "Delete Row" + }, { + "widgetName": "Button1", + "rightColumn": 46.0, + "onClick": "{{closeModal('Delete_Modal')}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03B365", + "widgetId": "lryg8kw537", + "topRow": 17.0, + "bottomRow": 21.0, + "isVisible": "true", + "type": "BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 34.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Cancel", + "isDisabled": false + }, { + "widgetName": "Delete_Button", + "rightColumn": 64.0, + "onClick": "{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [{ + "key": "onClick" + }], + "buttonColor": "#F22B2B", + "widgetId": "qq02lh7ust", + "topRow": 17.0, + "bottomRow": 21.0, + "isVisible": "true", + "type": "BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 48.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Confirm", + "isDisabled": false + }, { + "widgetName": "Text12", + "rightColumn": 63.0, + "textAlign": "LEFT", + "widgetId": "48uac29g6e", + "topRow": 8.0, + "bottomRow": 12.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "parentColumnSpace": 6.875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Are you sure you want to delete this item?" + }], + "isDisabled": false + }], + "width": 456.0, + "height": 240.0 + }, { + "widgetName": "Insert_Modal", + "rightColumn": 41.0, + "detachFromLayout": true, + "widgetId": "vmorzie6eq", + "topRow": 16.0, + "bottomRow": 40.0, + "parentRowSpace": 10.0, + "canOutsideClickClose": true, + "type": "MODAL_WIDGET", + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "shouldScrollContents": false, + "isLoading": false, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 17.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas4", + "rightColumn": 453.1875, + "detachFromLayout": true, + "widgetId": "9rhv3ioohq", + "topRow": 0.0, + "bottomRow": 610.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": true, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "vmorzie6eq", + "shouldScrollContents": false, + "minHeight": 600.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Form2", + "backgroundColor": "#F6F7F8", + "rightColumn": 64.0, + "widgetId": "1ruewbc4ef", + "topRow": 0.0, + "bottomRow": 58.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "FORM_WIDGET", + "parentId": "9rhv3ioohq", + "isLoading": false, + "shouldScrollContents": false, + "parentColumnSpace": 8.0, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas5", + "rightColumn": 224.0, + "detachFromLayout": true, + "widgetId": "tp9pui0e6y", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 570.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "1ruewbc4ef", + "minHeight": 580.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "resetFormOnClick": true, + "widgetName": "insert_button", + "rightColumn": 62.0, + "onClick": "{{InsertQuery.run(() => SelectQuery.run(() => closeModal('Insert_Modal')))}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [{ + "key": "onClick" + }], + "buttonColor": "#03B365", + "widgetId": "h8vxf3oh4s", + "topRow": 51.0, + "bottomRow": 55.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": true, + "leftColumn": 43.0, + "dynamicBindingPathList": [], + "googleRecaptchaKey": "", + "buttonVariant": "PRIMARY", + "text": "Submit" + }, { + "resetFormOnClick": true, + "widgetName": "reset_button", + "rightColumn": 42.0, + "onClick": "{{closeModal('Insert_Modal')}}", + "isDefaultClickDisabled": true, + "buttonColor": "#03B365", + "widgetId": "o23gs26wm5", + "topRow": 51.0, + "bottomRow": 55.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": false, + "leftColumn": 29.0, + "dynamicBindingPathList": [], + "buttonVariant": "SECONDARY", + "text": "Close" + }, { + "widgetName": "Text21", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "cfmxebyn06", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "meta_id:" + }, { + "isRequired": false, + "widgetName": "insert_col_input1", + "rightColumn": 62.0, + "widgetId": "h1wbbv7alb", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "Autogenerated Field", + "isDisabled": true, + "validation": "true" + }, { + "widgetName": "Text22", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "jsffaxrqhw", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 2.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "meta_key:" + }, { + "isRequired": true, + "widgetName": "insert_col_input2", + "rightColumn": 62.0, + "widgetId": "6enalyprua", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "defaultText": "", + "placeholderText": "meta_key", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text23", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "btk60uozsm", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "post_id:" + }, { + "isRequired": true, + "widgetName": "insert_col_input3", + "rightColumn": 62.0, + "widgetId": "e490gfts69", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "post_id", + "defaultText": "", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text14", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "8fm60omwwv", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "meta_value:" + }, { + "isRequired": true, + "widgetName": "insert_col_input4", + "rightColumn": 62.0, + "widgetId": "r55cydp0ao", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "meta_value", + "defaultText": "", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text13Copy", + "rightColumn": 35.0, + "textAlign": "LEFT", + "widgetId": "18x7vdv3gs", + "topRow": 0.0, + "bottomRow": 4.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "shouldScroll": false, + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "Insert Row" + }] + }] + }], + "isDisabled": false + }], + "width": 532.0, + "height": 600.0 + }, { + "widgetName": "Form1", + "backgroundColor": "white", + "rightColumn": 64.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "m7dvlazbn7", + "topRow": 0.0, + "bottomRow": 46.0, + "parentRowSpace": 10.0, + "isVisible": "{{!!Table1.selectedRow.meta_id}}", + "type": "FORM_WIDGET", + "parentId": "0", + "isLoading": false, + "shouldScrollContents": true, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 40.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "children": [{ + "widgetName": "Canvas2", + "rightColumn": 528.71875, + "detachFromLayout": true, + "widgetId": "cicukwhp5j", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 450.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "m7dvlazbn7", + "minHeight": 460.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "resetFormOnClick": false, + "widgetName": "update_button", + "rightColumn": 63.0, + "onClick": "{{UpdateQuery.run(() => SelectQuery.run(), () => showAlert('Error while updating resource!','error'))}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03B365", + "widgetId": "4gnygu5jew", + "topRow": 39.0, + "bottomRow": 43.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "cicukwhp5j", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": true, + "leftColumn": 42.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Update" + }, { + "resetFormOnClick": true, + "widgetName": "reset_update_button", + "rightColumn": 42.0, + "onClick": "", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03b365", + "widgetId": "twwgpz5wfu", + "topRow": 39.0, + "bottomRow": 43.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "cicukwhp5j", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": false, + "leftColumn": 28.0, + "dynamicBindingPathList": [], + "buttonVariant": "SECONDARY", + "text": "Reset" + }, { + "isRequired": true, + "widgetName": "update_col_2", + "rightColumn": 63.0, + "widgetId": "in8e51pg3y", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.meta_key}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": true, + "widgetName": "update_col_3", + "rightColumn": 63.0, + "widgetId": "mlhvfasf31", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.post_id}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": true, + "widgetName": "update_col_4", + "rightColumn": 63.0, + "widgetId": "0lz9vhcnr0", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.meta_value}}", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text9", + "rightColumn": 63.0, + "textAlign": "LEFT", + "widgetId": "4hnz8ktmz5", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [{ + "key": "text" + }], + "fontSize": "HEADING1", + "text": "Update Row: {{Table1.selectedRow.meta_id}}" + }, { + "widgetName": "Text17", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "afzzc7q8af", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "meta_key:" + }, { + "widgetName": "Text18", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "xqcsd2e5dj", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "post_id:" + }, { + "widgetName": "Text19", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "l109ilp3vq", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "meta_value:" + }] + }] + }] + }, + "layoutOnLoadActions": [ + [{ + "id": "Post Meta_SelectQuery", + "name": "SelectQuery", + "pluginType": "DB", + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "Table1.searchText || \"\"", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "timeoutInMillisecond": 10000.0 + }] + ], + "validOnPageLoadActions": true, + "id": "Post Meta", + "deleted": false, + "policies": [], + "userPermissions": [] + }], + "userPermissions": [], + "policies": [], + "isHidden": false + }, + "publishedPage": { + "name": "Post Meta", + "slug": "post-meta", + "layouts": [{ + "viewMode": false, + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 1280.0, + "snapColumns": 64.0, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0.0, + "bottomRow": 890.0, + "containerStyle": "none", + "snapRows": 125.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 51.0, + "minHeight": 900.0, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "dynamicBindingPathList": [], + "leftColumn": 0.0, + "children": [{ + "backgroundColor": "#FFFFFF", + "widgetName": "Container1", + "rightColumn": 40.0, + "widgetId": "mvubsemxfo", + "containerStyle": "card", + "topRow": 0.0, + "bottomRow": 87.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "CONTAINER_WIDGET", + "version": 1.0, + "parentId": "0", + "isLoading": false, + "parentColumnSpace": 19.75, + "leftColumn": 0.0, + "children": [{ + "widgetName": "Canvas1", + "rightColumn": 632.0, + "detachFromLayout": true, + "widgetId": "59rw5mx0bq", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 890.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "mvubsemxfo", + "minHeight": 870.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Table1", + "columnOrder": ["meta_id", "post_id", "meta_key", "meta_value", "customColumn1"], + "dynamicPropertyPathList": [{ + "key": "onPageChange" + }], + "isVisibleDownload": true, + "topRow": 10.0, + "bottomRow": 86.0, + "parentRowSpace": 10.0, + "onPageChange": "{{SelectQuery.run()}}", + "isSortable": true, + "type": "TABLE_WIDGET", + "defaultSelectedRow": "0", + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [{ + "key": "onPageChange" + }, { + "key": "primaryColumns.customColumn1.onClick" + }, { + "key": "onSearchTextChanged" + }], + "dynamicBindingPathList": [{ + "key": "primaryColumns.customColumn1.buttonLabel" + }, { + "key": "tableData" + }, { + "key": "primaryColumns.meta_id.computedValue" + }, { + "key": "primaryColumns.post_id.computedValue" + }, { + "key": "primaryColumns.meta_key.computedValue" + }, { + "key": "primaryColumns.meta_value.computedValue" + }], + "leftColumn": 0.0, + "primaryColumns": { + "customColumn1": { + "isCellVisible": true, + "isDerived": true, + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.customColumn1))}}", + "onClick": "{{showModal('Delete_Modal')}}", + "textSize": "PARAGRAPH", + "buttonColor": "#DD4B34", + "index": 7.0, + "isVisible": true, + "label": "Delete", + "buttonLabel": "{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}", + "columnType": "button", + "horizontalAlignment": "LEFT", + "width": 150.0, + "enableFilter": true, + "enableSort": true, + "id": "customColumn1", + "isDisabled": false, + "buttonLabelColor": "#FFFFFF", + "verticalAlignment": "CENTER" + }, + "meta_id": { + "index": 0.0, + "width": 150.0, + "id": "meta_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "meta_id", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.meta_id))}}" + }, + "post_id": { + "index": 1.0, + "width": 150.0, + "id": "post_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_id", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_id))}}" + }, + "meta_key": { + "index": 2.0, + "width": 150.0, + "id": "meta_key", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "meta_key", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.meta_key))}}" + }, + "meta_value": { + "index": 3.0, + "width": 150.0, + "id": "meta_value", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "meta_value", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.meta_value))}}" + } + }, + "delimiter": ",", + "derivedColumns": { + "customColumn1": { + "isDerived": true, + "computedValue": "", + "onClick": "{{DeleteQuery.run()}}", + "textSize": "PARAGRAPH", + "buttonStyle": "#DD4B34", + "index": 7.0, + "isVisible": true, + "label": "customColumn1", + "buttonLabel": "{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}", + "columnType": "button", + "horizontalAlignment": "LEFT", + "width": 150.0, + "enableFilter": true, + "enableSort": true, + "id": "customColumn1", + "buttonLabelColor": "#FFFFFF", + "verticalAlignment": "CENTER" + } + }, + "rightColumn": 64.0, + "textSize": "PARAGRAPH", + "widgetId": "jabdu9f16g", + "isVisibleFilters": true, + "tableData": "", + "isVisible": "true", + "label": "Data", + "searchKey": "", + "version": 3.0, + "parentId": "59rw5mx0bq", + "serverSidePaginationEnabled": true, + "isLoading": false, + "isVisibleCompactMode": true, + "onSearchTextChanged": "{{SelectQuery.run()}}", + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "isVisiblePagination": true, + "verticalAlignment": "CENTER", + "columnSizeMap": { + "task": 245.0, + "deliveryAddress": 170.0, + "step": 62.0, + "id": 228.0, + "status": 75.0 + } + }, { + "isRequired": false, + "widgetName": "col_select", + "isFilterable": true, + "rightColumn": 22.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "asmgosgxjm", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "{{SelectQuery.data.length > 0}}", + "label": "", + "type": "DROP_DOWN_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "defaultOptionValue": "meta_id", + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 7.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "options": "[\n{\n\t\"label\": \"meta_value\",\n\t\"value\": \"meta_value\"\n}, \n{\n\t\"label\": \"meta_key\",\n\t\"value\": \"meta_key\"\n}, \n{\n\t\"label\": \"post_id\",\n\t\"value\": \"post_id\"\n}, \n{\n\t\"label\": \"meta_id\",\n\t\"value\": \"meta_id\"\n}]", + "onOptionChange": "{{SelectQuery.run()}}", + "isDisabled": false + }, { + "widgetName": "Text15", + "rightColumn": 7.0, + "textAlign": "LEFT", + "widgetId": "l8pgl90klz", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Order By :" + }, { + "isRequired": false, + "widgetName": "order_select", + "isFilterable": true, + "rightColumn": 33.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "10v8a19m25", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "{{SelectQuery.data.length > 0}}", + "label": "", + "type": "DROP_DOWN_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "defaultOptionValue": "ASC", + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 22.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "options": "[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]", + "onOptionChange": "{{SelectQuery.run()}}", + "isDisabled": false + }, { + "widgetName": "Text16", + "rightColumn": 64.0, + "textAlign": "LEFT", + "widgetId": "urzv99hdc8", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 11.78515625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "perf_postmeta Data" + }, { + "boxShadow": "NONE", + "widgetName": "refresh_btn", + "rightColumn": 64.0, + "onClick": "{{SelectQuery.run()}}", + "iconName": "refresh", + "buttonColor": "#03B365", + "widgetId": "2jj0197tff", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "ICON_BUTTON_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 12.0703125, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "borderRadius": "CIRCLE", + "leftColumn": 60.0, + "dynamicBindingPathList": [], + "buttonVariant": "TERTIARY", + "isDisabled": false + }, { + "boxShadow": "NONE", + "widgetName": "add_btn", + "rightColumn": 60.0, + "onClick": "{{showModal('Insert_Modal')}}", + "iconName": "add", + "buttonColor": "#03B365", + "widgetId": "kby34l9nbb", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "ICON_BUTTON_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 12.0703125, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "borderRadius": "CIRCLE", + "leftColumn": 56.0, + "dynamicBindingPathList": [], + "buttonVariant": "TERTIARY", + "isDisabled": false + }] + }] + }, { + "widgetName": "Delete_Modal", + "rightColumn": 45.0, + "detachFromLayout": true, + "widgetId": "i3whp03wf0", + "topRow": 13.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "canOutsideClickClose": true, + "type": "MODAL_WIDGET", + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "shouldScrollContents": false, + "isLoading": false, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas3", + "rightColumn": 453.1875, + "detachFromLayout": true, + "widgetId": "zi8fjakv8o", + "topRow": 0.0, + "bottomRow": 230.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": true, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "i3whp03wf0", + "shouldScrollContents": false, + "minHeight": 240.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Alert_text", + "rightColumn": 41.0, + "textAlign": "LEFT", + "widgetId": "reyoxo4oec", + "topRow": 1.0, + "bottomRow": 5.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "Delete Row" + }, { + "widgetName": "Button1", + "rightColumn": 46.0, + "onClick": "{{closeModal('Delete_Modal')}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03B365", + "widgetId": "lryg8kw537", + "topRow": 17.0, + "bottomRow": 21.0, + "isVisible": "true", + "type": "BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 34.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Cancel", + "isDisabled": false + }, { + "widgetName": "Delete_Button", + "rightColumn": 64.0, + "onClick": "{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [{ + "key": "onClick" + }], + "buttonColor": "#F22B2B", + "widgetId": "qq02lh7ust", + "topRow": 17.0, + "bottomRow": 21.0, + "isVisible": "true", + "type": "BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 48.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Confirm", + "isDisabled": false + }, { + "widgetName": "Text12", + "rightColumn": 63.0, + "textAlign": "LEFT", + "widgetId": "48uac29g6e", + "topRow": 8.0, + "bottomRow": 12.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "parentColumnSpace": 6.875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Are you sure you want to delete this item?" + }], + "isDisabled": false + }], + "width": 456.0, + "height": 240.0 + }, { + "widgetName": "Insert_Modal", + "rightColumn": 41.0, + "detachFromLayout": true, + "widgetId": "vmorzie6eq", + "topRow": 16.0, + "bottomRow": 40.0, + "parentRowSpace": 10.0, + "canOutsideClickClose": true, + "type": "MODAL_WIDGET", + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "shouldScrollContents": false, + "isLoading": false, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 17.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas4", + "rightColumn": 453.1875, + "detachFromLayout": true, + "widgetId": "9rhv3ioohq", + "topRow": 0.0, + "bottomRow": 610.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": true, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "vmorzie6eq", + "shouldScrollContents": false, + "minHeight": 600.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Form2", + "backgroundColor": "#F6F7F8", + "rightColumn": 64.0, + "widgetId": "1ruewbc4ef", + "topRow": 0.0, + "bottomRow": 58.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "FORM_WIDGET", + "parentId": "9rhv3ioohq", + "isLoading": false, + "shouldScrollContents": false, + "parentColumnSpace": 8.0, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas5", + "rightColumn": 224.0, + "detachFromLayout": true, + "widgetId": "tp9pui0e6y", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 570.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "1ruewbc4ef", + "minHeight": 580.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "resetFormOnClick": true, + "widgetName": "insert_button", + "rightColumn": 62.0, + "onClick": "{{InsertQuery.run(() => SelectQuery.run(() => closeModal('Insert_Modal')))}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [{ + "key": "onClick" + }], + "buttonColor": "#03B365", + "widgetId": "h8vxf3oh4s", + "topRow": 51.0, + "bottomRow": 55.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": true, + "leftColumn": 43.0, + "dynamicBindingPathList": [], + "googleRecaptchaKey": "", + "buttonVariant": "PRIMARY", + "text": "Submit" + }, { + "resetFormOnClick": true, + "widgetName": "reset_button", + "rightColumn": 42.0, + "onClick": "{{closeModal('Insert_Modal')}}", + "isDefaultClickDisabled": true, + "buttonColor": "#03B365", + "widgetId": "o23gs26wm5", + "topRow": 51.0, + "bottomRow": 55.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": false, + "leftColumn": 29.0, + "dynamicBindingPathList": [], + "buttonVariant": "SECONDARY", + "text": "Close" + }, { + "widgetName": "Text21", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "cfmxebyn06", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "meta_id:" + }, { + "isRequired": false, + "widgetName": "insert_col_input1", + "rightColumn": 62.0, + "widgetId": "h1wbbv7alb", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "Autogenerated Field", + "isDisabled": true, + "validation": "true" + }, { + "widgetName": "Text22", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "jsffaxrqhw", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 2.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "meta_key:" + }, { + "isRequired": true, + "widgetName": "insert_col_input2", + "rightColumn": 62.0, + "widgetId": "6enalyprua", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "defaultText": "", + "placeholderText": "meta_key", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text23", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "btk60uozsm", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "post_id:" + }, { + "isRequired": true, + "widgetName": "insert_col_input3", + "rightColumn": 62.0, + "widgetId": "e490gfts69", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "post_id", + "defaultText": "", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text14", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "8fm60omwwv", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "meta_value:" + }, { + "isRequired": true, + "widgetName": "insert_col_input4", + "rightColumn": 62.0, + "widgetId": "r55cydp0ao", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "meta_value", + "defaultText": "", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text13Copy", + "rightColumn": 35.0, + "textAlign": "LEFT", + "widgetId": "18x7vdv3gs", + "topRow": 0.0, + "bottomRow": 4.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "shouldScroll": false, + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "Insert Row" + }] + }] + }], + "isDisabled": false + }], + "width": 532.0, + "height": 600.0 + }, { + "widgetName": "Form1", + "backgroundColor": "white", + "rightColumn": 64.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "m7dvlazbn7", + "topRow": 0.0, + "bottomRow": 46.0, + "parentRowSpace": 10.0, + "isVisible": "{{!!Table1.selectedRow.meta_id}}", + "type": "FORM_WIDGET", + "parentId": "0", + "isLoading": false, + "shouldScrollContents": true, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 40.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "children": [{ + "widgetName": "Canvas2", + "rightColumn": 528.71875, + "detachFromLayout": true, + "widgetId": "cicukwhp5j", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 450.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "m7dvlazbn7", + "minHeight": 460.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "resetFormOnClick": false, + "widgetName": "update_button", + "rightColumn": 63.0, + "onClick": "{{UpdateQuery.run(() => SelectQuery.run(), () => showAlert('Error while updating resource!','error'))}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03B365", + "widgetId": "4gnygu5jew", + "topRow": 39.0, + "bottomRow": 43.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "cicukwhp5j", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": true, + "leftColumn": 42.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Update" + }, { + "resetFormOnClick": true, + "widgetName": "reset_update_button", + "rightColumn": 42.0, + "onClick": "", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03b365", + "widgetId": "twwgpz5wfu", + "topRow": 39.0, + "bottomRow": 43.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "cicukwhp5j", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": false, + "leftColumn": 28.0, + "dynamicBindingPathList": [], + "buttonVariant": "SECONDARY", + "text": "Reset" + }, { + "isRequired": true, + "widgetName": "update_col_2", + "rightColumn": 63.0, + "widgetId": "in8e51pg3y", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.meta_key}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": true, + "widgetName": "update_col_3", + "rightColumn": 63.0, + "widgetId": "mlhvfasf31", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.post_id}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": true, + "widgetName": "update_col_4", + "rightColumn": 63.0, + "widgetId": "0lz9vhcnr0", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.meta_value}}", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text9", + "rightColumn": 63.0, + "textAlign": "LEFT", + "widgetId": "4hnz8ktmz5", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [{ + "key": "text" + }], + "fontSize": "HEADING1", + "text": "Update Row: {{Table1.selectedRow.meta_id}}" + }, { + "widgetName": "Text17", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "afzzc7q8af", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "meta_key:" + }, { + "widgetName": "Text18", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "xqcsd2e5dj", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "post_id:" + }, { + "widgetName": "Text19", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "l109ilp3vq", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "meta_value:" + }] + }] + }] + }, + "layoutOnLoadActions": [ + [{ + "id": "Post Meta_SelectQuery", + "name": "SelectQuery", + "pluginType": "DB", + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "Table1.searchText || \"\"", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "timeoutInMillisecond": 10000.0 + }] + ], + "validOnPageLoadActions": true, + "id": "Post Meta", + "deleted": false, + "policies": [], + "userPermissions": [] + }], + "userPermissions": [], + "policies": [], + "isHidden": false + }, + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61f3ae21345f0c36171f8d64" + }, { + "unpublishedPage": { + "name": "Blog", + "slug": "blog", + "layouts": [{ + "viewMode": false, + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 1432.0, + "snapColumns": 64.0, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0.0, + "bottomRow": 1820.0, + "containerStyle": "none", + "snapRows": 125.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 59.0, + "minHeight": 1010.0, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "dynamicBindingPathList": [], + "leftColumn": 0.0, + "children": [{ + "labelTextSize": "0.875rem", + "boxShadow": "none", + "backgroundColor": "#FFFFFF", + "widgetName": "Container1", + "rightColumn": 32.0, + "widgetId": "mvubsemxfo", + "containerStyle": "card", + "topRow": 8.0, + "bottomRow": 102.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "CONTAINER_WIDGET", + "version": 1.0, + "parentId": "0", + "isLoading": false, + "parentColumnSpace": 19.75, + "leftColumn": 0.0, + "borderRadius": "0px", + "dynamicBindingPathList": [], + "children": [{ + "labelTextSize": "0.875rem", + "boxShadow": "none", + "widgetName": "Canvas1", + "rightColumn": 632.0, + "detachFromLayout": true, + "widgetId": "59rw5mx0bq", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 1110.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "mvubsemxfo", + "minHeight": 870.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "borderRadius": "0px", + "children": [{ + "boxShadow": "none", + "widgetName": "Table1", + "columnOrder": ["id", "post_title", "post_author", "post_date", "post_date_gmt", "post_content", "post_excerpt", "post_status", "comment_status", "ping_status", "post_password", "post_name", "to_ping", "pinged", "post_modified", "post_modified_gmt", "post_content_filtered", "post_parent", "guid", "menu_order", "post_type", "post_mime_type", "comment_count", "__hevo__database_name", "__hevo__ingested_at", "object_id", "term_taxonomy_id", "term_order", "customColumn1"], + "dynamicPropertyPathList": [{ + "key": "onPageChange" + }], + "isVisibleDownload": true, + "topRow": 10.0, + "bottomRow": 109.0, + "parentRowSpace": 10.0, + "onPageChange": "{{SelectQuery.run()}}", + "isSortable": true, + "type": "TABLE_WIDGET", + "defaultSelectedRow": "0", + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [{ + "key": "onPageChange" + }, { + "key": "primaryColumns.customColumn1.onClick" + }, { + "key": "onSearchTextChanged" + }, { + "key": "onRowSelected" + }], + "dynamicBindingPathList": [{ + "key": "primaryColumns.__hevo__ingested_at.computedValue" + }, { + "key": "primaryColumns.__hevo__database_name.computedValue" + }, { + "key": "primaryColumns.id.computedValue" + }, { + "key": "primaryColumns.term_order.computedValue" + }, { + "key": "primaryColumns.term_taxonomy_id.computedValue" + }, { + "key": "primaryColumns.object_id.computedValue" + }, { + "key": "primaryColumns.comment_count.computedValue" + }, { + "key": "primaryColumns.post_mime_type.computedValue" + }, { + "key": "primaryColumns.post_type.computedValue" + }, { + "key": "primaryColumns.menu_order.computedValue" + }, { + "key": "primaryColumns.guid.computedValue" + }, { + "key": "primaryColumns.post_parent.computedValue" + }, { + "key": "primaryColumns.post_content_filtered.computedValue" + }, { + "key": "primaryColumns.post_modified_gmt.computedValue" + }, { + "key": "primaryColumns.post_modified.computedValue" + }, { + "key": "primaryColumns.pinged.computedValue" + }, { + "key": "primaryColumns.to_ping.computedValue" + }, { + "key": "primaryColumns.post_name.computedValue" + }, { + "key": "primaryColumns.post_password.computedValue" + }, { + "key": "primaryColumns.ping_status.computedValue" + }, { + "key": "primaryColumns.comment_status.computedValue" + }, { + "key": "primaryColumns.post_status.computedValue" + }, { + "key": "primaryColumns.post_excerpt.computedValue" + }, { + "key": "primaryColumns.post_title.computedValue" + }, { + "key": "primaryColumns.post_content.computedValue" + }, { + "key": "primaryColumns.post_date_gmt.computedValue" + }, { + "key": "primaryColumns.post_date.computedValue" + }, { + "key": "primaryColumns.post_author.computedValue" + }, { + "key": "primaryColumns.customColumn1.buttonLabel" + }, { + "key": "accentColor" + }, { + "key": "tableData" + }], + "leftColumn": 0.0, + "primaryColumns": { + "customColumn1": { + "isCellVisible": true, + "isDerived": true, + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.customColumn1))}}", + "onClick": "{{showModal('Delete_Modal')}}", + "textSize": "0.875rem", + "buttonColor": "#DD4B34", + "index": 7.0, + "isVisible": true, + "label": "Delete", + "buttonLabel": "{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}", + "columnType": "button", + "horizontalAlignment": "LEFT", + "width": 150.0, + "enableFilter": true, + "enableSort": true, + "id": "customColumn1", + "isDisabled": false, + "buttonLabelColor": "#FFFFFF", + "verticalAlignment": "CENTER", + "borderRadius": "0px", + "boxShadow": "none" + }, + "post_author": { + "index": 1.0, + "width": 150.0, + "id": "post_author", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_author", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_author))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "post_date": { + "index": 2.0, + "width": 150.0, + "id": "post_date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_date", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_date))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "post_date_gmt": { + "index": 3.0, + "width": 150.0, + "id": "post_date_gmt", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_date_gmt", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_date_gmt))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "post_content": { + "index": 4.0, + "width": 150.0, + "id": "post_content", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_content", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_content))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "post_title": { + "index": 5.0, + "width": 150.0, + "id": "post_title", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_title", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_title))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "post_excerpt": { + "index": 6.0, + "width": 150.0, + "id": "post_excerpt", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_excerpt", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_excerpt))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "post_status": { + "index": 7.0, + "width": 150.0, + "id": "post_status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_status", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_status))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "comment_status": { + "index": 8.0, + "width": 150.0, + "id": "comment_status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_status", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_status))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "ping_status": { + "index": 9.0, + "width": 150.0, + "id": "ping_status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "ping_status", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.ping_status))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "post_password": { + "index": 10.0, + "width": 150.0, + "id": "post_password", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_password", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_password))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "post_name": { + "index": 11.0, + "width": 150.0, + "id": "post_name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_name", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_name))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "to_ping": { + "index": 12.0, + "width": 150.0, + "id": "to_ping", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "to_ping", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.to_ping))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "pinged": { + "index": 13.0, + "width": 150.0, + "id": "pinged", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "pinged", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.pinged))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "post_modified": { + "index": 14.0, + "width": 150.0, + "id": "post_modified", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_modified", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_modified))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "post_modified_gmt": { + "index": 15.0, + "width": 150.0, + "id": "post_modified_gmt", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_modified_gmt", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_modified_gmt))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "post_content_filtered": { + "index": 16.0, + "width": 150.0, + "id": "post_content_filtered", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_content_filtered", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_content_filtered))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "post_parent": { + "index": 17.0, + "width": 150.0, + "id": "post_parent", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_parent", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_parent))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "guid": { + "index": 18.0, + "width": 150.0, + "id": "guid", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "guid", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.guid))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "menu_order": { + "index": 19.0, + "width": 150.0, + "id": "menu_order", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "menu_order", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.menu_order))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "post_type": { + "index": 20.0, + "width": 150.0, + "id": "post_type", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_type", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_type))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "post_mime_type": { + "index": 21.0, + "width": 150.0, + "id": "post_mime_type", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_mime_type", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_mime_type))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "comment_count": { + "index": 22.0, + "width": 150.0, + "id": "comment_count", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_count", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_count))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "object_id": { + "index": 23.0, + "width": 150.0, + "id": "object_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "object_id", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.object_id))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "term_taxonomy_id": { + "index": 24.0, + "width": 150.0, + "id": "term_taxonomy_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "term_taxonomy_id", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.term_taxonomy_id))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "term_order": { + "index": 25.0, + "width": 150.0, + "id": "term_order", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "term_order", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.term_order))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "id": { + "index": 0.0, + "width": 150.0, + "id": "id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "id", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.id))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "__hevo__database_name": { + "index": 23.0, + "width": 150.0, + "id": "__hevo__database_name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "__hevo__database_name", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.__hevo__database_name))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "__hevo__ingested_at": { + "index": 24.0, + "width": 150.0, + "id": "__hevo__ingested_at", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "__hevo__ingested_at", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.__hevo__ingested_at))}}", + "borderRadius": "0px", + "boxShadow": "none" + } + }, + "delimiter": ",", + "onRowSelected": "{{GetComments.run()}}", + "derivedColumns": { + "customColumn1": { + "isDerived": true, + "computedValue": "", + "onClick": "{{DeleteQuery.run()}}", + "textSize": "0.875rem", + "buttonStyle": "#DD4B34", + "index": 7.0, + "isVisible": true, + "label": "customColumn1", + "buttonLabel": "{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}", + "columnType": "button", + "horizontalAlignment": "LEFT", + "width": 150.0, + "enableFilter": true, + "enableSort": true, + "id": "customColumn1", + "buttonLabelColor": "#FFFFFF", + "verticalAlignment": "CENTER", + "borderRadius": "0px", + "boxShadow": "none" + } + }, + "labelTextSize": "0.875rem", + "rightColumn": 64.0, + "textSize": "0.875rem", + "widgetId": "jabdu9f16g", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": true, + "tableData": "", + "isVisible": "true", + "label": "Data", + "searchKey": "", + "version": 3.0, + "parentId": "59rw5mx0bq", + "serverSidePaginationEnabled": true, + "isLoading": false, + "isVisibleCompactMode": true, + "onSearchTextChanged": "{{SelectQuery.run()}}", + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + } + }, + "borderRadius": "0px", + "isVisiblePagination": true, + "verticalAlignment": "CENTER", + "columnSizeMap": { + "task": 245.0, + "deliveryAddress": 170.0, + "step": 62.0, + "id": 95.0, + "status": 75.0 + } + }, { + "boxShadow": "none", + "widgetName": "col_select", + "isFilterable": true, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "type": "DROP_DOWN_WIDGET", + "defaultOptionValue": "ID", + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 7.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "options": "[\n{\n\t\"label\": \"post_date\",\n\t\"value\": \"post_date\"\n}, \n{\n\t\"label\": \"post_date_gmt\",\n\t\"value\": \"post_date_gmt\"\n}, \n{\n\t\"label\": \"guid\",\n\t\"value\": \"guid\"\n}, \n{\n\t\"label\": \"post_author\",\n\t\"value\": \"post_author\"\n}, \n{\n\t\"label\": \"ID\",\n\t\"value\": \"ID\"\n}]", + "isDisabled": false, + "labelTextSize": "0.875rem", + "isRequired": false, + "rightColumn": 22.0, + "widgetId": "asmgosgxjm", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisible": "{{SelectQuery.data.length > 0}}", + "label": "", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "borderRadius": "0px", + "onOptionChange": "{{SelectQuery.run()}}" + }, { + "boxShadow": "none", + "widgetName": "Text15", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "System Default", + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "text": "Order By :", + "labelTextSize": "0.875rem", + "rightColumn": 7.0, + "textAlign": "LEFT", + "widgetId": "l8pgl90klz", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "0.875rem" + }, { + "boxShadow": "none", + "widgetName": "order_select", + "isFilterable": true, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "type": "DROP_DOWN_WIDGET", + "defaultOptionValue": "ASC", + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 22.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "options": "[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]", + "isDisabled": false, + "labelTextSize": "0.875rem", + "isRequired": false, + "rightColumn": 33.0, + "widgetId": "10v8a19m25", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisible": "{{SelectQuery.data.length > 0}}", + "label": "", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "borderRadius": "0px", + "onOptionChange": "{{SelectQuery.run()}}" + }, { + "boxShadow": "none", + "widgetName": "Text16", + "dynamicPropertyPathList": [{ + "key": "fontSize" + }], + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "parentColumnSpace": 11.78515625, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "System Default", + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "text": "Blog Posts", + "labelTextSize": "0.875rem", + "rightColumn": 64.0, + "textAlign": "LEFT", + "widgetId": "urzv99hdc8", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "1.5rem" + }, { + "boxShadow": "none", + "widgetName": "refresh_btn", + "onClick": "{{SelectQuery.run()}}", + "buttonColor": "#03B365", + "dynamicPropertyPathList": [{ + "key": "borderRadius" + }], + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "type": "ICON_BUTTON_WIDGET", + "parentColumnSpace": 12.0703125, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 60.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "labelTextSize": "0.875rem", + "rightColumn": 64.0, + "iconName": "refresh", + "widgetId": "2jj0197tff", + "isVisible": "true", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "borderRadius": "9999px", + "buttonVariant": "TERTIARY" + }, { + "boxShadow": "none", + "widgetName": "add_btn", + "onClick": "{{showModal('Insert_Modal')}}", + "buttonColor": "#03B365", + "dynamicPropertyPathList": [{ + "key": "borderRadius" + }], + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "type": "ICON_BUTTON_WIDGET", + "parentColumnSpace": 12.0703125, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 56.0, + "dynamicBindingPathList": [], + "isDisabled": false, + "labelTextSize": "0.875rem", + "rightColumn": 60.0, + "iconName": "add", + "widgetId": "kby34l9nbb", + "isVisible": "true", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "borderRadius": "9999px", + "buttonVariant": "TERTIARY" + }] + }] + }, { + "boxShadow": "none", + "widgetName": "Delete_Modal", + "topRow": 13.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "type": "MODAL_WIDGET", + "shouldScrollContents": false, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "children": [{ + "boxShadow": "none", + "widgetName": "Canvas3", + "topRow": 0.0, + "bottomRow": 230.0, + "parentRowSpace": 1.0, + "canExtend": true, + "type": "CANVAS_WIDGET", + "shouldScrollContents": false, + "minHeight": 240.0, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "boxShadow": "none", + "widgetName": "Alert_text", + "dynamicPropertyPathList": [{ + "key": "fontSize" + }], + "topRow": 1.0, + "bottomRow": 5.0, + "type": "TEXT_WIDGET", + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "System Default", + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "text": "Delete Row", + "labelTextSize": "0.875rem", + "rightColumn": 41.0, + "textAlign": "LEFT", + "widgetId": "reyoxo4oec", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "1.5rem" + }, { + "boxShadow": "none", + "widgetName": "Button1", + "onClick": "{{closeModal('Delete_Modal')}}", + "dynamicPropertyPathList": [], + "buttonColor": "#03B365", + "topRow": 17.0, + "bottomRow": 21.0, + "type": "BUTTON_WIDGET", + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 34.0, + "dynamicBindingPathList": [], + "text": "Cancel", + "isDisabled": false, + "labelTextSize": "0.875rem", + "rightColumn": 46.0, + "isDefaultClickDisabled": true, + "widgetId": "lryg8kw537", + "isVisible": "true", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "zi8fjakv8o", + "isLoading": false, + "borderRadius": "0px", + "buttonVariant": "PRIMARY" + }, { + "boxShadow": "none", + "widgetName": "Delete_Button", + "onClick": "{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}", + "dynamicPropertyPathList": [{ + "key": "onClick" + }], + "buttonColor": "#F22B2B", + "topRow": 17.0, + "bottomRow": 21.0, + "type": "BUTTON_WIDGET", + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 48.0, + "dynamicBindingPathList": [], + "text": "Confirm", + "isDisabled": false, + "labelTextSize": "0.875rem", + "rightColumn": 64.0, + "isDefaultClickDisabled": true, + "widgetId": "qq02lh7ust", + "isVisible": "true", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "zi8fjakv8o", + "isLoading": false, + "borderRadius": "0px", + "buttonVariant": "PRIMARY" + }, { + "boxShadow": "none", + "widgetName": "Text12", + "topRow": 8.0, + "bottomRow": 12.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "parentColumnSpace": 6.875, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "System Default", + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "text": "Are you sure you want to delete this item?", + "labelTextSize": "0.875rem", + "rightColumn": 63.0, + "textAlign": "LEFT", + "widgetId": "48uac29g6e", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "0.875rem" + }], + "isDisabled": false, + "labelTextSize": "0.875rem", + "rightColumn": 453.1875, + "detachFromLayout": true, + "widgetId": "zi8fjakv8o", + "isVisible": "true", + "version": 1.0, + "parentId": "i3whp03wf0", + "isLoading": false, + "borderRadius": "0px" + }], + "height": 240.0, + "labelTextSize": "0.875rem", + "rightColumn": 45.0, + "detachFromLayout": true, + "widgetId": "i3whp03wf0", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "isLoading": false, + "borderRadius": "0px", + "width": 456.0 + }, { + "boxShadow": "none", + "widgetName": "Insert_Modal", + "topRow": 16.0, + "bottomRow": 40.0, + "parentRowSpace": 10.0, + "type": "MODAL_WIDGET", + "shouldScrollContents": false, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 17.0, + "dynamicBindingPathList": [], + "children": [{ + "boxShadow": "none", + "widgetName": "Canvas4", + "topRow": 0.0, + "bottomRow": 610.0, + "parentRowSpace": 1.0, + "canExtend": true, + "type": "CANVAS_WIDGET", + "shouldScrollContents": false, + "minHeight": 600.0, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "labelTextSize": "0.875rem", + "boxShadow": "none", + "widgetName": "Form2", + "backgroundColor": "#F6F7F8", + "rightColumn": 64.0, + "widgetId": "1ruewbc4ef", + "topRow": 0.0, + "bottomRow": 58.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "FORM_WIDGET", + "parentId": "9rhv3ioohq", + "isLoading": false, + "shouldScrollContents": false, + "parentColumnSpace": 8.0, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "borderRadius": "0px", + "children": [{ + "labelTextSize": "0.875rem", + "boxShadow": "none", + "widgetName": "Canvas5", + "rightColumn": 224.0, + "detachFromLayout": true, + "widgetId": "tp9pui0e6y", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 570.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "1ruewbc4ef", + "minHeight": 580.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "borderRadius": "0px", + "children": [{ + "resetFormOnClick": true, + "boxShadow": "none", + "widgetName": "insert_button", + "onClick": "{{InsertQuery.run(() => SelectQuery.run(() => closeModal('Insert_Modal')))}}", + "dynamicPropertyPathList": [{ + "key": "onClick" + }], + "buttonColor": "#03B365", + "topRow": 51.0, + "bottomRow": 55.0, + "type": "FORM_BUTTON_WIDGET", + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 43.0, + "dynamicBindingPathList": [], + "googleRecaptchaKey": "", + "text": "Submit", + "labelTextSize": "0.875rem", + "rightColumn": 62.0, + "isDefaultClickDisabled": true, + "widgetId": "h8vxf3oh4s", + "isVisible": "true", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "tp9pui0e6y", + "isLoading": false, + "disabledWhenInvalid": true, + "borderRadius": "0px", + "buttonVariant": "PRIMARY" + }, { + "resetFormOnClick": true, + "boxShadow": "none", + "widgetName": "reset_button", + "onClick": "{{closeModal('Insert_Modal')}}", + "buttonColor": "#03B365", + "topRow": 51.0, + "bottomRow": 55.0, + "type": "FORM_BUTTON_WIDGET", + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 29.0, + "dynamicBindingPathList": [], + "text": "Close", + "labelTextSize": "0.875rem", + "rightColumn": 42.0, + "isDefaultClickDisabled": true, + "widgetId": "o23gs26wm5", + "isVisible": "true", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "tp9pui0e6y", + "isLoading": false, + "disabledWhenInvalid": false, + "borderRadius": "0px", + "buttonVariant": "SECONDARY" + }, { + "boxShadow": "none", + "widgetName": "Text21", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "System Default", + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "text": "ID:", + "labelTextSize": "0.875rem", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "cfmxebyn06", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "0.875rem" + }, { + "boxShadow": "none", + "widgetName": "insert_col_input1", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "type": "INPUT_WIDGET", + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "Autogenerated Field", + "isDisabled": true, + "validation": "true", + "labelTextSize": "0.875rem", + "isRequired": false, + "rightColumn": 62.0, + "widgetId": "h1wbbv7alb", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisible": "true", + "label": "", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "borderRadius": "0px" + }, { + "boxShadow": "none", + "widgetName": "Text22", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "System Default", + "leftColumn": 2.0, + "dynamicBindingPathList": [], + "text": "guid:", + "labelTextSize": "0.875rem", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "jsffaxrqhw", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "0.875rem" + }, { + "boxShadow": "none", + "widgetName": "insert_col_input2", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "type": "INPUT_WIDGET", + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "guid", + "isDisabled": false, + "validation": "true", + "labelTextSize": "0.875rem", + "isRequired": true, + "rightColumn": 62.0, + "widgetId": "6enalyprua", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisible": "true", + "label": "", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "borderRadius": "0px", + "defaultText": "" + }, { + "boxShadow": "none", + "widgetName": "Text23", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "System Default", + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "text": "post_author:", + "labelTextSize": "0.875rem", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "btk60uozsm", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "0.875rem" + }, { + "boxShadow": "none", + "widgetName": "insert_col_input3", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "type": "INPUT_WIDGET", + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "post_author", + "isDisabled": false, + "validation": "true", + "labelTextSize": "0.875rem", + "isRequired": true, + "rightColumn": 62.0, + "widgetId": "e490gfts69", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisible": "true", + "label": "", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "borderRadius": "0px", + "defaultText": "" + }, { + "boxShadow": "none", + "widgetName": "Text14", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "System Default", + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "text": "post_date:", + "labelTextSize": "0.875rem", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "8fm60omwwv", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "0.875rem" + }, { + "boxShadow": "none", + "widgetName": "insert_col_input4", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "type": "INPUT_WIDGET", + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "post_date", + "isDisabled": false, + "validation": "true", + "labelTextSize": "0.875rem", + "isRequired": true, + "rightColumn": 62.0, + "widgetId": "r55cydp0ao", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisible": "true", + "label": "", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "borderRadius": "0px", + "defaultText": "" + }, { + "boxShadow": "none", + "widgetName": "Text24", + "topRow": 33.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "System Default", + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "text": "post_date_gmt:", + "labelTextSize": "0.875rem", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "9t3vdjd5xj", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "0.875rem" + }, { + "boxShadow": "none", + "widgetName": "insert_col_input5", + "topRow": 33.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "type": "INPUT_WIDGET", + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "post_date_gmt", + "isDisabled": false, + "validation": "true", + "labelTextSize": "0.875rem", + "isRequired": true, + "rightColumn": 62.0, + "widgetId": "5rfqxgj0vm", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisible": "true", + "label": "", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "borderRadius": "0px" + }, { + "boxShadow": "none", + "widgetName": "Text13Copy", + "dynamicPropertyPathList": [{ + "key": "fontSize" + }], + "topRow": 0.0, + "bottomRow": 4.0, + "type": "TEXT_WIDGET", + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "System Default", + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "text": "Insert Row", + "labelTextSize": "0.875rem", + "rightColumn": 35.0, + "textAlign": "LEFT", + "widgetId": "18x7vdv3gs", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "1.5rem" + }] + }] + }], + "isDisabled": false, + "labelTextSize": "0.875rem", + "rightColumn": 453.1875, + "detachFromLayout": true, + "widgetId": "9rhv3ioohq", + "isVisible": "true", + "version": 1.0, + "parentId": "vmorzie6eq", + "isLoading": false, + "borderRadius": "0px" + }], + "height": 600.0, + "labelTextSize": "0.875rem", + "rightColumn": 41.0, + "detachFromLayout": true, + "widgetId": "vmorzie6eq", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "isLoading": false, + "borderRadius": "0px", + "width": 532.0 + }, { + "labelTextSize": "0.875rem", + "boxShadow": "none", + "widgetName": "Form1", + "backgroundColor": "white", + "rightColumn": 64.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "m7dvlazbn7", + "topRow": 51.0, + "bottomRow": 102.0, + "parentRowSpace": 10.0, + "isVisible": "{{!!Table1.selectedRow.id}}", + "type": "FORM_WIDGET", + "parentId": "0", + "isLoading": false, + "shouldScrollContents": true, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 32.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "borderRadius": "0px", + "children": [{ + "labelTextSize": "0.875rem", + "boxShadow": "none", + "widgetName": "Canvas2", + "rightColumn": 528.71875, + "detachFromLayout": true, + "widgetId": "cicukwhp5j", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 450.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "m7dvlazbn7", + "minHeight": 460.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "borderRadius": "0px", + "children": [{ + "boxShadow": "none", + "widgetName": "Text20Copy", + "topRow": 28.0, + "bottomRow": 32.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "System Default", + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "text": "Author", + "labelTextSize": "0.875rem", + "rightColumn": 13.0, + "textAlign": "RIGHT", + "widgetId": "1sjs79otqs", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "0.875rem" + }, { + "resetFormOnClick": false, + "boxShadow": "none", + "widgetName": "update_button", + "onClick": "{{UpdateQuery.run(() => SelectQuery.run(), () => showAlert('Error while updating resource!','error'))}}", + "dynamicPropertyPathList": [], + "buttonColor": "#03B365", + "topRow": 36.0, + "bottomRow": 40.0, + "type": "FORM_BUTTON_WIDGET", + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 42.0, + "dynamicBindingPathList": [], + "text": "Update", + "labelTextSize": "0.875rem", + "rightColumn": 63.0, + "isDefaultClickDisabled": true, + "widgetId": "4gnygu5jew", + "isVisible": "true", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "cicukwhp5j", + "isLoading": false, + "disabledWhenInvalid": true, + "borderRadius": "0px", + "buttonVariant": "PRIMARY" + }, { + "resetFormOnClick": true, + "boxShadow": "none", + "widgetName": "reset_update_button", + "onClick": "", + "dynamicPropertyPathList": [], + "buttonColor": "#03b365", + "topRow": 36.0, + "bottomRow": 40.0, + "type": "FORM_BUTTON_WIDGET", + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 27.0, + "dynamicBindingPathList": [], + "text": "Reset", + "labelTextSize": "0.875rem", + "rightColumn": 41.0, + "isDefaultClickDisabled": true, + "widgetId": "twwgpz5wfu", + "isVisible": "true", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "cicukwhp5j", + "isLoading": false, + "disabledWhenInvalid": false, + "borderRadius": "0px", + "buttonVariant": "SECONDARY" + }, { + "boxShadow": "none", + "widgetName": "Text9", + "dynamicPropertyPathList": [{ + "key": "fontSize" + }], + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "System Default", + "leftColumn": 1.0, + "dynamicBindingPathList": [{ + "key": "text" + }], + "text": "Update Post: {{Table1.selectedRow.post_title}}", + "labelTextSize": "0.875rem", + "rightColumn": 63.0, + "textAlign": "LEFT", + "widgetId": "4hnz8ktmz5", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "1.5rem" + }, { + "boxShadow": "none", + "widgetName": "Text17", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "System Default", + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "text": "Title", + "labelTextSize": "0.875rem", + "rightColumn": 13.0, + "textAlign": "RIGHT", + "widgetId": "afzzc7q8af", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "0.875rem" + }, { + "boxShadow": "none", + "widgetName": "Text18", + "topRow": 10.0, + "bottomRow": 14.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "System Default", + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "text": "Excerpt", + "labelTextSize": "0.875rem", + "rightColumn": 13.0, + "textAlign": "RIGHT", + "widgetId": "xqcsd2e5dj", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "0.875rem" + }, { + "boxShadow": "none", + "widgetName": "Text20", + "topRow": 21.0, + "bottomRow": 25.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "System Default", + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "text": "Post status", + "labelTextSize": "0.875rem", + "rightColumn": 13.0, + "textAlign": "RIGHT", + "widgetId": "gqpwf0yng6", + "isVisible": "true", + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "0.875rem" + }, { + "boxShadow": "none", + "widgetName": "title", + "displayName": "Input", + "iconSVG": "/static/media/icon.9f505595da61a34f563dba82adeb06ec.svg", + "searchTags": ["form", "text input", "number", "textarea"], + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "labelWidth": 5.0, + "autoFocus": false, + "type": "INPUT_WIDGET_V2", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 22.1875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 13.0, + "dynamicBindingPathList": [{ + "key": "accentColor" + }, { + "key": "borderRadius" + }, { + "key": "defaultText" + }], + "labelPosition": "Left", + "labelStyle": "", + "inputType": "TEXT", + "isDisabled": false, + "key": "kdtze4kp88", + "labelTextSize": "0.875rem", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 63.0, + "widgetId": "armli8hauj", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisible": true, + "label": "", + "version": 2.0, + "parentId": "cicukwhp5j", + "labelAlignment": "left", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "iconAlign": "left", + "defaultText": "{{Table1.selectedRow.post_title}}" + }, { + "boxShadow": "none", + "widgetName": "excerpt", + "displayName": "Input", + "iconSVG": "/static/media/icon.9f505595da61a34f563dba82adeb06ec.svg", + "searchTags": ["form", "text input", "number", "textarea"], + "topRow": 10.0, + "bottomRow": 19.0, + "parentRowSpace": 10.0, + "labelWidth": 5.0, + "autoFocus": false, + "type": "INPUT_WIDGET_V2", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 22.1875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 13.0, + "dynamicBindingPathList": [{ + "key": "accentColor" + }, { + "key": "borderRadius" + }, { + "key": "defaultText" + }], + "labelPosition": "Left", + "labelStyle": "", + "inputType": "TEXT", + "isDisabled": false, + "key": "zcbtkchv75", + "labelTextSize": "0.875rem", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 63.0, + "widgetId": "8bfosy6n39", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisible": true, + "label": "", + "version": 2.0, + "parentId": "cicukwhp5j", + "labelAlignment": "left", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "iconAlign": "left", + "defaultText": "{{Table1.selectedRow.post_excerpt}}" + }, { + "boxShadow": "none", + "widgetName": "Select1", + "isFilterable": true, + "displayName": "Select", + "iconSVG": "/static/media/icon.bd99caba5853ad71e4b3d8daffacb3a2.svg", + "labelText": "", + "searchTags": ["dropdown"], + "topRow": 21.0, + "bottomRow": 25.0, + "parentRowSpace": 10.0, + "labelWidth": 5.0, + "type": "SELECT_WIDGET", + "serverSideFiltering": false, + "hideCard": false, + "defaultOptionValue": "{{Table1.selectedRow.post_status}}", + "animateLoading": true, + "parentColumnSpace": 22.1875, + "dynamicTriggerPathList": [], + "leftColumn": 13.0, + "dynamicBindingPathList": [{ + "key": "accentColor" + }, { + "key": "borderRadius" + }, { + "key": "defaultOptionValue" + }], + "labelPosition": "Left", + "options": "[\n {\n \"label\": \"Publish\",\n \"value\": \"publish\"\n },\n {\n \"label\": \"Draft\",\n \"value\": \"draft\"\n },\n {\n \"label\": \"Auto draft\",\n \"value\": \"auto-draft\"\n }\n]", + "placeholderText": "Select option", + "isDisabled": false, + "key": "r5itm70cd7", + "labelTextSize": "0.875rem", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 63.0, + "widgetId": "0kgxivei8o", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisible": true, + "version": 1.0, + "parentId": "cicukwhp5j", + "labelAlignment": "left", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + }, { + "boxShadow": "none", + "widgetName": "author", + "isFilterable": true, + "displayName": "Select", + "iconSVG": "/static/media/icon.bd99caba5853ad71e4b3d8daffacb3a2.svg", + "labelText": "", + "searchTags": ["dropdown"], + "topRow": 28.0, + "bottomRow": 32.0, + "parentRowSpace": 10.0, + "labelWidth": 5.0, + "type": "SELECT_WIDGET", + "serverSideFiltering": false, + "hideCard": false, + "defaultOptionValue": "{{Table1.selectedRow.post_author\n}}", + "animateLoading": true, + "parentColumnSpace": 22.1875, + "dynamicTriggerPathList": [], + "leftColumn": 13.0, + "dynamicBindingPathList": [{ + "key": "accentColor" + }, { + "key": "borderRadius" + }, { + "key": "options" + }, { + "key": "defaultOptionValue" + }], + "labelPosition": "Left", + "options": "{{GetUsers.data.map(({id:value,user_nicename:label})=>({value,label}))}}", + "placeholderText": "Select option", + "isDisabled": false, + "key": "r5itm70cd7", + "labelTextSize": "0.875rem", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 63.0, + "widgetId": "wjak1g7ibc", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisible": true, + "version": 1.0, + "parentId": "cicukwhp5j", + "labelAlignment": "left", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}" + }] + }] + }, { + "boxShadow": "none", + "widgetName": "Container2", + "borderColor": "transparent", + "isCanvas": true, + "dynamicPropertyPathList": [{ + "key": "borderRadius" + }], + "displayName": "Container", + "iconSVG": "/static/media/icon.1977dca3.svg", + "topRow": 4.0, + "bottomRow": 51.0, + "parentRowSpace": 10.0, + "type": "CONTAINER_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 22.1875, + "leftColumn": 32.0, + "dynamicBindingPathList": [], + "children": [{ + "boxShadow": "none", + "widgetName": "Canvas6", + "displayName": "Canvas", + "topRow": 0.0, + "bottomRow": 490.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": false, + "hideCard": true, + "minHeight": 400.0, + "parentColumnSpace": 1.0, + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "boxShadow": "none", + "widgetName": "Text25", + "dynamicPropertyPathList": [{ + "key": "fontSize" + }], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b52.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 12.16796875, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "System Default", + "leftColumn": 0.0, + "dynamicBindingPathList": [{ + "key": "text" + }], + "truncateButtonColor": "#FFC13D", + "text": "{{Table1.selectedRow.post_title}}", + "key": "6pacxcck35", + "labelTextSize": "0.875rem", + "rightColumn": 64.0, + "textAlign": "LEFT", + "widgetId": "lhjdqceozq", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "ns44diaamt", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "1.5rem" + }, { + "boxShadow": "none", + "widgetName": "Text26", + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b52.svg", + "topRow": 9.0, + "bottomRow": 47.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 12.16796875, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "System Default", + "leftColumn": 0.0, + "dynamicBindingPathList": [{ + "key": "text" + }], + "truncateButtonColor": "#FFC13D", + "text": "{{Table1.selectedRow.post_content}}", + "key": "6pacxcck35", + "labelTextSize": "0.875rem", + "rightColumn": 64.0, + "textAlign": "LEFT", + "widgetId": "msnx2elzmi", + "isVisible": true, + "fontStyle": "", + "textColor": "#231F20", + "version": 1.0, + "parentId": "ns44diaamt", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "0.875rem" + }], + "key": "m1q7rvnf0q", + "labelTextSize": "0.875rem", + "rightColumn": 532.5, + "detachFromLayout": true, + "widgetId": "ns44diaamt", + "containerStyle": "none", + "isVisible": true, + "version": 1.0, + "parentId": "z86ak9za7r", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0px" + }], + "borderWidth": "0", + "key": "6q011hdwm8", + "labelTextSize": "0.875rem", + "backgroundColor": "#FFFFFF", + "rightColumn": 64.0, + "widgetId": "z86ak9za7r", + "containerStyle": "card", + "isVisible": true, + "version": 1.0, + "parentId": "0", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0px" + }, { + "boxShadow": "none", + "widgetName": "Text27", + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b52.svg", + "topRow": 4.0, + "bottomRow": 8.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 22.1875, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "System Default", + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "truncateButtonColor": "#FFC13D", + "text": "Show posts from", + "key": "kf4mmyg152", + "labelTextSize": "0.875rem", + "rightColumn": 6.0, + "textAlign": "LEFT", + "widgetId": "mywn2w5z48", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "0", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "0.875rem" + }, { + "boxShadow": "none", + "widgetName": "Text28", + "dynamicPropertyPathList": [{ + "key": "fontSize" + }], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b52.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 22.1875, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "System Default", + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "truncateButtonColor": "#FFC13D", + "text": "A Simple Blog Admin", + "key": "kf4mmyg152", + "labelTextSize": "0.875rem", + "rightColumn": 37.0, + "textAlign": "CENTER", + "widgetId": "3k35414uwf", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "0", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "1.5rem" + }, { + "boxShadow": "none", + "widgetName": "Table2", + "defaultPageSize": 0.0, + "columnOrder": ["comment_ID", "comment_post_ID", "comment_author", "comment_author_email", "comment_author_url", "comment_author_IP", "comment_date", "comment_date_gmt", "comment_content", "comment_karma", "comment_approved", "comment_agent", "comment_type", "comment_parent", "user_id"], + "isVisibleDownload": true, + "dynamicPropertyPathList": [], + "displayName": "Table", + "iconSVG": "/static/media/icon.db8a9cbd.svg", + "topRow": 102.0, + "bottomRow": 163.0, + "isSortable": true, + "parentRowSpace": 10.0, + "type": "TABLE_WIDGET", + "defaultSelectedRow": "0", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 30.234375, + "dynamicTriggerPathList": [], + "dynamicBindingPathList": [{ + "key": "tableData" + }, { + "key": "primaryColumns.user_id.computedValue" + }, { + "key": "primaryColumns.comment_parent.computedValue" + }, { + "key": "primaryColumns.comment_type.computedValue" + }, { + "key": "primaryColumns.comment_agent.computedValue" + }, { + "key": "primaryColumns.comment_approved.computedValue" + }, { + "key": "primaryColumns.comment_karma.computedValue" + }, { + "key": "primaryColumns.comment_content.computedValue" + }, { + "key": "primaryColumns.comment_date_gmt.computedValue" + }, { + "key": "primaryColumns.comment_date.computedValue" + }, { + "key": "primaryColumns.comment_author_IP.computedValue" + }, { + "key": "primaryColumns.comment_author_url.computedValue" + }, { + "key": "primaryColumns.comment_author_email.computedValue" + }, { + "key": "primaryColumns.comment_author.computedValue" + }, { + "key": "primaryColumns.comment_post_ID.computedValue" + }, { + "key": "primaryColumns.comment_ID.computedValue" + }, { + "key": "accentColor" + }], + "leftColumn": 0.0, + "primaryColumns": { + "comment_ID": { + "index": 0.0, + "width": 150.0, + "id": "comment_ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_ID", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_ID))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "comment_post_ID": { + "index": 1.0, + "width": 150.0, + "id": "comment_post_ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_post_ID", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_post_ID))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "comment_author": { + "index": 2.0, + "width": 150.0, + "id": "comment_author", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_author", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_author))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "comment_author_email": { + "index": 3.0, + "width": 150.0, + "id": "comment_author_email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_author_email", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_email))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "comment_author_url": { + "index": 4.0, + "width": 150.0, + "id": "comment_author_url", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_author_url", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_url))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "comment_author_IP": { + "index": 5.0, + "width": 150.0, + "id": "comment_author_IP", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_author_IP", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_IP))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "comment_date": { + "index": 6.0, + "width": 150.0, + "id": "comment_date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_date", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_date))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "comment_date_gmt": { + "index": 7.0, + "width": 150.0, + "id": "comment_date_gmt", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_date_gmt", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_date_gmt))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "comment_content": { + "index": 8.0, + "width": 150.0, + "id": "comment_content", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_content", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_content))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "comment_karma": { + "index": 9.0, + "width": 150.0, + "id": "comment_karma", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_karma", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_karma))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "comment_approved": { + "index": 10.0, + "width": 150.0, + "id": "comment_approved", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_approved", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_approved))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "comment_agent": { + "index": 11.0, + "width": 150.0, + "id": "comment_agent", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_agent", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_agent))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "comment_type": { + "index": 12.0, + "width": 150.0, + "id": "comment_type", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_type", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_type))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "comment_parent": { + "index": 13.0, + "width": 150.0, + "id": "comment_parent", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_parent", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_parent))}}", + "borderRadius": "0px", + "boxShadow": "none" + }, + "user_id": { + "index": 14.0, + "width": 150.0, + "id": "user_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "user_id", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.user_id))}}", + "borderRadius": "0px", + "boxShadow": "none" + } + }, + "delimiter": ",", + "key": "3o40dz6neg", + "derivedColumns": {}, + "labelTextSize": "0.875rem", + "rightColumn": 64.0, + "textSize": "0.875rem", + "widgetId": "0w2wtazhe9", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": true, + "tableData": "{{GetComments.data}}", + "isVisible": true, + "label": "Data", + "searchKey": "", + "enableClientSideSearch": true, + "version": 3.0, + "totalRecordsCount": 0.0, + "parentId": "0", + "renderMode": "CANVAS", + "isLoading": false, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + } + }, + "borderRadius": "0px", + "isVisiblePagination": true, + "verticalAlignment": "CENTER", + "columnSizeMap": { + "task": 245.0, + "step": 62.0, + "status": 75.0 + } + }, { + "boxShadow": "none", + "widgetName": "Modal1", + "isCanvas": true, + "displayName": "Modal", + "iconSVG": "/static/media/icon.4975978e.svg", + "topRow": 7.0, + "bottomRow": 31.0, + "parentRowSpace": 10.0, + "type": "MODAL_WIDGET", + "hideCard": false, + "shouldScrollContents": true, + "animateLoading": true, + "parentColumnSpace": 19.8125, + "leftColumn": 38.0, + "dynamicBindingPathList": [], + "children": [{ + "boxShadow": "none", + "widgetName": "Canvas7", + "displayName": "Canvas", + "topRow": 0.0, + "bottomRow": 760.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "hideCard": true, + "shouldScrollContents": false, + "minHeight": 770.0, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "boxShadow": "none", + "widgetName": "Icon1", + "onClick": "{{closeModal('Modal1')}}", + "buttonColor": "#2E3D49", + "displayName": "Icon", + "iconSVG": "/static/media/icon.31d6cfe0.svg", + "topRow": 1.0, + "bottomRow": 5.0, + "type": "ICON_BUTTON_WIDGET", + "hideCard": true, + "leftColumn": 56.0, + "dynamicBindingPathList": [], + "iconSize": 24.0, + "key": "o7daf79fmd", + "labelTextSize": "0.875rem", + "rightColumn": 64.0, + "iconName": "cross", + "widgetId": "hmgi4boxq2", + "isVisible": true, + "version": 1.0, + "parentId": "76vv2ztsz3", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0px", + "buttonVariant": "TERTIARY" + }, { + "boxShadow": "none", + "widgetName": "Text29", + "dynamicPropertyPathList": [{ + "key": "fontSize" + }], + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b52.svg", + "topRow": 1.0, + "bottomRow": 5.0, + "type": "TEXT_WIDGET", + "hideCard": false, + "animateLoading": true, + "dynamicTriggerPathList": [], + "overflow": "NONE", + "fontFamily": "System Default", + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "truncateButtonColor": "#FFC13D", + "text": "Post Comments", + "key": "brfs5vee1o", + "labelTextSize": "0.875rem", + "rightColumn": 41.0, + "textAlign": "LEFT", + "widgetId": "53g2qiabn4", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#231F20", + "version": 1.0, + "parentId": "76vv2ztsz3", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0px", + "fontSize": "1.5rem" + }, { + "boxShadow": "none", + "widgetName": "Button2", + "onClick": "{{closeModal('Modal1')}}", + "buttonColor": "#03B365", + "displayName": "Button", + "iconSVG": "/static/media/icon.cca02633.svg", + "topRow": 70.0, + "bottomRow": 74.0, + "type": "BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "leftColumn": 38.0, + "dynamicBindingPathList": [], + "text": "Close", + "isDisabled": false, + "key": "5m8dfthjur", + "labelTextSize": "0.875rem", + "rightColumn": 50.0, + "isDefaultClickDisabled": true, + "widgetId": "xuk880axit", + "buttonStyle": "PRIMARY", + "isVisible": true, + "recaptchaType": "V3", + "version": 1.0, + "parentId": "76vv2ztsz3", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0px", + "buttonVariant": "SECONDARY", + "placement": "CENTER" + }, { + "boxShadow": "none", + "widgetName": "Button3", + "buttonColor": "#03B365", + "displayName": "Button", + "iconSVG": "/static/media/icon.cca02633.svg", + "topRow": 70.0, + "bottomRow": 74.0, + "type": "BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "leftColumn": 50.0, + "dynamicBindingPathList": [], + "text": "Confirm", + "isDisabled": false, + "key": "5m8dfthjur", + "labelTextSize": "0.875rem", + "rightColumn": 62.0, + "isDefaultClickDisabled": true, + "widgetId": "1qemf70h8t", + "buttonStyle": "PRIMARY_BUTTON", + "isVisible": true, + "recaptchaType": "V3", + "version": 1.0, + "parentId": "76vv2ztsz3", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0px", + "buttonVariant": "PRIMARY", + "placement": "CENTER" + }, { + "boxShadow": "none", + "widgetName": "Table3", + "defaultPageSize": 0.0, + "columnOrder": ["step", "task", "status", "action"], + "isVisibleDownload": true, + "displayName": "Table", + "iconSVG": "/static/media/icon.db8a9cbd.svg", + "topRow": 7.0, + "bottomRow": 61.0, + "isSortable": true, + "parentRowSpace": 10.0, + "type": "TABLE_WIDGET", + "defaultSelectedRow": "0", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 14.96875, + "dynamicTriggerPathList": [], + "dynamicBindingPathList": [{ + "key": "tableData" + }, { + "key": "primaryColumns.status.computedValue" + }, { + "key": "primaryColumns.task.computedValue" + }, { + "key": "primaryColumns.step.computedValue" + }, { + "key": "accentColor" + }], + "leftColumn": 1.0, + "primaryColumns": { + "step": { + "index": 0.0, + "width": 150.0, + "id": "step", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isCellVisible": true, + "isDerived": false, + "label": "step", + "computedValue": "{{Table3.sanitizedTableData.map((currentRow) => ( currentRow.step))}}", + "buttonColor": "#03B365", + "menuColor": "#03B365", + "labelColor": "#FFFFFF", + "borderRadius": "0px", + "boxShadow": "none" + }, + "task": { + "index": 1.0, + "width": 150.0, + "id": "task", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isCellVisible": true, + "isDerived": false, + "label": "task", + "computedValue": "{{Table3.sanitizedTableData.map((currentRow) => ( currentRow.task))}}", + "buttonColor": "#03B365", + "menuColor": "#03B365", + "labelColor": "#FFFFFF", + "borderRadius": "0px", + "boxShadow": "none" + }, + "status": { + "index": 2.0, + "width": 150.0, + "id": "status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isCellVisible": true, + "isDerived": false, + "label": "status", + "computedValue": "{{Table3.sanitizedTableData.map((currentRow) => ( currentRow.status))}}", + "buttonColor": "#03B365", + "menuColor": "#03B365", + "labelColor": "#FFFFFF", + "borderRadius": "0px", + "boxShadow": "none" + }, + "action": { + "index": 3.0, + "width": 150.0, + "id": "action", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "button", + "textSize": "0.875rem", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isCellVisible": true, + "isDisabled": false, + "isDerived": false, + "label": "action", + "onClick": "{{currentRow.step === '#1' ? showAlert('Done', 'success') : currentRow.step === '#2' ? navigateTo('https://docs.appsmith.com/core-concepts/connecting-to-data-sources/querying-a-database',undefined,'NEW_WINDOW') : navigateTo('https://docs.appsmith.com/core-concepts/displaying-data-read/display-data-tables',undefined,'NEW_WINDOW')}}", + "computedValue": "{{Table3.sanitizedTableData.map((currentRow) => ( currentRow.action))}}", + "buttonColor": "#03B365", + "menuColor": "#03B365", + "labelColor": "#FFFFFF", + "borderRadius": "0px", + "boxShadow": "none" + } + }, + "delimiter": ",", + "key": "mcujxyczb9", + "derivedColumns": {}, + "labelTextSize": "0.875rem", + "rightColumn": 63.0, + "textSize": "0.875rem", + "widgetId": "iyd643nar2", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisibleFilters": true, + "tableData": "{{GetComments.data}}", + "isVisible": true, + "label": "Data", + "searchKey": "", + "enableClientSideSearch": true, + "version": 3.0, + "totalRecordsCount": 0.0, + "parentId": "76vv2ztsz3", + "renderMode": "CANVAS", + "isLoading": false, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "childStylesheet": { + "button": { + "buttonColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "menuButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + }, + "iconButton": { + "menuColor": "{{appsmith.theme.colors.primaryColor}}", + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "boxShadow": "none" + } + }, + "borderRadius": "0px", + "isVisiblePagination": true, + "verticalAlignment": "CENTER", + "columnSizeMap": { + "task": 245.0, + "step": 62.0, + "status": 75.0 + } + }], + "isDisabled": false, + "key": "r6kp6re5b6", + "labelTextSize": "0.875rem", + "rightColumn": 475.5, + "detachFromLayout": true, + "widgetId": "76vv2ztsz3", + "isVisible": true, + "version": 1.0, + "parentId": "wmh1lgly6x", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0px" + }], + "key": "x9fztaaory", + "height": 770.0, + "labelTextSize": "0.875rem", + "rightColumn": 62.0, + "detachFromLayout": true, + "widgetId": "wmh1lgly6x", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0px", + "width": 970.0 + }, { + "boxShadow": "none", + "widgetName": "categories", + "isFilterable": true, + "displayName": "MultiSelect", + "iconSVG": "/static/media/icon.a3495809ae48291a64404f3bb04b0e69.svg", + "labelText": "", + "searchTags": ["dropdown", "tags"], + "topRow": 4.0, + "bottomRow": 8.0, + "parentRowSpace": 10.0, + "labelWidth": 5.0, + "type": "MULTI_SELECT_WIDGET_V2", + "serverSideFiltering": false, + "hideCard": false, + "defaultOptionValue": "[ ]", + "animateLoading": true, + "parentColumnSpace": 22.1875, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 7.0, + "dynamicBindingPathList": [{ + "key": "accentColor" + }, { + "key": "borderRadius" + }, { + "key": "options" + }], + "labelPosition": "Left", + "options": "{{GetCategories.data.map(cat=>({label:cat.name,value:cat.term_id}))}}", + "placeholderText": "Select option(s)", + "isDisabled": false, + "key": "pf8n73ejl3", + "labelTextSize": "0.875rem", + "isRequired": false, + "isDeprecated": false, + "rightColumn": 27.0, + "widgetId": "e0fnd5bi93", + "accentColor": "{{appsmith.theme.colors.primaryColor}}", + "isVisible": true, + "version": 1.0, + "parentId": "0", + "labelAlignment": "left", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}", + "onOptionChange": "{{SelectQuery.run()}}" + }] + }, + "layoutOnLoadActions": [ + [{ + "id": "Blog_GetUsers", + "name": "GetUsers", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "Table1.searchText || \"\"", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "timeoutInMillisecond": 10000.0 + }], + [{ + "id": "Blog_GetComments", + "name": "GetComments", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": ["Table1.selectedRow.id"], + "timeoutInMillisecond": 10000.0 + }, { + "id": "Blog_SelectQuery", + "name": "SelectQuery", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "categories.selectedOptionValues.reduce((str,value)=>`${str},${value}`,'0')", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "timeoutInMillisecond": 10000.0 + }], + [{ + "id": "Blog_GetCategories", + "name": "GetCategories", + "confirmBeforeExecute": false, + "pluginType": "DB", + "jsonPathKeys": [], + "timeoutInMillisecond": 10000.0 + }] + ], + "validOnPageLoadActions": true, + "id": "Blog", + "deleted": false, + "policies": [], + "userPermissions": [] + }], + "userPermissions": [], + "policies": [], + "isHidden": false + }, + "publishedPage": { + "name": "Blog", + "slug": "blog", + "layouts": [{ + "viewMode": false, + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 1280.0, + "snapColumns": 64.0, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0.0, + "bottomRow": 1880.0, + "containerStyle": "none", + "snapRows": 125.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 51.0, + "minHeight": 1010.0, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "dynamicBindingPathList": [], + "leftColumn": 0.0, + "children": [{ + "backgroundColor": "#FFFFFF", + "widgetName": "Container1", + "rightColumn": 32.0, + "widgetId": "mvubsemxfo", + "containerStyle": "card", + "topRow": 17.0, + "bottomRow": 124.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "CONTAINER_WIDGET", + "version": 1.0, + "parentId": "0", + "isLoading": false, + "parentColumnSpace": 19.75, + "leftColumn": 0.0, + "children": [{ + "widgetName": "Canvas1", + "rightColumn": 632.0, + "detachFromLayout": true, + "widgetId": "59rw5mx0bq", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 1110.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "mvubsemxfo", + "minHeight": 870.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Table1", + "columnOrder": ["ID", "post_title", "post_excerpt", "post_status", "post_author", "post_date", "post_date_gmt", "post_content", "comment_status", "ping_status", "post_password", "post_name", "to_ping", "pinged", "post_modified", "post_modified_gmt", "post_content_filtered", "post_parent", "guid", "menu_order", "post_type", "post_mime_type", "comment_count", "object_id", "term_taxonomy_id", "term_order", "customColumn1"], + "dynamicPropertyPathList": [{ + "key": "onPageChange" + }], + "isVisibleDownload": true, + "topRow": 10.0, + "bottomRow": 109.0, + "parentRowSpace": 10.0, + "onPageChange": "{{SelectQuery.run()}}", + "isSortable": true, + "type": "TABLE_WIDGET", + "defaultSelectedRow": "0", + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [{ + "key": "onPageChange" + }, { + "key": "primaryColumns.customColumn1.onClick" + }, { + "key": "onSearchTextChanged" + }, { + "key": "onRowSelected" + }], + "dynamicBindingPathList": [{ + "key": "primaryColumns.customColumn1.buttonLabel" + }, { + "key": "primaryColumns.ID.computedValue" + }, { + "key": "primaryColumns.post_author.computedValue" + }, { + "key": "primaryColumns.post_date.computedValue" + }, { + "key": "primaryColumns.post_date_gmt.computedValue" + }, { + "key": "primaryColumns.post_content.computedValue" + }, { + "key": "primaryColumns.post_title.computedValue" + }, { + "key": "primaryColumns.post_excerpt.computedValue" + }, { + "key": "primaryColumns.post_status.computedValue" + }, { + "key": "primaryColumns.comment_status.computedValue" + }, { + "key": "primaryColumns.ping_status.computedValue" + }, { + "key": "primaryColumns.post_password.computedValue" + }, { + "key": "primaryColumns.post_name.computedValue" + }, { + "key": "primaryColumns.to_ping.computedValue" + }, { + "key": "primaryColumns.pinged.computedValue" + }, { + "key": "primaryColumns.post_modified.computedValue" + }, { + "key": "primaryColumns.post_modified_gmt.computedValue" + }, { + "key": "primaryColumns.post_content_filtered.computedValue" + }, { + "key": "primaryColumns.post_parent.computedValue" + }, { + "key": "primaryColumns.guid.computedValue" + }, { + "key": "primaryColumns.menu_order.computedValue" + }, { + "key": "primaryColumns.post_type.computedValue" + }, { + "key": "primaryColumns.post_mime_type.computedValue" + }, { + "key": "primaryColumns.comment_count.computedValue" + }, { + "key": "primaryColumns.object_id.computedValue" + }, { + "key": "primaryColumns.term_taxonomy_id.computedValue" + }, { + "key": "primaryColumns.term_order.computedValue" + }], + "leftColumn": 0.0, + "primaryColumns": { + "customColumn1": { + "isCellVisible": true, + "isDerived": true, + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.customColumn1))}}", + "onClick": "{{showModal('Delete_Modal')}}", + "textSize": "PARAGRAPH", + "buttonColor": "#DD4B34", + "index": 7.0, + "isVisible": true, + "label": "Delete", + "buttonLabel": "{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}", + "columnType": "button", + "horizontalAlignment": "LEFT", + "width": 150.0, + "enableFilter": true, + "enableSort": true, + "id": "customColumn1", + "isDisabled": false, + "buttonLabelColor": "#FFFFFF", + "verticalAlignment": "CENTER" + }, + "ID": { + "index": 0.0, + "width": 150.0, + "id": "ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "ID", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.ID))}}" + }, + "post_author": { + "index": 1.0, + "width": 150.0, + "id": "post_author", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_author", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_author))}}" + }, + "post_date": { + "index": 2.0, + "width": 150.0, + "id": "post_date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_date", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_date))}}" + }, + "post_date_gmt": { + "index": 3.0, + "width": 150.0, + "id": "post_date_gmt", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_date_gmt", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_date_gmt))}}" + }, + "post_content": { + "index": 4.0, + "width": 150.0, + "id": "post_content", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_content", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_content))}}" + }, + "post_title": { + "index": 5.0, + "width": 150.0, + "id": "post_title", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_title", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_title))}}" + }, + "post_excerpt": { + "index": 6.0, + "width": 150.0, + "id": "post_excerpt", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_excerpt", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_excerpt))}}" + }, + "post_status": { + "index": 7.0, + "width": 150.0, + "id": "post_status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_status", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_status))}}" + }, + "comment_status": { + "index": 8.0, + "width": 150.0, + "id": "comment_status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_status", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_status))}}" + }, + "ping_status": { + "index": 9.0, + "width": 150.0, + "id": "ping_status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "ping_status", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.ping_status))}}" + }, + "post_password": { + "index": 10.0, + "width": 150.0, + "id": "post_password", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_password", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_password))}}" + }, + "post_name": { + "index": 11.0, + "width": 150.0, + "id": "post_name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_name", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_name))}}" + }, + "to_ping": { + "index": 12.0, + "width": 150.0, + "id": "to_ping", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "to_ping", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.to_ping))}}" + }, + "pinged": { + "index": 13.0, + "width": 150.0, + "id": "pinged", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "pinged", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.pinged))}}" + }, + "post_modified": { + "index": 14.0, + "width": 150.0, + "id": "post_modified", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_modified", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_modified))}}" + }, + "post_modified_gmt": { + "index": 15.0, + "width": 150.0, + "id": "post_modified_gmt", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_modified_gmt", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_modified_gmt))}}" + }, + "post_content_filtered": { + "index": 16.0, + "width": 150.0, + "id": "post_content_filtered", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_content_filtered", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_content_filtered))}}" + }, + "post_parent": { + "index": 17.0, + "width": 150.0, + "id": "post_parent", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_parent", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_parent))}}" + }, + "guid": { + "index": 18.0, + "width": 150.0, + "id": "guid", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "guid", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.guid))}}" + }, + "menu_order": { + "index": 19.0, + "width": 150.0, + "id": "menu_order", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "menu_order", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.menu_order))}}" + }, + "post_type": { + "index": 20.0, + "width": 150.0, + "id": "post_type", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_type", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_type))}}" + }, + "post_mime_type": { + "index": 21.0, + "width": 150.0, + "id": "post_mime_type", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "post_mime_type", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.post_mime_type))}}" + }, + "comment_count": { + "index": 22.0, + "width": 150.0, + "id": "comment_count", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_count", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.comment_count))}}" + }, + "object_id": { + "index": 23.0, + "width": 150.0, + "id": "object_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "object_id", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.object_id))}}" + }, + "term_taxonomy_id": { + "index": 24.0, + "width": 150.0, + "id": "term_taxonomy_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "term_taxonomy_id", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.term_taxonomy_id))}}" + }, + "term_order": { + "index": 25.0, + "width": 150.0, + "id": "term_order", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "term_order", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.term_order))}}" + } + }, + "delimiter": ",", + "onRowSelected": "{{GetComments.run()}}", + "derivedColumns": { + "customColumn1": { + "isDerived": true, + "computedValue": "", + "onClick": "{{DeleteQuery.run()}}", + "textSize": "PARAGRAPH", + "buttonStyle": "#DD4B34", + "index": 7.0, + "isVisible": true, + "label": "customColumn1", + "buttonLabel": "{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}", + "columnType": "button", + "horizontalAlignment": "LEFT", + "width": 150.0, + "enableFilter": true, + "enableSort": true, + "id": "customColumn1", + "buttonLabelColor": "#FFFFFF", + "verticalAlignment": "CENTER" + } + }, + "rightColumn": 64.0, + "textSize": "PARAGRAPH", + "widgetId": "jabdu9f16g", + "isVisibleFilters": true, + "tableData": "", + "isVisible": "true", + "label": "Data", + "searchKey": "", + "version": 3.0, + "parentId": "59rw5mx0bq", + "serverSidePaginationEnabled": true, + "isLoading": false, + "isVisibleCompactMode": true, + "onSearchTextChanged": "{{SelectQuery.run()}}", + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "isVisiblePagination": true, + "verticalAlignment": "CENTER", + "columnSizeMap": { + "task": 245.0, + "deliveryAddress": 170.0, + "step": 62.0, + "id": 228.0, + "status": 75.0 + } + }, { + "isRequired": false, + "widgetName": "col_select", + "isFilterable": true, + "rightColumn": 22.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "asmgosgxjm", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "{{SelectQuery.data.length > 0}}", + "label": "", + "type": "DROP_DOWN_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "defaultOptionValue": "ID", + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 7.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "options": "[\n{\n\t\"label\": \"post_date\",\n\t\"value\": \"post_date\"\n}, \n{\n\t\"label\": \"post_date_gmt\",\n\t\"value\": \"post_date_gmt\"\n}, \n{\n\t\"label\": \"guid\",\n\t\"value\": \"guid\"\n}, \n{\n\t\"label\": \"post_author\",\n\t\"value\": \"post_author\"\n}, \n{\n\t\"label\": \"ID\",\n\t\"value\": \"ID\"\n}]", + "onOptionChange": "{{SelectQuery.run()}}", + "isDisabled": false + }, { + "widgetName": "Text15", + "rightColumn": 7.0, + "textAlign": "LEFT", + "widgetId": "l8pgl90klz", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Order By :" + }, { + "isRequired": false, + "widgetName": "order_select", + "isFilterable": true, + "rightColumn": 33.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "10v8a19m25", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "{{SelectQuery.data.length > 0}}", + "label": "", + "type": "DROP_DOWN_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "defaultOptionValue": "ASC", + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 22.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "options": "[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]", + "onOptionChange": "{{SelectQuery.run()}}", + "isDisabled": false + }, { + "widgetName": "Text16", + "rightColumn": 64.0, + "textAlign": "LEFT", + "widgetId": "urzv99hdc8", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 11.78515625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "Blog Posts" + }, { + "boxShadow": "NONE", + "widgetName": "refresh_btn", + "rightColumn": 64.0, + "onClick": "{{SelectQuery.run()}}", + "iconName": "refresh", + "buttonColor": "#03B365", + "widgetId": "2jj0197tff", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "ICON_BUTTON_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 12.0703125, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "borderRadius": "CIRCLE", + "leftColumn": 60.0, + "dynamicBindingPathList": [], + "buttonVariant": "TERTIARY", + "isDisabled": false + }, { + "boxShadow": "NONE", + "widgetName": "add_btn", + "rightColumn": 60.0, + "onClick": "{{showModal('Insert_Modal')}}", + "iconName": "add", + "buttonColor": "#03B365", + "widgetId": "kby34l9nbb", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "ICON_BUTTON_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 12.0703125, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "borderRadius": "CIRCLE", + "leftColumn": 56.0, + "dynamicBindingPathList": [], + "buttonVariant": "TERTIARY", + "isDisabled": false + }] + }] + }, { + "widgetName": "Delete_Modal", + "rightColumn": 45.0, + "detachFromLayout": true, + "widgetId": "i3whp03wf0", + "topRow": 13.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "canOutsideClickClose": true, + "type": "MODAL_WIDGET", + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "shouldScrollContents": false, + "isLoading": false, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas3", + "rightColumn": 453.1875, + "detachFromLayout": true, + "widgetId": "zi8fjakv8o", + "topRow": 0.0, + "bottomRow": 230.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": true, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "i3whp03wf0", + "shouldScrollContents": false, + "minHeight": 240.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Alert_text", + "rightColumn": 41.0, + "textAlign": "LEFT", + "widgetId": "reyoxo4oec", + "topRow": 1.0, + "bottomRow": 5.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "Delete Row" + }, { + "widgetName": "Button1", + "rightColumn": 46.0, + "onClick": "{{closeModal('Delete_Modal')}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03B365", + "widgetId": "lryg8kw537", + "topRow": 17.0, + "bottomRow": 21.0, + "isVisible": "true", + "type": "BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 34.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Cancel", + "isDisabled": false + }, { + "widgetName": "Delete_Button", + "rightColumn": 64.0, + "onClick": "{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [{ + "key": "onClick" + }], + "buttonColor": "#F22B2B", + "widgetId": "qq02lh7ust", + "topRow": 17.0, + "bottomRow": 21.0, + "isVisible": "true", + "type": "BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 48.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Confirm", + "isDisabled": false + }, { + "widgetName": "Text12", + "rightColumn": 63.0, + "textAlign": "LEFT", + "widgetId": "48uac29g6e", + "topRow": 8.0, + "bottomRow": 12.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "parentColumnSpace": 6.875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Are you sure you want to delete this item?" + }], + "isDisabled": false + }], + "width": 456.0, + "height": 240.0 + }, { + "widgetName": "Insert_Modal", + "rightColumn": 41.0, + "detachFromLayout": true, + "widgetId": "vmorzie6eq", + "topRow": 16.0, + "bottomRow": 40.0, + "parentRowSpace": 10.0, + "canOutsideClickClose": true, + "type": "MODAL_WIDGET", + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "shouldScrollContents": false, + "isLoading": false, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 17.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas4", + "rightColumn": 453.1875, + "detachFromLayout": true, + "widgetId": "9rhv3ioohq", + "topRow": 0.0, + "bottomRow": 610.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": true, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "vmorzie6eq", + "shouldScrollContents": false, + "minHeight": 600.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Form2", + "backgroundColor": "#F6F7F8", + "rightColumn": 64.0, + "widgetId": "1ruewbc4ef", + "topRow": 0.0, + "bottomRow": 58.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "FORM_WIDGET", + "parentId": "9rhv3ioohq", + "isLoading": false, + "shouldScrollContents": false, + "parentColumnSpace": 8.0, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas5", + "rightColumn": 224.0, + "detachFromLayout": true, + "widgetId": "tp9pui0e6y", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 570.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "1ruewbc4ef", + "minHeight": 580.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "resetFormOnClick": true, + "widgetName": "insert_button", + "rightColumn": 62.0, + "onClick": "{{InsertQuery.run(() => SelectQuery.run(() => closeModal('Insert_Modal')))}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [{ + "key": "onClick" + }], + "buttonColor": "#03B365", + "widgetId": "h8vxf3oh4s", + "topRow": 51.0, + "bottomRow": 55.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": true, + "leftColumn": 43.0, + "dynamicBindingPathList": [], + "googleRecaptchaKey": "", + "buttonVariant": "PRIMARY", + "text": "Submit" + }, { + "resetFormOnClick": true, + "widgetName": "reset_button", + "rightColumn": 42.0, + "onClick": "{{closeModal('Insert_Modal')}}", + "isDefaultClickDisabled": true, + "buttonColor": "#03B365", + "widgetId": "o23gs26wm5", + "topRow": 51.0, + "bottomRow": 55.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": false, + "leftColumn": 29.0, + "dynamicBindingPathList": [], + "buttonVariant": "SECONDARY", + "text": "Close" + }, { + "widgetName": "Text21", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "cfmxebyn06", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "ID:" + }, { + "isRequired": false, + "widgetName": "insert_col_input1", + "rightColumn": 62.0, + "widgetId": "h1wbbv7alb", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "Autogenerated Field", + "isDisabled": true, + "validation": "true" + }, { + "widgetName": "Text22", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "jsffaxrqhw", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 2.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "guid:" + }, { + "isRequired": true, + "widgetName": "insert_col_input2", + "rightColumn": 62.0, + "widgetId": "6enalyprua", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "defaultText": "", + "placeholderText": "guid", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text23", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "btk60uozsm", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "post_author:" + }, { + "isRequired": true, + "widgetName": "insert_col_input3", + "rightColumn": 62.0, + "widgetId": "e490gfts69", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "post_author", + "defaultText": "", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text14", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "8fm60omwwv", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "post_date:" + }, { + "isRequired": true, + "widgetName": "insert_col_input4", + "rightColumn": 62.0, + "widgetId": "r55cydp0ao", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "post_date", + "defaultText": "", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text24", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "9t3vdjd5xj", + "topRow": 33.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "post_date_gmt:" + }, { + "isRequired": true, + "widgetName": "insert_col_input5", + "rightColumn": 62.0, + "widgetId": "5rfqxgj0vm", + "topRow": 33.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "post_date_gmt", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text13Copy", + "rightColumn": 35.0, + "textAlign": "LEFT", + "widgetId": "18x7vdv3gs", + "topRow": 0.0, + "bottomRow": 4.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "shouldScroll": false, + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "Insert Row" + }] + }] + }], + "isDisabled": false + }], + "width": 532.0, + "height": 600.0 + }, { + "widgetName": "Form1", + "backgroundColor": "white", + "rightColumn": 64.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "m7dvlazbn7", + "topRow": 73.0, + "bottomRow": 124.0, + "parentRowSpace": 10.0, + "isVisible": "{{!!Table1.selectedRow.ID}}", + "type": "FORM_WIDGET", + "parentId": "0", + "isLoading": false, + "shouldScrollContents": true, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 32.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "children": [{ + "widgetName": "Canvas2", + "rightColumn": 528.71875, + "detachFromLayout": true, + "widgetId": "cicukwhp5j", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 450.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "m7dvlazbn7", + "minHeight": 460.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Text20Copy", + "rightColumn": 13.0, + "textAlign": "RIGHT", + "widgetId": "1sjs79otqs", + "topRow": 28.0, + "bottomRow": 32.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Author" + }, { + "widgetName": "author", + "isFilterable": false, + "displayName": "Select", + "iconSVG": "/static/media/icon.bd99caba.svg", + "labelText": "", + "topRow": 28.0, + "bottomRow": 35.0, + "parentRowSpace": 10.0, + "type": "DROP_DOWN_WIDGET", + "serverSideFiltering": false, + "hideCard": false, + "defaultOptionValue": "{{Table1.selectedRow.post_author\n}}", + "selectionType": "SINGLE_SELECT", + "animateLoading": true, + "parentColumnSpace": 12.16796875, + "dynamicTriggerPathList": [], + "leftColumn": 13.0, + "dynamicBindingPathList": [{ + "key": "defaultOptionValue" + }, { + "key": "options" + }], + "options": "{{GetUsers.data.map(({id:value,user_nicename:label})=>({value,label}))}}", + "placeholderText": "Select option", + "isDisabled": false, + "key": "csk41khcun", + "isRequired": false, + "rightColumn": 63.0, + "widgetId": "7c1l22596b", + "isVisible": true, + "version": 1.0, + "parentId": "cicukwhp5j", + "renderMode": "CANVAS", + "isLoading": false + }, { + "resetFormOnClick": false, + "widgetName": "update_button", + "rightColumn": 63.0, + "onClick": "{{UpdateQuery.run(() => SelectQuery.run(), () => showAlert('Error while updating resource!','error'))}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03B365", + "widgetId": "4gnygu5jew", + "topRow": 36.0, + "bottomRow": 40.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "cicukwhp5j", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": true, + "leftColumn": 42.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Update" + }, { + "resetFormOnClick": true, + "widgetName": "reset_update_button", + "rightColumn": 41.0, + "onClick": "", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03b365", + "widgetId": "twwgpz5wfu", + "topRow": 36.0, + "bottomRow": 40.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "cicukwhp5j", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": false, + "leftColumn": 27.0, + "dynamicBindingPathList": [], + "buttonVariant": "SECONDARY", + "text": "Reset" + }, { + "isRequired": true, + "widgetName": "title", + "rightColumn": 63.0, + "widgetId": "in8e51pg3y", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 13.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.post_title}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": false, + "widgetName": "excerpt", + "rightColumn": 63.0, + "widgetId": "mlhvfasf31", + "topRow": 10.0, + "bottomRow": 20.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 13.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.post_excerpt}}", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text9", + "rightColumn": 63.0, + "textAlign": "LEFT", + "widgetId": "4hnz8ktmz5", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [{ + "key": "text" + }], + "fontSize": "HEADING1", + "text": "Update Post: {{Table1.selectedRow.post_title}}" + }, { + "widgetName": "Text17", + "rightColumn": 13.0, + "textAlign": "RIGHT", + "widgetId": "afzzc7q8af", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Title" + }, { + "widgetName": "Text18", + "rightColumn": 13.0, + "textAlign": "RIGHT", + "widgetId": "xqcsd2e5dj", + "topRow": 10.0, + "bottomRow": 14.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Excerpt" + }, { + "widgetName": "Text20", + "rightColumn": 13.0, + "textAlign": "RIGHT", + "widgetId": "gqpwf0yng6", + "topRow": 21.0, + "bottomRow": 25.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Post status" + }, { + "widgetName": "p_status", + "isFilterable": false, + "displayName": "Select", + "iconSVG": "/static/media/icon.bd99caba.svg", + "labelText": "", + "topRow": 21.0, + "bottomRow": 28.0, + "parentRowSpace": 10.0, + "type": "DROP_DOWN_WIDGET", + "serverSideFiltering": false, + "hideCard": false, + "defaultOptionValue": "{{Table1.selectedRow.post_status}}", + "selectionType": "SINGLE_SELECT", + "animateLoading": true, + "parentColumnSpace": 9.59375, + "dynamicTriggerPathList": [], + "leftColumn": 13.0, + "dynamicBindingPathList": [{ + "key": "defaultOptionValue" + }], + "options": "[\n {\n \"label\": \"Publish\",\n \"value\": \"publish\"\n },\n {\n \"label\": \"Draft\",\n \"value\": \"draft\"\n },\n {\n \"label\": \"Auto draft\",\n \"value\": \"auto-draft\"\n }\n]", + "placeholderText": "Select option", + "isDisabled": false, + "key": "mlwomqyu3s", + "isRequired": false, + "rightColumn": 63.0, + "widgetId": "lo0yxls487", + "isVisible": true, + "version": 1.0, + "parentId": "cicukwhp5j", + "renderMode": "CANVAS", + "isLoading": false + }] + }] + }, { + "boxShadow": "NONE", + "widgetName": "Container2", + "borderColor": "transparent", + "isCanvas": true, + "displayName": "Container", + "iconSVG": "/static/media/icon.1977dca3.svg", + "topRow": 17.0, + "bottomRow": 71.0, + "parentRowSpace": 10.0, + "type": "CONTAINER_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 22.1875, + "leftColumn": 32.0, + "children": [{ + "widgetName": "Canvas6", + "rightColumn": 532.5, + "detachFromLayout": true, + "displayName": "Canvas", + "widgetId": "ns44diaamt", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 490.0, + "parentRowSpace": 1.0, + "isVisible": true, + "type": "CANVAS_WIDGET", + "canExtend": false, + "version": 1.0, + "hideCard": true, + "parentId": "z86ak9za7r", + "minHeight": 400.0, + "renderMode": "CANVAS", + "isLoading": false, + "parentColumnSpace": 1.0, + "leftColumn": 0.0, + "children": [{ + "widgetName": "Text25", + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b52.svg", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 12.16796875, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [{ + "key": "text" + }], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "{{Table1.selectedRow.post_title}}", + "key": "6pacxcck35", + "rightColumn": 64.0, + "textAlign": "LEFT", + "widgetId": "lhjdqceozq", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#231F20", + "shouldScroll": false, + "version": 1.0, + "parentId": "ns44diaamt", + "renderMode": "CANVAS", + "isLoading": false, + "fontSize": "HEADING1" + }, { + "widgetName": "Text26", + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b52.svg", + "topRow": 9.0, + "bottomRow": 47.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 12.16796875, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [{ + "key": "text" + }], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "{{Table1.selectedRow.post_content}}", + "key": "6pacxcck35", + "rightColumn": 64.0, + "textAlign": "LEFT", + "widgetId": "msnx2elzmi", + "isVisible": true, + "fontStyle": "", + "textColor": "#231F20", + "shouldScroll": false, + "version": 1.0, + "parentId": "ns44diaamt", + "renderMode": "CANVAS", + "isLoading": false, + "fontSize": "PARAGRAPH" + }], + "key": "m1q7rvnf0q" + }], + "borderWidth": "0", + "key": "6q011hdwm8", + "backgroundColor": "#FFFFFF", + "rightColumn": 64.0, + "widgetId": "z86ak9za7r", + "containerStyle": "card", + "isVisible": true, + "version": 1.0, + "parentId": "0", + "renderMode": "CANVAS", + "isLoading": false, + "borderRadius": "0" + }, { + "widgetName": "categories", + "displayName": "MultiSelect", + "iconSVG": "/static/media/icon.a3495809.svg", + "labelText": "", + "topRow": 9.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "type": "MULTI_SELECT_WIDGET", + "serverSideFiltering": false, + "hideCard": false, + "defaultOptionValue": "[0]", + "animateLoading": true, + "parentColumnSpace": 22.1875, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 6.0, + "dynamicBindingPathList": [{ + "key": "options" + }], + "options": "{{GetCategories.data.map(cat=>({label:cat.name,value:cat.term_id}))}}", + "placeholderText": "Select categories", + "isDisabled": false, + "key": "o2jl2eb348", + "isRequired": false, + "rightColumn": 26.0, + "widgetId": "n2sv5nbi06", + "isVisible": true, + "version": 1.0, + "parentId": "0", + "renderMode": "CANVAS", + "isLoading": false, + "onOptionChange": "{{SelectQuery.run()}}" + }, { + "widgetName": "Text27", + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b52.svg", + "topRow": 10.0, + "bottomRow": 14.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 22.1875, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "Show posts from", + "key": "kf4mmyg152", + "rightColumn": 6.0, + "textAlign": "LEFT", + "widgetId": "mywn2w5z48", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#231F20", + "shouldScroll": false, + "version": 1.0, + "parentId": "0", + "renderMode": "CANVAS", + "isLoading": false, + "fontSize": "PARAGRAPH" + }, { + "widgetName": "Text28", + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b52.svg", + "topRow": 0.0, + "bottomRow": 7.0, + "parentRowSpace": 10.0, + "type": "TEXT_WIDGET", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 22.1875, + "dynamicTriggerPathList": [], + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "A Simple Blog Admin", + "key": "kf4mmyg152", + "rightColumn": 37.0, + "textAlign": "CENTER", + "widgetId": "3k35414uwf", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#231F20", + "shouldScroll": false, + "version": 1.0, + "parentId": "0", + "renderMode": "CANVAS", + "isLoading": false, + "fontSize": "HEADING1" + }, { + "widgetName": "Table2", + "defaultPageSize": 0.0, + "columnOrder": ["comment_ID", "comment_post_ID", "comment_author", "comment_author_email", "comment_author_url", "comment_author_IP", "comment_date", "comment_date_gmt", "comment_content", "comment_karma", "comment_approved", "comment_agent", "comment_type", "comment_parent", "user_id"], + "isVisibleDownload": true, + "dynamicPropertyPathList": [], + "displayName": "Table", + "iconSVG": "/static/media/icon.db8a9cbd.svg", + "topRow": 125.0, + "bottomRow": 186.0, + "isSortable": true, + "parentRowSpace": 10.0, + "type": "TABLE_WIDGET", + "defaultSelectedRow": "0", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 30.234375, + "dynamicTriggerPathList": [], + "dynamicBindingPathList": [{ + "key": "tableData" + }, { + "key": "primaryColumns.comment_ID.computedValue" + }, { + "key": "primaryColumns.comment_post_ID.computedValue" + }, { + "key": "primaryColumns.comment_author.computedValue" + }, { + "key": "primaryColumns.comment_author_email.computedValue" + }, { + "key": "primaryColumns.comment_author_url.computedValue" + }, { + "key": "primaryColumns.comment_author_IP.computedValue" + }, { + "key": "primaryColumns.comment_date.computedValue" + }, { + "key": "primaryColumns.comment_date_gmt.computedValue" + }, { + "key": "primaryColumns.comment_content.computedValue" + }, { + "key": "primaryColumns.comment_karma.computedValue" + }, { + "key": "primaryColumns.comment_approved.computedValue" + }, { + "key": "primaryColumns.comment_agent.computedValue" + }, { + "key": "primaryColumns.comment_type.computedValue" + }, { + "key": "primaryColumns.comment_parent.computedValue" + }, { + "key": "primaryColumns.user_id.computedValue" + }], + "leftColumn": 0.0, + "primaryColumns": { + "comment_ID": { + "index": 0.0, + "width": 150.0, + "id": "comment_ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_ID", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_ID))}}" + }, + "comment_post_ID": { + "index": 1.0, + "width": 150.0, + "id": "comment_post_ID", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_post_ID", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_post_ID))}}" + }, + "comment_author": { + "index": 2.0, + "width": 150.0, + "id": "comment_author", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_author", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_author))}}" + }, + "comment_author_email": { + "index": 3.0, + "width": 150.0, + "id": "comment_author_email", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_author_email", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_email))}}" + }, + "comment_author_url": { + "index": 4.0, + "width": 150.0, + "id": "comment_author_url", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_author_url", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_url))}}" + }, + "comment_author_IP": { + "index": 5.0, + "width": 150.0, + "id": "comment_author_IP", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_author_IP", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_author_IP))}}" + }, + "comment_date": { + "index": 6.0, + "width": 150.0, + "id": "comment_date", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_date", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_date))}}" + }, + "comment_date_gmt": { + "index": 7.0, + "width": 150.0, + "id": "comment_date_gmt", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_date_gmt", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_date_gmt))}}" + }, + "comment_content": { + "index": 8.0, + "width": 150.0, + "id": "comment_content", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_content", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_content))}}" + }, + "comment_karma": { + "index": 9.0, + "width": 150.0, + "id": "comment_karma", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_karma", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_karma))}}" + }, + "comment_approved": { + "index": 10.0, + "width": 150.0, + "id": "comment_approved", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_approved", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_approved))}}" + }, + "comment_agent": { + "index": 11.0, + "width": 150.0, + "id": "comment_agent", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_agent", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_agent))}}" + }, + "comment_type": { + "index": 12.0, + "width": 150.0, + "id": "comment_type", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_type", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_type))}}" + }, + "comment_parent": { + "index": 13.0, + "width": 150.0, + "id": "comment_parent", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "comment_parent", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.comment_parent))}}" + }, + "user_id": { + "index": 14.0, + "width": 150.0, + "id": "user_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "user_id", + "computedValue": "{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.user_id))}}" + } + }, + "delimiter": ",", + "key": "3o40dz6neg", + "derivedColumns": {}, + "rightColumn": 64.0, + "textSize": "PARAGRAPH", + "widgetId": "0w2wtazhe9", + "isVisibleFilters": true, + "tableData": "{{GetComments.data}}", + "isVisible": true, + "label": "Data", + "searchKey": "", + "enableClientSideSearch": true, + "version": 3.0, + "totalRecordsCount": 0.0, + "parentId": "0", + "renderMode": "CANVAS", + "isLoading": false, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "isVisiblePagination": true, + "verticalAlignment": "CENTER", + "columnSizeMap": { + "task": 245.0, + "step": 62.0, + "status": 75.0 + } + }, { + "widgetName": "Modal1", + "isCanvas": true, + "displayName": "Modal", + "iconSVG": "/static/media/icon.4975978e.svg", + "topRow": 7.0, + "bottomRow": 31.0, + "parentRowSpace": 10.0, + "type": "MODAL_WIDGET", + "hideCard": false, + "shouldScrollContents": true, + "animateLoading": true, + "parentColumnSpace": 19.8125, + "leftColumn": 38.0, + "children": [{ + "widgetName": "Canvas7", + "displayName": "Canvas", + "topRow": 0.0, + "bottomRow": 760.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "hideCard": true, + "shouldScrollContents": false, + "minHeight": 770.0, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Icon1", + "rightColumn": 64.0, + "onClick": "{{closeModal('Modal1')}}", + "color": "#040627", + "iconName": "cross", + "displayName": "Icon", + "iconSVG": "/static/media/icon.31d6cfe0.svg", + "widgetId": "hmgi4boxq2", + "topRow": 1.0, + "bottomRow": 5.0, + "isVisible": true, + "type": "ICON_WIDGET", + "version": 1.0, + "hideCard": true, + "parentId": "76vv2ztsz3", + "renderMode": "CANVAS", + "isLoading": false, + "leftColumn": 56.0, + "iconSize": 24.0, + "key": "o7daf79fmd" + }, { + "widgetName": "Text29", + "displayName": "Text", + "iconSVG": "/static/media/icon.97c59b52.svg", + "topRow": 1.0, + "bottomRow": 5.0, + "type": "TEXT_WIDGET", + "hideCard": false, + "animateLoading": true, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "shouldTruncate": false, + "truncateButtonColor": "#FFC13D", + "text": "Post Comments", + "key": "brfs5vee1o", + "rightColumn": 41.0, + "textAlign": "LEFT", + "widgetId": "53g2qiabn4", + "isVisible": true, + "fontStyle": "BOLD", + "textColor": "#231F20", + "shouldScroll": false, + "version": 1.0, + "parentId": "76vv2ztsz3", + "renderMode": "CANVAS", + "isLoading": false, + "fontSize": "HEADING1" + }, { + "widgetName": "Button2", + "onClick": "{{closeModal('Modal1')}}", + "buttonColor": "#03B365", + "displayName": "Button", + "iconSVG": "/static/media/icon.cca02633.svg", + "topRow": 70.0, + "bottomRow": 74.0, + "type": "BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "leftColumn": 38.0, + "text": "Close", + "isDisabled": false, + "key": "5m8dfthjur", + "rightColumn": 50.0, + "isDefaultClickDisabled": true, + "widgetId": "xuk880axit", + "buttonStyle": "PRIMARY", + "isVisible": true, + "recaptchaType": "V3", + "version": 1.0, + "parentId": "76vv2ztsz3", + "renderMode": "CANVAS", + "isLoading": false, + "buttonVariant": "SECONDARY", + "placement": "CENTER" + }, { + "widgetName": "Button3", + "buttonColor": "#03B365", + "displayName": "Button", + "iconSVG": "/static/media/icon.cca02633.svg", + "topRow": 70.0, + "bottomRow": 74.0, + "type": "BUTTON_WIDGET", + "hideCard": false, + "animateLoading": true, + "leftColumn": 50.0, + "text": "Confirm", + "isDisabled": false, + "key": "5m8dfthjur", + "rightColumn": 62.0, + "isDefaultClickDisabled": true, + "widgetId": "1qemf70h8t", + "buttonStyle": "PRIMARY_BUTTON", + "isVisible": true, + "recaptchaType": "V3", + "version": 1.0, + "parentId": "76vv2ztsz3", + "renderMode": "CANVAS", + "isLoading": false, + "buttonVariant": "PRIMARY", + "placement": "CENTER" + }, { + "widgetName": "Table3", + "defaultPageSize": 0.0, + "columnOrder": ["step", "task", "status", "action"], + "isVisibleDownload": true, + "displayName": "Table", + "iconSVG": "/static/media/icon.db8a9cbd.svg", + "topRow": 7.0, + "bottomRow": 61.0, + "isSortable": true, + "parentRowSpace": 10.0, + "type": "TABLE_WIDGET", + "defaultSelectedRow": "0", + "hideCard": false, + "animateLoading": true, + "parentColumnSpace": 14.96875, + "dynamicTriggerPathList": [], + "dynamicBindingPathList": [{ + "key": "primaryColumns.step.computedValue" + }, { + "key": "primaryColumns.task.computedValue" + }, { + "key": "primaryColumns.status.computedValue" + }, { + "key": "primaryColumns.action.computedValue" + }, { + "key": "tableData" + }], + "leftColumn": 1.0, + "primaryColumns": { + "step": { + "index": 0.0, + "width": 150.0, + "id": "step", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isCellVisible": true, + "isDerived": false, + "label": "step", + "computedValue": "{{Table3.sanitizedTableData.map((currentRow) => ( currentRow.step))}}", + "buttonColor": "#03B365", + "menuColor": "#03B365", + "labelColor": "#FFFFFF" + }, + "task": { + "index": 1.0, + "width": 150.0, + "id": "task", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isCellVisible": true, + "isDerived": false, + "label": "task", + "computedValue": "{{Table3.sanitizedTableData.map((currentRow) => ( currentRow.task))}}", + "buttonColor": "#03B365", + "menuColor": "#03B365", + "labelColor": "#FFFFFF" + }, + "status": { + "index": 2.0, + "width": 150.0, + "id": "status", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isCellVisible": true, + "isDerived": false, + "label": "status", + "computedValue": "{{Table3.sanitizedTableData.map((currentRow) => ( currentRow.status))}}", + "buttonColor": "#03B365", + "menuColor": "#03B365", + "labelColor": "#FFFFFF" + }, + "action": { + "index": 3.0, + "width": 150.0, + "id": "action", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "button", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isCellVisible": true, + "isDisabled": false, + "isDerived": false, + "label": "action", + "onClick": "{{currentRow.step === '#1' ? showAlert('Done', 'success') : currentRow.step === '#2' ? navigateTo('https://docs.appsmith.com/core-concepts/connecting-to-data-sources/querying-a-database',undefined,'NEW_WINDOW') : navigateTo('https://docs.appsmith.com/core-concepts/displaying-data-read/display-data-tables',undefined,'NEW_WINDOW')}}", + "computedValue": "{{Table3.sanitizedTableData.map((currentRow) => ( currentRow.action))}}", + "buttonColor": "#03B365", + "menuColor": "#03B365", + "labelColor": "#FFFFFF" + } + }, + "delimiter": ",", + "key": "mcujxyczb9", + "derivedColumns": {}, + "rightColumn": 63.0, + "textSize": "PARAGRAPH", + "widgetId": "iyd643nar2", + "isVisibleFilters": true, + "tableData": "{{GetComments.data}}", + "isVisible": true, + "label": "Data", + "searchKey": "", + "enableClientSideSearch": true, + "version": 3.0, + "totalRecordsCount": 0.0, + "parentId": "76vv2ztsz3", + "renderMode": "CANVAS", + "isLoading": false, + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "isVisiblePagination": true, + "verticalAlignment": "CENTER", + "columnSizeMap": { + "task": 245.0, + "step": 62.0, + "status": 75.0 + } + }], + "isDisabled": false, + "key": "r6kp6re5b6", + "rightColumn": 475.5, + "detachFromLayout": true, + "widgetId": "76vv2ztsz3", + "isVisible": true, + "version": 1.0, + "parentId": "wmh1lgly6x", + "renderMode": "CANVAS", + "isLoading": false + }], + "key": "x9fztaaory", + "height": 770.0, + "rightColumn": 62.0, + "detachFromLayout": true, + "widgetId": "wmh1lgly6x", + "canOutsideClickClose": true, + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "renderMode": "CANVAS", + "isLoading": false, + "width": 970.0 + }] + }, + "layoutOnLoadActions": [ + [{ + "id": "Blog_GetUsers", + "name": "GetUsers", + "pluginType": "DB", + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "Table1.searchText || \"\"", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "timeoutInMillisecond": 10000.0 + }, { + "id": "Blog_SelectQuery", + "name": "SelectQuery", + "pluginType": "DB", + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "categories.selectedOptionValues.reduce((str,value)=>`${str},${value}`,'0')", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "timeoutInMillisecond": 10000.0 + }], + [{ + "id": "Blog_GetComments", + "name": "GetComments", + "pluginType": "DB", + "jsonPathKeys": ["Table1.selectedRow.ID"], + "timeoutInMillisecond": 10000.0 + }], + [{ + "id": "Blog_GetCategories", + "name": "GetCategories", + "pluginType": "DB", + "jsonPathKeys": [], + "timeoutInMillisecond": 10000.0 + }] + ], + "validOnPageLoadActions": true, + "id": "Blog", + "deleted": false, + "policies": [], + "userPermissions": [] + }], + "userPermissions": [], + "policies": [], + "isHidden": false + }, + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61efc19939a0da5942775f10" + }, { + "unpublishedPage": { + "name": "WP Options", + "slug": "wp-options", + "layouts": [{ + "viewMode": false, + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 1280.0, + "snapColumns": 64.0, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0.0, + "bottomRow": 890.0, + "containerStyle": "none", + "snapRows": 125.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 51.0, + "minHeight": 900.0, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "dynamicBindingPathList": [], + "leftColumn": 0.0, + "children": [{ + "backgroundColor": "#FFFFFF", + "widgetName": "Container1", + "rightColumn": 40.0, + "widgetId": "mvubsemxfo", + "containerStyle": "card", + "topRow": 0.0, + "bottomRow": 87.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "CONTAINER_WIDGET", + "version": 1.0, + "parentId": "0", + "isLoading": false, + "parentColumnSpace": 19.75, + "leftColumn": 0.0, + "children": [{ + "widgetName": "Canvas1", + "rightColumn": 632.0, + "detachFromLayout": true, + "widgetId": "59rw5mx0bq", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 890.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "mvubsemxfo", + "minHeight": 870.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Table1", + "columnOrder": ["option_id", "option_name", "option_value", "autoload", "customColumn1"], + "dynamicPropertyPathList": [{ + "key": "onPageChange" + }], + "isVisibleDownload": true, + "topRow": 10.0, + "bottomRow": 86.0, + "parentRowSpace": 10.0, + "onPageChange": "{{SelectQuery.run()}}", + "isSortable": true, + "type": "TABLE_WIDGET", + "defaultSelectedRow": "0", + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [{ + "key": "onPageChange" + }, { + "key": "primaryColumns.customColumn1.onClick" + }, { + "key": "onSearchTextChanged" + }], + "dynamicBindingPathList": [{ + "key": "primaryColumns.customColumn1.buttonLabel" + }, { + "key": "tableData" + }, { + "key": "primaryColumns.option_id.computedValue" + }, { + "key": "primaryColumns.option_name.computedValue" + }, { + "key": "primaryColumns.option_value.computedValue" + }, { + "key": "primaryColumns.autoload.computedValue" + }], + "leftColumn": 0.0, + "primaryColumns": { + "customColumn1": { + "isCellVisible": true, + "isDerived": true, + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.customColumn1))}}", + "onClick": "{{showModal('Delete_Modal')}}", + "textSize": "PARAGRAPH", + "buttonColor": "#DD4B34", + "index": 7.0, + "isVisible": true, + "label": "Delete", + "buttonLabel": "{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}", + "columnType": "button", + "horizontalAlignment": "LEFT", + "width": 150.0, + "enableFilter": true, + "enableSort": true, + "id": "customColumn1", + "isDisabled": false, + "buttonLabelColor": "#FFFFFF", + "verticalAlignment": "CENTER" + }, + "option_id": { + "index": 0.0, + "width": 150.0, + "id": "option_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "option_id", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.option_id))}}" + }, + "option_name": { + "index": 1.0, + "width": 150.0, + "id": "option_name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "option_name", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.option_name))}}" + }, + "option_value": { + "index": 2.0, + "width": 150.0, + "id": "option_value", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "option_value", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.option_value))}}" + }, + "autoload": { + "index": 3.0, + "width": 150.0, + "id": "autoload", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "autoload", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.autoload))}}" + } + }, + "delimiter": ",", + "derivedColumns": { + "customColumn1": { + "isDerived": true, + "computedValue": "", + "onClick": "{{DeleteQuery.run()}}", + "textSize": "PARAGRAPH", + "buttonStyle": "#DD4B34", + "index": 7.0, + "isVisible": true, + "label": "customColumn1", + "buttonLabel": "{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}", + "columnType": "button", + "horizontalAlignment": "LEFT", + "width": 150.0, + "enableFilter": true, + "enableSort": true, + "id": "customColumn1", + "buttonLabelColor": "#FFFFFF", + "verticalAlignment": "CENTER" + } + }, + "rightColumn": 64.0, + "textSize": "PARAGRAPH", + "widgetId": "jabdu9f16g", + "isVisibleFilters": true, + "tableData": "", + "isVisible": "true", + "label": "Data", + "searchKey": "", + "version": 3.0, + "parentId": "59rw5mx0bq", + "serverSidePaginationEnabled": true, + "isLoading": false, + "isVisibleCompactMode": true, + "onSearchTextChanged": "{{SelectQuery.run()}}", + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "isVisiblePagination": true, + "verticalAlignment": "CENTER", + "columnSizeMap": { + "task": 245.0, + "deliveryAddress": 170.0, + "step": 62.0, + "id": 228.0, + "status": 75.0 + } + }, { + "isRequired": false, + "widgetName": "col_select", + "isFilterable": true, + "rightColumn": 22.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "asmgosgxjm", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "{{SelectQuery.data.length > 0}}", + "label": "", + "type": "DROP_DOWN_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "defaultOptionValue": "option_id", + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 7.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "options": "[\n{\n\t\"label\": \"autoload\",\n\t\"value\": \"autoload\"\n}, \n{\n\t\"label\": \"option_name\",\n\t\"value\": \"option_name\"\n}, \n{\n\t\"label\": \"option_value\",\n\t\"value\": \"option_value\"\n}, \n{\n\t\"label\": \"option_id\",\n\t\"value\": \"option_id\"\n}]", + "onOptionChange": "{{SelectQuery.run()}}", + "isDisabled": false + }, { + "widgetName": "Text15", + "rightColumn": 7.0, + "textAlign": "LEFT", + "widgetId": "l8pgl90klz", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Order By :" + }, { + "isRequired": false, + "widgetName": "order_select", + "isFilterable": true, + "rightColumn": 33.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "10v8a19m25", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "{{SelectQuery.data.length > 0}}", + "label": "", + "type": "DROP_DOWN_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "defaultOptionValue": "ASC", + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 22.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "options": "[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]", + "onOptionChange": "{{SelectQuery.run()}}", + "isDisabled": false + }, { + "widgetName": "Text16", + "rightColumn": 64.0, + "textAlign": "LEFT", + "widgetId": "urzv99hdc8", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 11.78515625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "perf_options Data" + }, { + "boxShadow": "NONE", + "widgetName": "refresh_btn", + "rightColumn": 64.0, + "onClick": "{{SelectQuery.run()}}", + "iconName": "refresh", + "buttonColor": "#03B365", + "widgetId": "2jj0197tff", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "ICON_BUTTON_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 12.0703125, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "borderRadius": "CIRCLE", + "leftColumn": 60.0, + "dynamicBindingPathList": [], + "buttonVariant": "TERTIARY", + "isDisabled": false + }, { + "boxShadow": "NONE", + "widgetName": "add_btn", + "rightColumn": 60.0, + "onClick": "{{showModal('Insert_Modal')}}", + "iconName": "add", + "buttonColor": "#03B365", + "widgetId": "kby34l9nbb", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "ICON_BUTTON_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 12.0703125, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "borderRadius": "CIRCLE", + "leftColumn": 56.0, + "dynamicBindingPathList": [], + "buttonVariant": "TERTIARY", + "isDisabled": false + }] + }] + }, { + "widgetName": "Delete_Modal", + "rightColumn": 45.0, + "detachFromLayout": true, + "widgetId": "i3whp03wf0", + "topRow": 13.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "canOutsideClickClose": true, + "type": "MODAL_WIDGET", + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "shouldScrollContents": false, + "isLoading": false, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas3", + "rightColumn": 453.1875, + "detachFromLayout": true, + "widgetId": "zi8fjakv8o", + "topRow": 0.0, + "bottomRow": 230.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": true, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "i3whp03wf0", + "shouldScrollContents": false, + "minHeight": 240.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Alert_text", + "rightColumn": 41.0, + "textAlign": "LEFT", + "widgetId": "reyoxo4oec", + "topRow": 1.0, + "bottomRow": 5.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "Delete Row" + }, { + "widgetName": "Button1", + "rightColumn": 46.0, + "onClick": "{{closeModal('Delete_Modal')}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03B365", + "widgetId": "lryg8kw537", + "topRow": 17.0, + "bottomRow": 21.0, + "isVisible": "true", + "type": "BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 34.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Cancel", + "isDisabled": false + }, { + "widgetName": "Delete_Button", + "rightColumn": 64.0, + "onClick": "{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [{ + "key": "onClick" + }], + "buttonColor": "#F22B2B", + "widgetId": "qq02lh7ust", + "topRow": 17.0, + "bottomRow": 21.0, + "isVisible": "true", + "type": "BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 48.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Confirm", + "isDisabled": false + }, { + "widgetName": "Text12", + "rightColumn": 63.0, + "textAlign": "LEFT", + "widgetId": "48uac29g6e", + "topRow": 8.0, + "bottomRow": 12.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "parentColumnSpace": 6.875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Are you sure you want to delete this item?" + }], + "isDisabled": false + }], + "width": 456.0, + "height": 240.0 + }, { + "widgetName": "Insert_Modal", + "rightColumn": 41.0, + "detachFromLayout": true, + "widgetId": "vmorzie6eq", + "topRow": 16.0, + "bottomRow": 40.0, + "parentRowSpace": 10.0, + "canOutsideClickClose": true, + "type": "MODAL_WIDGET", + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "shouldScrollContents": false, + "isLoading": false, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 17.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas4", + "rightColumn": 453.1875, + "detachFromLayout": true, + "widgetId": "9rhv3ioohq", + "topRow": 0.0, + "bottomRow": 610.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": true, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "vmorzie6eq", + "shouldScrollContents": false, + "minHeight": 600.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Form2", + "backgroundColor": "#F6F7F8", + "rightColumn": 64.0, + "widgetId": "1ruewbc4ef", + "topRow": 0.0, + "bottomRow": 58.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "FORM_WIDGET", + "parentId": "9rhv3ioohq", + "isLoading": false, + "shouldScrollContents": false, + "parentColumnSpace": 8.0, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas5", + "rightColumn": 224.0, + "detachFromLayout": true, + "widgetId": "tp9pui0e6y", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 570.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "1ruewbc4ef", + "minHeight": 580.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "resetFormOnClick": true, + "widgetName": "insert_button", + "rightColumn": 62.0, + "onClick": "{{InsertQuery.run(() => SelectQuery.run(() => closeModal('Insert_Modal')))}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [{ + "key": "onClick" + }], + "buttonColor": "#03B365", + "widgetId": "h8vxf3oh4s", + "topRow": 51.0, + "bottomRow": 55.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": true, + "leftColumn": 43.0, + "dynamicBindingPathList": [], + "googleRecaptchaKey": "", + "buttonVariant": "PRIMARY", + "text": "Submit" + }, { + "resetFormOnClick": true, + "widgetName": "reset_button", + "rightColumn": 42.0, + "onClick": "{{closeModal('Insert_Modal')}}", + "isDefaultClickDisabled": true, + "buttonColor": "#03B365", + "widgetId": "o23gs26wm5", + "topRow": 51.0, + "bottomRow": 55.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": false, + "leftColumn": 29.0, + "dynamicBindingPathList": [], + "buttonVariant": "SECONDARY", + "text": "Close" + }, { + "widgetName": "Text21", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "cfmxebyn06", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "option_id:" + }, { + "isRequired": false, + "widgetName": "insert_col_input1", + "rightColumn": 62.0, + "widgetId": "h1wbbv7alb", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "Autogenerated Field", + "isDisabled": true, + "validation": "true" + }, { + "widgetName": "Text22", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "jsffaxrqhw", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 2.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "option_name:" + }, { + "isRequired": true, + "widgetName": "insert_col_input2", + "rightColumn": 62.0, + "widgetId": "6enalyprua", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "defaultText": "", + "placeholderText": "option_name", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text23", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "btk60uozsm", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "option_value:" + }, { + "isRequired": true, + "widgetName": "insert_col_input3", + "rightColumn": 62.0, + "widgetId": "e490gfts69", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "option_value", + "defaultText": "", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text14", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "8fm60omwwv", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "autoload:" + }, { + "isRequired": true, + "widgetName": "insert_col_input4", + "rightColumn": 62.0, + "widgetId": "r55cydp0ao", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "autoload", + "defaultText": "", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text13Copy", + "rightColumn": 35.0, + "textAlign": "LEFT", + "widgetId": "18x7vdv3gs", + "topRow": 0.0, + "bottomRow": 4.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "shouldScroll": false, + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "Insert Row" + }] + }] + }], + "isDisabled": false + }], + "width": 532.0, + "height": 600.0 + }, { + "widgetName": "Form1", + "backgroundColor": "white", + "rightColumn": 64.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "m7dvlazbn7", + "topRow": 0.0, + "bottomRow": 46.0, + "parentRowSpace": 10.0, + "isVisible": "{{!!Table1.selectedRow.option_id}}", + "type": "FORM_WIDGET", + "parentId": "0", + "isLoading": false, + "shouldScrollContents": true, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 40.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "children": [{ + "widgetName": "Canvas2", + "rightColumn": 528.71875, + "detachFromLayout": true, + "widgetId": "cicukwhp5j", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 450.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "m7dvlazbn7", + "minHeight": 460.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "resetFormOnClick": false, + "widgetName": "update_button", + "rightColumn": 63.0, + "onClick": "{{UpdateQuery.run(() => SelectQuery.run(), () => showAlert('Error while updating resource!','error'))}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03B365", + "widgetId": "4gnygu5jew", + "topRow": 39.0, + "bottomRow": 43.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "cicukwhp5j", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": true, + "leftColumn": 42.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Update" + }, { + "resetFormOnClick": true, + "widgetName": "reset_update_button", + "rightColumn": 42.0, + "onClick": "", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03b365", + "widgetId": "twwgpz5wfu", + "topRow": 39.0, + "bottomRow": 43.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "cicukwhp5j", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": false, + "leftColumn": 28.0, + "dynamicBindingPathList": [], + "buttonVariant": "SECONDARY", + "text": "Reset" + }, { + "isRequired": true, + "widgetName": "update_col_2", + "rightColumn": 63.0, + "widgetId": "in8e51pg3y", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.option_name}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": true, + "widgetName": "update_col_3", + "rightColumn": 63.0, + "widgetId": "mlhvfasf31", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.option_value}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": true, + "widgetName": "update_col_4", + "rightColumn": 63.0, + "widgetId": "0lz9vhcnr0", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.autoload}}", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text9", + "rightColumn": 63.0, + "textAlign": "LEFT", + "widgetId": "4hnz8ktmz5", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [{ + "key": "text" + }], + "fontSize": "HEADING1", + "text": "Update Row: {{Table1.selectedRow.option_id}}" + }, { + "widgetName": "Text17", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "afzzc7q8af", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "option_name:" + }, { + "widgetName": "Text18", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "xqcsd2e5dj", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "option_value:" + }, { + "widgetName": "Text19", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "l109ilp3vq", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "autoload:" + }] + }] + }] + }, + "layoutOnLoadActions": [ + [{ + "id": "WP Options_SelectQuery", + "name": "SelectQuery", + "pluginType": "DB", + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "Table1.searchText || \"\"", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "timeoutInMillisecond": 10000.0 + }] + ], + "validOnPageLoadActions": true, + "id": "WP Options", + "deleted": false, + "policies": [], + "userPermissions": [] + }], + "userPermissions": [], + "policies": [], + "isHidden": false + }, + "publishedPage": { + "name": "WP Options", + "slug": "wp-options", + "layouts": [{ + "viewMode": false, + "dsl": { + "widgetName": "MainContainer", + "backgroundColor": "none", + "rightColumn": 1280.0, + "snapColumns": 64.0, + "detachFromLayout": true, + "widgetId": "0", + "topRow": 0.0, + "bottomRow": 890.0, + "containerStyle": "none", + "snapRows": 125.0, + "parentRowSpace": 1.0, + "type": "CANVAS_WIDGET", + "canExtend": true, + "version": 51.0, + "minHeight": 900.0, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "dynamicBindingPathList": [], + "leftColumn": 0.0, + "children": [{ + "backgroundColor": "#FFFFFF", + "widgetName": "Container1", + "rightColumn": 40.0, + "widgetId": "mvubsemxfo", + "containerStyle": "card", + "topRow": 0.0, + "bottomRow": 87.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "CONTAINER_WIDGET", + "version": 1.0, + "parentId": "0", + "isLoading": false, + "parentColumnSpace": 19.75, + "leftColumn": 0.0, + "children": [{ + "widgetName": "Canvas1", + "rightColumn": 632.0, + "detachFromLayout": true, + "widgetId": "59rw5mx0bq", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 890.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "mvubsemxfo", + "minHeight": 870.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Table1", + "columnOrder": ["option_id", "option_name", "option_value", "autoload", "customColumn1"], + "dynamicPropertyPathList": [{ + "key": "onPageChange" + }], + "isVisibleDownload": true, + "topRow": 10.0, + "bottomRow": 86.0, + "parentRowSpace": 10.0, + "onPageChange": "{{SelectQuery.run()}}", + "isSortable": true, + "type": "TABLE_WIDGET", + "defaultSelectedRow": "0", + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [{ + "key": "onPageChange" + }, { + "key": "primaryColumns.customColumn1.onClick" + }, { + "key": "onSearchTextChanged" + }], + "dynamicBindingPathList": [{ + "key": "primaryColumns.customColumn1.buttonLabel" + }, { + "key": "tableData" + }, { + "key": "primaryColumns.option_id.computedValue" + }, { + "key": "primaryColumns.option_name.computedValue" + }, { + "key": "primaryColumns.option_value.computedValue" + }, { + "key": "primaryColumns.autoload.computedValue" + }], + "leftColumn": 0.0, + "primaryColumns": { + "customColumn1": { + "isCellVisible": true, + "isDerived": true, + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.customColumn1))}}", + "onClick": "{{showModal('Delete_Modal')}}", + "textSize": "PARAGRAPH", + "buttonColor": "#DD4B34", + "index": 7.0, + "isVisible": true, + "label": "Delete", + "buttonLabel": "{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}", + "columnType": "button", + "horizontalAlignment": "LEFT", + "width": 150.0, + "enableFilter": true, + "enableSort": true, + "id": "customColumn1", + "isDisabled": false, + "buttonLabelColor": "#FFFFFF", + "verticalAlignment": "CENTER" + }, + "option_id": { + "index": 0.0, + "width": 150.0, + "id": "option_id", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "option_id", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.option_id))}}" + }, + "option_name": { + "index": 1.0, + "width": 150.0, + "id": "option_name", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "option_name", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.option_name))}}" + }, + "option_value": { + "index": 2.0, + "width": 150.0, + "id": "option_value", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "option_value", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.option_value))}}" + }, + "autoload": { + "index": 3.0, + "width": 150.0, + "id": "autoload", + "horizontalAlignment": "LEFT", + "verticalAlignment": "CENTER", + "columnType": "text", + "textSize": "PARAGRAPH", + "enableFilter": true, + "enableSort": true, + "isVisible": true, + "isDisabled": false, + "isCellVisible": true, + "isDerived": false, + "label": "autoload", + "computedValue": "{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.autoload))}}" + } + }, + "delimiter": ",", + "derivedColumns": { + "customColumn1": { + "isDerived": true, + "computedValue": "", + "onClick": "{{DeleteQuery.run()}}", + "textSize": "PARAGRAPH", + "buttonStyle": "#DD4B34", + "index": 7.0, + "isVisible": true, + "label": "customColumn1", + "buttonLabel": "{{Table1.sanitizedTableData.map((currentRow) => { return 'Delete'})}}", + "columnType": "button", + "horizontalAlignment": "LEFT", + "width": 150.0, + "enableFilter": true, + "enableSort": true, + "id": "customColumn1", + "buttonLabelColor": "#FFFFFF", + "verticalAlignment": "CENTER" + } + }, + "rightColumn": 64.0, + "textSize": "PARAGRAPH", + "widgetId": "jabdu9f16g", + "isVisibleFilters": true, + "tableData": "", + "isVisible": "true", + "label": "Data", + "searchKey": "", + "version": 3.0, + "parentId": "59rw5mx0bq", + "serverSidePaginationEnabled": true, + "isLoading": false, + "isVisibleCompactMode": true, + "onSearchTextChanged": "{{SelectQuery.run()}}", + "horizontalAlignment": "LEFT", + "isVisibleSearch": true, + "isVisiblePagination": true, + "verticalAlignment": "CENTER", + "columnSizeMap": { + "task": 245.0, + "deliveryAddress": 170.0, + "step": 62.0, + "id": 228.0, + "status": 75.0 + } + }, { + "isRequired": false, + "widgetName": "col_select", + "isFilterable": true, + "rightColumn": 22.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "asmgosgxjm", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "{{SelectQuery.data.length > 0}}", + "label": "", + "type": "DROP_DOWN_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "defaultOptionValue": "option_id", + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 7.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "options": "[\n{\n\t\"label\": \"autoload\",\n\t\"value\": \"autoload\"\n}, \n{\n\t\"label\": \"option_name\",\n\t\"value\": \"option_name\"\n}, \n{\n\t\"label\": \"option_value\",\n\t\"value\": \"option_value\"\n}, \n{\n\t\"label\": \"option_id\",\n\t\"value\": \"option_id\"\n}]", + "onOptionChange": "{{SelectQuery.run()}}", + "isDisabled": false + }, { + "widgetName": "Text15", + "rightColumn": 7.0, + "textAlign": "LEFT", + "widgetId": "l8pgl90klz", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Order By :" + }, { + "isRequired": false, + "widgetName": "order_select", + "isFilterable": true, + "rightColumn": 33.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "10v8a19m25", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "{{SelectQuery.data.length > 0}}", + "label": "", + "type": "DROP_DOWN_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "defaultOptionValue": "ASC", + "parentColumnSpace": 19.75, + "dynamicTriggerPathList": [{ + "key": "onOptionChange" + }], + "leftColumn": 22.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "options": "[\n {\n \"label\": \"Ascending\",\n \"value\": \"ASC\"\n },\n {\n \"label\": \"Descending\",\n \"value\": \"DESC\"\n }\n]", + "onOptionChange": "{{SelectQuery.run()}}", + "isDisabled": false + }, { + "widgetName": "Text16", + "rightColumn": 64.0, + "textAlign": "LEFT", + "widgetId": "urzv99hdc8", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 11.78515625, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "perf_options Data" + }, { + "boxShadow": "NONE", + "widgetName": "refresh_btn", + "rightColumn": 64.0, + "onClick": "{{SelectQuery.run()}}", + "iconName": "refresh", + "buttonColor": "#03B365", + "widgetId": "2jj0197tff", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "ICON_BUTTON_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 12.0703125, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "borderRadius": "CIRCLE", + "leftColumn": 60.0, + "dynamicBindingPathList": [], + "buttonVariant": "TERTIARY", + "isDisabled": false + }, { + "boxShadow": "NONE", + "widgetName": "add_btn", + "rightColumn": 60.0, + "onClick": "{{showModal('Insert_Modal')}}", + "iconName": "add", + "buttonColor": "#03B365", + "widgetId": "kby34l9nbb", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "ICON_BUTTON_WIDGET", + "version": 1.0, + "parentId": "59rw5mx0bq", + "isLoading": false, + "parentColumnSpace": 12.0703125, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "borderRadius": "CIRCLE", + "leftColumn": 56.0, + "dynamicBindingPathList": [], + "buttonVariant": "TERTIARY", + "isDisabled": false + }] + }] + }, { + "widgetName": "Delete_Modal", + "rightColumn": 45.0, + "detachFromLayout": true, + "widgetId": "i3whp03wf0", + "topRow": 13.0, + "bottomRow": 37.0, + "parentRowSpace": 10.0, + "canOutsideClickClose": true, + "type": "MODAL_WIDGET", + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "shouldScrollContents": false, + "isLoading": false, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas3", + "rightColumn": 453.1875, + "detachFromLayout": true, + "widgetId": "zi8fjakv8o", + "topRow": 0.0, + "bottomRow": 230.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": true, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "i3whp03wf0", + "shouldScrollContents": false, + "minHeight": 240.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Alert_text", + "rightColumn": 41.0, + "textAlign": "LEFT", + "widgetId": "reyoxo4oec", + "topRow": 1.0, + "bottomRow": 5.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "Delete Row" + }, { + "widgetName": "Button1", + "rightColumn": 46.0, + "onClick": "{{closeModal('Delete_Modal')}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03B365", + "widgetId": "lryg8kw537", + "topRow": 17.0, + "bottomRow": 21.0, + "isVisible": "true", + "type": "BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 34.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Cancel", + "isDisabled": false + }, { + "widgetName": "Delete_Button", + "rightColumn": 64.0, + "onClick": "{{DeleteQuery.run(() => SelectQuery.run(() => closeModal('Delete_Modal')), () => {})}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [{ + "key": "onClick" + }], + "buttonColor": "#F22B2B", + "widgetId": "qq02lh7ust", + "topRow": 17.0, + "bottomRow": 21.0, + "isVisible": "true", + "type": "BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "zi8fjakv8o", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "leftColumn": 48.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Confirm", + "isDisabled": false + }, { + "widgetName": "Text12", + "rightColumn": 63.0, + "textAlign": "LEFT", + "widgetId": "48uac29g6e", + "topRow": 8.0, + "bottomRow": 12.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "zi8fjakv8o", + "isLoading": false, + "parentColumnSpace": 6.875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "Are you sure you want to delete this item?" + }], + "isDisabled": false + }], + "width": 456.0, + "height": 240.0 + }, { + "widgetName": "Insert_Modal", + "rightColumn": 41.0, + "detachFromLayout": true, + "widgetId": "vmorzie6eq", + "topRow": 16.0, + "bottomRow": 40.0, + "parentRowSpace": 10.0, + "canOutsideClickClose": true, + "type": "MODAL_WIDGET", + "canEscapeKeyClose": true, + "version": 2.0, + "parentId": "0", + "shouldScrollContents": false, + "isLoading": false, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 17.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas4", + "rightColumn": 453.1875, + "detachFromLayout": true, + "widgetId": "9rhv3ioohq", + "topRow": 0.0, + "bottomRow": 610.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": true, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "vmorzie6eq", + "shouldScrollContents": false, + "minHeight": 600.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Form2", + "backgroundColor": "#F6F7F8", + "rightColumn": 64.0, + "widgetId": "1ruewbc4ef", + "topRow": 0.0, + "bottomRow": 58.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "type": "FORM_WIDGET", + "parentId": "9rhv3ioohq", + "isLoading": false, + "shouldScrollContents": false, + "parentColumnSpace": 8.0, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "children": [{ + "widgetName": "Canvas5", + "rightColumn": 224.0, + "detachFromLayout": true, + "widgetId": "tp9pui0e6y", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 570.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "1ruewbc4ef", + "minHeight": 580.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "resetFormOnClick": true, + "widgetName": "insert_button", + "rightColumn": 62.0, + "onClick": "{{InsertQuery.run(() => SelectQuery.run(() => closeModal('Insert_Modal')))}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [{ + "key": "onClick" + }], + "buttonColor": "#03B365", + "widgetId": "h8vxf3oh4s", + "topRow": 51.0, + "bottomRow": 55.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": true, + "leftColumn": 43.0, + "dynamicBindingPathList": [], + "googleRecaptchaKey": "", + "buttonVariant": "PRIMARY", + "text": "Submit" + }, { + "resetFormOnClick": true, + "widgetName": "reset_button", + "rightColumn": 42.0, + "onClick": "{{closeModal('Insert_Modal')}}", + "isDefaultClickDisabled": true, + "buttonColor": "#03B365", + "widgetId": "o23gs26wm5", + "topRow": 51.0, + "bottomRow": 55.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": false, + "leftColumn": 29.0, + "dynamicBindingPathList": [], + "buttonVariant": "SECONDARY", + "text": "Close" + }, { + "widgetName": "Text21", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "cfmxebyn06", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "option_id:" + }, { + "isRequired": false, + "widgetName": "insert_col_input1", + "rightColumn": 62.0, + "widgetId": "h1wbbv7alb", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "Autogenerated Field", + "isDisabled": true, + "validation": "true" + }, { + "widgetName": "Text22", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "jsffaxrqhw", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 2.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "option_name:" + }, { + "isRequired": true, + "widgetName": "insert_col_input2", + "rightColumn": 62.0, + "widgetId": "6enalyprua", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "defaultText": "", + "placeholderText": "option_name", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text23", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "btk60uozsm", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 7.6865234375, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "option_value:" + }, { + "isRequired": true, + "widgetName": "insert_col_input3", + "rightColumn": 62.0, + "widgetId": "e490gfts69", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "option_value", + "defaultText": "", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text14", + "rightColumn": 19.0, + "textAlign": "RIGHT", + "widgetId": "8fm60omwwv", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "leftColumn": 3.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "autoload:" + }, { + "isRequired": true, + "widgetName": "insert_col_input4", + "rightColumn": 62.0, + "widgetId": "r55cydp0ao", + "topRow": 26.0, + "bottomRow": 30.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "tp9pui0e6y", + "isLoading": false, + "parentColumnSpace": 8.0625, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 21.0, + "dynamicBindingPathList": [], + "inputType": "TEXT", + "placeholderText": "autoload", + "defaultText": "", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text13Copy", + "rightColumn": 35.0, + "textAlign": "LEFT", + "widgetId": "18x7vdv3gs", + "topRow": 0.0, + "bottomRow": 4.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "shouldScroll": false, + "parentId": "tp9pui0e6y", + "isLoading": false, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "fontSize": "HEADING1", + "text": "Insert Row" + }] + }] + }], + "isDisabled": false + }], + "width": 532.0, + "height": 600.0 + }, { + "widgetName": "Form1", + "backgroundColor": "white", + "rightColumn": 64.0, + "dynamicPropertyPathList": [{ + "key": "isVisible" + }], + "widgetId": "m7dvlazbn7", + "topRow": 0.0, + "bottomRow": 46.0, + "parentRowSpace": 10.0, + "isVisible": "{{!!Table1.selectedRow.option_id}}", + "type": "FORM_WIDGET", + "parentId": "0", + "isLoading": false, + "shouldScrollContents": true, + "parentColumnSpace": 18.8828125, + "dynamicTriggerPathList": [], + "leftColumn": 40.0, + "dynamicBindingPathList": [{ + "key": "isVisible" + }], + "children": [{ + "widgetName": "Canvas2", + "rightColumn": 528.71875, + "detachFromLayout": true, + "widgetId": "cicukwhp5j", + "containerStyle": "none", + "topRow": 0.0, + "bottomRow": 450.0, + "parentRowSpace": 1.0, + "isVisible": "true", + "canExtend": false, + "type": "CANVAS_WIDGET", + "version": 1.0, + "parentId": "m7dvlazbn7", + "minHeight": 460.0, + "isLoading": false, + "parentColumnSpace": 1.0, + "dynamicTriggerPathList": [], + "leftColumn": 0.0, + "dynamicBindingPathList": [], + "children": [{ + "resetFormOnClick": false, + "widgetName": "update_button", + "rightColumn": 63.0, + "onClick": "{{UpdateQuery.run(() => SelectQuery.run(), () => showAlert('Error while updating resource!','error'))}}", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03B365", + "widgetId": "4gnygu5jew", + "topRow": 39.0, + "bottomRow": 43.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "cicukwhp5j", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": true, + "leftColumn": 42.0, + "dynamicBindingPathList": [], + "buttonVariant": "PRIMARY", + "text": "Update" + }, { + "resetFormOnClick": true, + "widgetName": "reset_update_button", + "rightColumn": 42.0, + "onClick": "", + "isDefaultClickDisabled": true, + "dynamicPropertyPathList": [], + "buttonColor": "#03b365", + "widgetId": "twwgpz5wfu", + "topRow": 39.0, + "bottomRow": 43.0, + "isVisible": "true", + "type": "FORM_BUTTON_WIDGET", + "version": 1.0, + "recaptchaType": "V3", + "parentId": "cicukwhp5j", + "isLoading": false, + "dynamicTriggerPathList": [{ + "key": "onClick" + }], + "disabledWhenInvalid": false, + "leftColumn": 28.0, + "dynamicBindingPathList": [], + "buttonVariant": "SECONDARY", + "text": "Reset" + }, { + "isRequired": true, + "widgetName": "update_col_2", + "rightColumn": 63.0, + "widgetId": "in8e51pg3y", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.option_name}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": true, + "widgetName": "update_col_3", + "rightColumn": 63.0, + "widgetId": "mlhvfasf31", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.option_value}}", + "isDisabled": false, + "validation": "true" + }, { + "isRequired": true, + "widgetName": "update_col_4", + "rightColumn": 63.0, + "widgetId": "0lz9vhcnr0", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "label": "", + "type": "INPUT_WIDGET", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "resetOnSubmit": true, + "leftColumn": 19.0, + "dynamicBindingPathList": [{ + "key": "defaultText" + }], + "inputType": "TEXT", + "defaultText": "{{Table1.selectedRow.autoload}}", + "isDisabled": false, + "validation": "true" + }, { + "widgetName": "Text9", + "rightColumn": 63.0, + "textAlign": "LEFT", + "widgetId": "4hnz8ktmz5", + "topRow": 0.0, + "bottomRow": 4.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 8.8963623046875, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [{ + "key": "text" + }], + "fontSize": "HEADING1", + "text": "Update Row: {{Table1.selectedRow.option_id}}" + }, { + "widgetName": "Text17", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "afzzc7q8af", + "topRow": 5.0, + "bottomRow": 9.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "option_name:" + }, { + "widgetName": "Text18", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "xqcsd2e5dj", + "topRow": 12.0, + "bottomRow": 16.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "option_value:" + }, { + "widgetName": "Text19", + "rightColumn": 18.0, + "textAlign": "RIGHT", + "widgetId": "l109ilp3vq", + "topRow": 19.0, + "bottomRow": 23.0, + "parentRowSpace": 10.0, + "isVisible": "true", + "fontStyle": "BOLD", + "type": "TEXT_WIDGET", + "textColor": "#231F20", + "version": 1.0, + "parentId": "cicukwhp5j", + "isLoading": false, + "parentColumnSpace": 7.15625, + "dynamicTriggerPathList": [], + "leftColumn": 1.0, + "dynamicBindingPathList": [], + "fontSize": "PARAGRAPH", + "text": "autoload:" + }] + }] + }] + }, + "layoutOnLoadActions": [ + [{ + "id": "WP Options_SelectQuery", + "name": "SelectQuery", + "pluginType": "DB", + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "Table1.searchText || \"\"", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "timeoutInMillisecond": 10000.0 + }] + ], + "validOnPageLoadActions": true, + "id": "WP Options", + "deleted": false, + "policies": [], + "userPermissions": [] + }], + "userPermissions": [], + "policies": [], + "isHidden": false + }, + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61f3add7345f0c36171f8d59" + }], + "actionList": [{ + "pluginType": "DB", + "pluginId": "postgres-plugin", + "unpublishedAction": { + "name": "UpdateQuery", + "datasource": { + "pluginId": "postgres-plugin", + "messages": [], + "isAutoGenerated": false, + "id": "PostgresGolden", + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Blog", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "UPDATE perf_posts SET\n\t\tpost_title = '{{title.text}}',\n\t\tpost_excerpt = '{{excerpt.text}}',\n\t\tpost_author = '{{author.selectedOptionValue}}',\n\t\tpost_status = '{{p_status.selectedOptionValue}}'\n \n WHERE id = {{Table1.selectedRow.id}};", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [{ + "key": "body" + }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["Table1.selectedRow.id", "title.text", "author.selectedOptionValue", "excerpt.text", "p_status.selectedOptionValue"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "UpdateQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Blog", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "UPDATE perf_posts SET\n\t\tpost_title = '{{title.text}}',\n\t\tpost_excerpt = '{{excerpt.text}}',\n\t\tpost_author = '{{author.selectedOptionValue}}',\n\t\tpost_status = '{{p_status.selectedOptionValue}}'\n \n WHERE ID = {{Table1.selectedRow.ID}};", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [{ + "key": "body" + }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["Table1.selectedRow.ID", "title.text", "author.selectedOptionValue", "excerpt.text", "p_status.selectedOptionValue"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Blog_UpdateQuery", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61efc19939a0da5942775f12" + }, { + "pluginType": "DB", + "pluginId": "postgres-plugin", + "unpublishedAction": { + "name": "SelectQuery", + "datasource": { + "name": "PostgresGolden", + "pluginId": "postgres-plugin", + "messages": [], + "isAutoGenerated": false, + "id": "PostgresGolden", + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Blog", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "select * from perf_posts \nINNER JOIN perf_term_relationships ON perf_posts.ID= perf_term_relationships.object_id\nwhere perf_term_relationships.term_taxonomy_id in ({{categories.selectedOptionValues.reduce((str,value)=>`${str},${value}`,'0')}})\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};\n\n\n\n\n\n\n\n\n", + "pluginSpecifiedTemplates": [{ + "value": false + }] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ + "key": "body" + }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "categories.selectedOptionValues.reduce((str,value)=>`${str},${value}`,'0')", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "SelectQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Blog", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "\n\n\nselect * from perf_posts \nINNER JOIN perf_term_relationships ON perf_posts.ID= perf_term_relationships.object_id\nwhere perf_term_relationships.term_taxonomy_id in ({{categories.selectedOptionValues.reduce((str,value)=>`${str},${value}`,'0')}})\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};\n\n\n\n\n\n\n\n\n", + "pluginSpecifiedTemplates": [{ + "value": false + }] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ + "key": "body" + }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "categories.selectedOptionValues.reduce((str,value)=>`${str},${value}`,'0')", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Blog_SelectQuery", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61efc19939a0da5942775f14" + }, { + "pluginType": "DB", + "pluginId": "postgres-plugin", + "unpublishedAction": { + "name": "DeleteQuery", + "datasource": { + "pluginId": "postgres-plugin", + "messages": [], + "isAutoGenerated": false, + "id": "PostgresGolden", + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Blog", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "DELETE FROM perf_posts\n WHERE id = {{Table1.triggeredRow.id}};", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [{ + "key": "body" + }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["Table1.triggeredRow.id"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "DeleteQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Blog", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "DELETE FROM perf_posts\n WHERE ID = {{Table1.triggeredRow.ID}};", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["Table1.triggeredRow.ID"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Blog_DeleteQuery", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61efc19939a0da5942775f13" + }, { + "pluginType": "DB", + "pluginId": "postgres-plugin", + "unpublishedAction": { + "name": "InsertQuery", + "datasource": { + "pluginId": "postgres-plugin", + "messages": [], + "isAutoGenerated": false, + "id": "PostgresGolden", + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Blog", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "INSERT INTO perf_posts (\n\tguid, \n\tpost_author,\n\tpost_date, \n\tpost_date_gmt\n)\nVALUES (\n\t\t\t\t{{insert_col_input2.text}}, \n\t\t\t\t{{insert_col_input3.text}}, \n\t\t\t\t{{insert_col_input4.text}}, \n\t\t\t\t{{insert_col_input5.text}}\n);", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["insert_col_input5.text", "insert_col_input4.text", "insert_col_input3.text", "insert_col_input2.text"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "InsertQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Blog", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "INSERT INTO perf_posts (\n\tguid, \n\tpost_author,\n\tpost_date, \n\tpost_date_gmt\n)\nVALUES (\n\t\t\t\t{{insert_col_input2.text}}, \n\t\t\t\t{{insert_col_input3.text}}, \n\t\t\t\t{{insert_col_input4.text}}, \n\t\t\t\t{{insert_col_input5.text}}\n);", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["insert_col_input5.text", "insert_col_input4.text", "insert_col_input3.text", "insert_col_input2.text"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Blog_InsertQuery", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61efc19939a0da5942775f16" + }, { + "pluginType": "DB", + "pluginId": "postgres-plugin", + "unpublishedAction": { + "name": "GetCategories", + "datasource": { + "name": "PostgresGolden", + "pluginId": "postgres-plugin", + "messages": [], + "isAutoGenerated": false, + "id": "PostgresGolden", + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Blog", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT term_id,name FROM perf_terms ORDER BY term_id;\n", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "GetCategories", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Blog", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT term_id,name FROM perf_terms;\n", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": [], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Blog_GetCategories", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61efe23d3b61bf7f582f1826" + }, { + "pluginType": "DB", + "pluginId": "mysql-plugin", + "unpublishedAction": { + "name": "SelectQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Users", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT * FROM perf_users\nWHERE user_login like '%{{Table1.searchText || \"\"}}%'\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};", + "pluginSpecifiedTemplates": [{ + "value": false + }] + }, + "executeOnLoad": true, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "Table1.searchText || \"\"", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "SelectQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Users", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT * FROM perf_users\nWHERE user_login like '%{{Table1.searchText || \"\"}}%'\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};", + "pluginSpecifiedTemplates": [{ + "value": false + }] + }, + "executeOnLoad": true, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "Table1.searchText || \"\"", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Users_SelectQuery", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61eff4a53b61bf7f582f1833" + }, { + "pluginType": "DB", + "pluginId": "mysql-plugin", + "unpublishedAction": { + "name": "InsertQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Users", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "INSERT INTO perf_users (\n\tuser_login, \n\tuser_pass,\n\tuser_nicename, \n\tuser_email\n)\nVALUES (\n\t\t\t\t{{insert_col_input2.text}}, \n\t\t\t\t{{insert_col_input3.text}}, \n\t\t\t\t{{insert_col_input4.text}}, \n\t\t\t\t{{insert_col_input5.text}}\n);", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["insert_col_input5.text", "insert_col_input4.text", "insert_col_input3.text", "insert_col_input2.text"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "InsertQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Users", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "INSERT INTO perf_users (\n\tuser_login, \n\tuser_pass,\n\tuser_nicename, \n\tuser_email\n)\nVALUES (\n\t\t\t\t{{insert_col_input2.text}}, \n\t\t\t\t{{insert_col_input3.text}}, \n\t\t\t\t{{insert_col_input4.text}}, \n\t\t\t\t{{insert_col_input5.text}}\n);", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["insert_col_input5.text", "insert_col_input4.text", "insert_col_input3.text", "insert_col_input2.text"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Users_InsertQuery", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61eff4a53b61bf7f582f1836" + }, { + "pluginType": "DB", + "pluginId": "mysql-plugin", + "unpublishedAction": { + "name": "DeleteQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Users", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "DELETE FROM perf_users\n WHERE ID = {{Table1.triggeredRow.ID}};", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["Table1.triggeredRow.ID"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "DeleteQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Users", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "DELETE FROM perf_users\n WHERE ID = {{Table1.triggeredRow.ID}};", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["Table1.triggeredRow.ID"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Users_DeleteQuery", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61eff4a53b61bf7f582f1835" + }, { + "pluginType": "DB", + "pluginId": "mysql-plugin", + "unpublishedAction": { + "name": "UpdateQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Users", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "UPDATE perf_users SET\n\t\tuser_login = '{{update_col_2.text}}',\n user_pass = '{{update_col_3.text}}',\n user_nicename = '{{update_col_4.text}}',\n user_email = '{{update_col_5.text}}'\n WHERE ID = {{Table1.selectedRow.ID}};", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["update_col_3.text", "update_col_2.text", "Table1.selectedRow.ID", "update_col_5.text", "update_col_4.text"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "UpdateQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Users", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "UPDATE perf_users SET\n\t\tuser_login = '{{update_col_2.text}}',\n user_pass = '{{update_col_3.text}}',\n user_nicename = '{{update_col_4.text}}',\n user_email = '{{update_col_5.text}}'\n WHERE ID = {{Table1.selectedRow.ID}};", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["update_col_3.text", "update_col_2.text", "Table1.selectedRow.ID", "update_col_5.text", "update_col_4.text"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Users_UpdateQuery", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61eff4a53b61bf7f582f1834" + }, { + "pluginType": "DB", + "pluginId": "postgres-plugin", + "unpublishedAction": { + "name": "GetComments", + "datasource": { + "pluginId": "postgres-plugin", + "messages": [], + "isAutoGenerated": false, + "id": "PostgresGolden", + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Blog", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT * FROM perf_comments where comment_post_id = {{Table1.selectedRow.id}} ORDER BY comment_id LIMIT 10;\n", + "pluginSpecifiedTemplates": [{ + "value": false + }] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ + "key": "body" + }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["Table1.selectedRow.id"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "GetComments", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Blog", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT * FROM perf_comments where comment_post_ID = {{Table1.selectedRow.ID}} ORDER BY comment_ID LIMIT 10;\n", + "pluginSpecifiedTemplates": [{ + "value": false + }] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [{ + "key": "body" + }], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["Table1.selectedRow.ID"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Blog_GetComments", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61f242880dcb6f75e86b5e78" + }, { + "pluginType": "DB", + "pluginId": "mysql-plugin", + "unpublishedAction": { + "name": "InsertQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Comments", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "INSERT INTO perf_comments (\n\tcomment_author_email, \n\tcomment_post_ID,\n\tcomment_author, \n\tcomment_author_url\n)\nVALUES (\n\t\t\t\t{{insert_col_input2.text}}, \n\t\t\t\t{{insert_col_input3.text}}, \n\t\t\t\t{{insert_col_input4.text}}, \n\t\t\t\t{{insert_col_input5.text}}\n);", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["insert_col_input5.text", "insert_col_input4.text", "insert_col_input3.text", "insert_col_input2.text"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "InsertQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Comments", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "INSERT INTO perf_comments (\n\tcomment_author_email, \n\tcomment_post_ID,\n\tcomment_author, \n\tcomment_author_url\n)\nVALUES (\n\t\t\t\t{{insert_col_input2.text}}, \n\t\t\t\t{{insert_col_input3.text}}, \n\t\t\t\t{{insert_col_input4.text}}, \n\t\t\t\t{{insert_col_input5.text}}\n);", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["insert_col_input5.text", "insert_col_input4.text", "insert_col_input3.text", "insert_col_input2.text"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Comments_InsertQuery", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61f3adb1345f0c36171f8d4e" + }, { + "pluginType": "DB", + "pluginId": "postgres-plugin", + "unpublishedAction": { + "name": "GetUsers", + "datasource": { + "pluginId": "postgres-plugin", + "messages": [], + "isAutoGenerated": false, + "id": "PostgresGolden", + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Blog", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT * FROM perf_users\nWHERE user_login like '%{{Table1.searchText || \"\"}}%'\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};", + "pluginSpecifiedTemplates": [{ + "value": false + }] + }, + "executeOnLoad": true, + "dynamicBindingPathList": [], + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "Table1.searchText || \"\"", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "GetUsers", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Blog", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT * FROM perf_users\nWHERE user_login like '%{{Table1.searchText || \"\"}}%'\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};", + "pluginSpecifiedTemplates": [{ + "value": false + }] + }, + "executeOnLoad": true, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "Table1.searchText || \"\"", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Blog_GetUsers", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61eff4d73b61bf7f582f183b" + }, { + "pluginType": "DB", + "pluginId": "mysql-plugin", + "unpublishedAction": { + "name": "UpdateQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Comments", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "UPDATE perf_comments SET\n\t\tcomment_author_email = '{{update_col_2.text}}',\n comment_post_ID = '{{update_col_3.text}}',\n comment_author = '{{update_col_4.text}}',\n comment_author_url = '{{update_col_5.text}}'\n WHERE comment_ID = {{Table1.selectedRow.comment_ID}};", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["update_col_3.text", "Table1.selectedRow.comment_ID", "update_col_2.text", "update_col_5.text", "update_col_4.text"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "UpdateQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Comments", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "UPDATE perf_comments SET\n\t\tcomment_author_email = '{{update_col_2.text}}',\n comment_post_ID = '{{update_col_3.text}}',\n comment_author = '{{update_col_4.text}}',\n comment_author_url = '{{update_col_5.text}}'\n WHERE comment_ID = {{Table1.selectedRow.comment_ID}};", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["update_col_3.text", "Table1.selectedRow.comment_ID", "update_col_2.text", "update_col_5.text", "update_col_4.text"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Comments_UpdateQuery", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61f3adb1345f0c36171f8d51" + }, { + "pluginType": "DB", + "pluginId": "mysql-plugin", + "unpublishedAction": { + "name": "DeleteQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Comments", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "DELETE FROM perf_comments\n WHERE comment_ID = {{Table1.triggeredRow.comment_ID}};", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["Table1.triggeredRow.comment_ID"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "DeleteQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Comments", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "DELETE FROM perf_comments\n WHERE comment_ID = {{Table1.triggeredRow.comment_ID}};", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["Table1.triggeredRow.comment_ID"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Comments_DeleteQuery", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61f3adb1345f0c36171f8d4f" + }, { + "pluginType": "DB", + "pluginId": "mysql-plugin", + "unpublishedAction": { + "name": "SelectQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Comments", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT * FROM perf_comments\nWHERE comment_author_email like '%{{Table1.searchText || \"\"}}%'\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};", + "pluginSpecifiedTemplates": [{ + "value": false + }] + }, + "executeOnLoad": true, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "Table1.searchText || \"\"", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "SelectQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Comments", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT * FROM perf_comments\nWHERE comment_author_email like '%{{Table1.searchText || \"\"}}%'\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};", + "pluginSpecifiedTemplates": [{ + "value": false + }] + }, + "executeOnLoad": true, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "Table1.searchText || \"\"", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Comments_SelectQuery", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61f3adb1345f0c36171f8d50" + }, { + "pluginType": "DB", + "pluginId": "mysql-plugin", + "unpublishedAction": { + "name": "InsertQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "WP Options", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "INSERT INTO perf_options (\n\toption_name, \n\toption_value,\n\tautoload)\nVALUES (\n\t\t\t\t{{insert_col_input2.text}}, \n\t\t\t\t{{insert_col_input3.text}}, \n\t\t\t\t{{insert_col_input4.text}});", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["insert_col_input4.text", "insert_col_input3.text", "insert_col_input2.text"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "InsertQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "WP Options", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "INSERT INTO perf_options (\n\toption_name, \n\toption_value,\n\tautoload)\nVALUES (\n\t\t\t\t{{insert_col_input2.text}}, \n\t\t\t\t{{insert_col_input3.text}}, \n\t\t\t\t{{insert_col_input4.text}});", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["insert_col_input4.text", "insert_col_input3.text", "insert_col_input2.text"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "WP Options_InsertQuery", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61f3ae03345f0c36171f8d5c" + }, { + "pluginType": "DB", + "pluginId": "mysql-plugin", + "unpublishedAction": { + "name": "DeleteQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "WP Options", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "DELETE FROM perf_options\n WHERE option_id = {{Table1.triggeredRow.option_id}};", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["Table1.triggeredRow.option_id"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "DeleteQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "WP Options", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "DELETE FROM perf_options\n WHERE option_id = {{Table1.triggeredRow.option_id}};", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["Table1.triggeredRow.option_id"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "WP Options_DeleteQuery", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61f3ae03345f0c36171f8d5b" + }, { + "pluginType": "DB", + "pluginId": "mysql-plugin", + "unpublishedAction": { + "name": "SelectQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "WP Options", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT * FROM perf_options\nWHERE option_name like '%{{Table1.searchText || \"\"}}%'\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};", + "pluginSpecifiedTemplates": [{ + "value": false + }] + }, + "executeOnLoad": true, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "Table1.searchText || \"\"", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "SelectQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "WP Options", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT * FROM perf_options\nWHERE option_name like '%{{Table1.searchText || \"\"}}%'\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};", + "pluginSpecifiedTemplates": [{ + "value": false + }] + }, + "executeOnLoad": true, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "Table1.searchText || \"\"", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "WP Options_SelectQuery", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61f3ae03345f0c36171f8d5f" + }, { + "pluginType": "DB", + "pluginId": "mysql-plugin", + "unpublishedAction": { + "name": "UpdateQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "WP Options", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "UPDATE perf_options SET\n\t\toption_name = '{{update_col_2.text}}',\n option_value = '{{update_col_3.text}}',\n autoload = '{{update_col_4.text}}'\nWHERE option_id = {{Table1.selectedRow.option_id}};", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["update_col_3.text", "Table1.selectedRow.option_id", "update_col_2.text", "update_col_4.text"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "UpdateQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "WP Options", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "UPDATE perf_options SET\n\t\toption_name = '{{update_col_2.text}}',\n option_value = '{{update_col_3.text}}',\n autoload = '{{update_col_4.text}}'\nWHERE option_id = {{Table1.selectedRow.option_id}};", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["update_col_3.text", "Table1.selectedRow.option_id", "update_col_2.text", "update_col_4.text"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "WP Options_UpdateQuery", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61f3ae03345f0c36171f8d5d" + }, { + "pluginType": "DB", + "pluginId": "mysql-plugin", + "unpublishedAction": { + "name": "InsertQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Post Meta", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "INSERT INTO perf_postmeta (\n\tmeta_key, \n\tpost_id,\n\tmeta_value)\nVALUES (\n\t\t\t\t{{insert_col_input2.text}}, \n\t\t\t\t{{insert_col_input3.text}}, \n\t\t\t\t{{insert_col_input4.text}});", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["insert_col_input4.text", "insert_col_input3.text", "insert_col_input2.text"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "InsertQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Post Meta", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "INSERT INTO perf_postmeta (\n\tmeta_key, \n\tpost_id,\n\tmeta_value)\nVALUES (\n\t\t\t\t{{insert_col_input2.text}}, \n\t\t\t\t{{insert_col_input3.text}}, \n\t\t\t\t{{insert_col_input4.text}});", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["insert_col_input4.text", "insert_col_input3.text", "insert_col_input2.text"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Post Meta_InsertQuery", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61f3ae36345f0c36171f8d66" + }, { + "pluginType": "DB", + "pluginId": "mysql-plugin", + "unpublishedAction": { + "name": "DeleteQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Post Meta", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "DELETE FROM perf_postmeta\n WHERE meta_id = {{Table1.triggeredRow.meta_id}};", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["Table1.triggeredRow.meta_id"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "DeleteQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Post Meta", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "DELETE FROM perf_postmeta\n WHERE meta_id = {{Table1.triggeredRow.meta_id}};", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["Table1.triggeredRow.meta_id"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Post Meta_DeleteQuery", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61f3ae36345f0c36171f8d68" + }, { + "pluginType": "DB", + "pluginId": "mysql-plugin", + "unpublishedAction": { + "name": "UpdateQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Post Meta", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "UPDATE perf_postmeta SET\n\t\tmeta_key = '{{update_col_2.text}}',\n post_id = '{{update_col_3.text}}',\n meta_value = '{{update_col_4.text}}'\nWHERE meta_id = {{Table1.selectedRow.meta_id}};", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["update_col_3.text", "update_col_2.text", "Table1.selectedRow.meta_id", "update_col_4.text"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "UpdateQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Post Meta", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "UPDATE perf_postmeta SET\n\t\tmeta_key = '{{update_col_2.text}}',\n post_id = '{{update_col_3.text}}',\n meta_value = '{{update_col_4.text}}'\nWHERE meta_id = {{Table1.selectedRow.meta_id}};", + "pluginSpecifiedTemplates": [{ + "value": true + }] + }, + "executeOnLoad": false, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["update_col_3.text", "update_col_2.text", "Table1.selectedRow.meta_id", "update_col_4.text"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Post Meta_UpdateQuery", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61f3ae36345f0c36171f8d67" + }, { + "pluginType": "DB", + "pluginId": "mysql-plugin", + "unpublishedAction": { + "name": "SelectQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Post Meta", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT * FROM perf_postmeta\nWHERE meta_key like '%{{Table1.searchText || \"\"}}%'\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};", + "pluginSpecifiedTemplates": [{ + "value": false + }] + }, + "executeOnLoad": true, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "Table1.searchText || \"\"", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "publishedAction": { + "name": "SelectQuery", + "datasource": { + "pluginId": "mysql-plugin", + "messages": [], + "isAutoGenerated": false, + "deleted": false, + "policies": [], + "userPermissions": [] + }, + "pageId": "Post Meta", + "actionConfiguration": { + "timeoutInMillisecond": 10000.0, + "paginationType": "NONE", + "encodeParamsToggle": true, + "body": "SELECT * FROM perf_postmeta\nWHERE meta_key like '%{{Table1.searchText || \"\"}}%'\nORDER BY {{col_select.selectedOptionValue}} {{order_select.selectedOptionValue}}\nLIMIT {{Table1.pageSize}}\nOFFSET {{(Table1.pageNo - 1) * Table1.pageSize}};", + "pluginSpecifiedTemplates": [{ + "value": false + }] + }, + "executeOnLoad": true, + "isValid": true, + "invalids": [], + "messages": [], + "jsonPathKeys": ["(Table1.pageNo - 1) * Table1.pageSize", "Table1.searchText || \"\"", "col_select.selectedOptionValue", "Table1.pageSize", "order_select.selectedOptionValue"], + "userSetOnLoad": false, + "confirmBeforeExecute": false, + "policies": [], + "userPermissions": [] + }, + "id": "Post Meta_SelectQuery", + "deleted": false, + "gitSyncId": "61efc0f939a0da5942775f01_61f3ae36345f0c36171f8d6a" + }], + "actionCollectionList": [], + "updatedResources": { + "actionList": ["UpdateQuery##ENTITY_SEPARATOR##Post Meta", "SelectQuery##ENTITY_SEPARATOR##Users", "DeleteQuery##ENTITY_SEPARATOR##WP Options", "GetComments##ENTITY_SEPARATOR##Blog", "UpdateQuery##ENTITY_SEPARATOR##WP Options", "DeleteQuery##ENTITY_SEPARATOR##Blog", "SelectQuery##ENTITY_SEPARATOR##Blog", "GetCategories##ENTITY_SEPARATOR##Blog", "GetUsers##ENTITY_SEPARATOR##Blog", "UpdateQuery##ENTITY_SEPARATOR##Blog", "DeleteQuery##ENTITY_SEPARATOR##Users", "InsertQuery##ENTITY_SEPARATOR##Comments", "InsertQuery##ENTITY_SEPARATOR##Post Meta", "UpdateQuery##ENTITY_SEPARATOR##Users", "UpdateQuery##ENTITY_SEPARATOR##Comments", "DeleteQuery##ENTITY_SEPARATOR##Comments", "DeleteQuery##ENTITY_SEPARATOR##Post Meta", "InsertQuery##ENTITY_SEPARATOR##WP Options", "InsertQuery##ENTITY_SEPARATOR##Blog", "InsertQuery##ENTITY_SEPARATOR##Users", "SelectQuery##ENTITY_SEPARATOR##Post Meta", "SelectQuery##ENTITY_SEPARATOR##Comments", "SelectQuery##ENTITY_SEPARATOR##WP Options"], + "pageList": ["Comments", "Users", "WP Options", "Blog", "Post Meta"], + "actionCollectionList": [] + }, + "editModeTheme": { + "name": "Classic", + "displayName": "Classic", + "isSystemTheme": true, + "deleted": false + }, + "publishedTheme": { + "name": "Classic", + "displayName": "Classic", + "isSystemTheme": true, + "deleted": false + } +} \ No newline at end of file diff --git a/app/client/perf/tests/golden-app.perf.js b/app/client/perf/tests/golden-app.perf.js index d23887f0c4..91249c02f4 100644 --- a/app/client/perf/tests/golden-app.perf.js +++ b/app/client/perf/tests/golden-app.perf.js @@ -6,19 +6,19 @@ const { delay, makeid } = require("../src/utils/utils"); process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = 0; const SEL = { - category: "div[label=Uncategorized]", + category: "div.rc-select-item[title=Uncategorized]", multiSelect: ".rc-select", table: "#tablejabdu9f16g", tableData: ".t--property-control-tabledata textarea", tableRow: "#tablejabdu9f16g > div.tableWrap > div > div:nth-child(1) > div > div.tbody.no-scroll > div:nth-child(6) > div:nth-child(2)", - titleInput: ".appsmith_widget_in8e51pg3y input", + titleInput: ".appsmith_widget_armli8hauj input", updateButton: "#comment-overlay-wrapper-4gnygu5jew > div > div > div > div > button", tableRowCell: "#tablejabdu9f16g > div.tableWrap > div > div:nth-child(1) > div > div.tbody.no-scroll > div:nth-child(6) > div:nth-child(2) > div > span > span > span", deletePostButton: - "#tablejabdu9f16g > div.tableWrap > div > div:nth-child(1) > div > div.tbody.no-scroll > div:nth-child(1) > div:nth-child(27) > div > div > button", + "#tablejabdu9f16g > div.tableWrap > div > div:nth-child(1) > div > div.tbody.no-scroll > div:nth-child(1) > div:last-child > div > div > button", modalTitle: "#reyoxo4oec", closeModal: "#comment-overlay-wrapper-lryg8kw537 > div > div > div > div > button", @@ -26,94 +26,93 @@ const SEL = { commentsTableTitle: "#urzv99hdc8", }; -async function testTyping() { - const perf = new Perf(); - await perf.launch(); - const page = perf.getPage(); +async function testGoldenApp(iteration) { + const perf = new Perf({ iteration }); + try { + await perf.launch(); + const page = perf.getPage(); - await perf.importApplication( - `${APP_ROOT}/tests/dsl/blog-admin-app-postgres.json`, - ); + await perf.importApplication( + `${APP_ROOT}/tests/dsl/blog-admin-app-postgres.json`, + ); - await delay(5000, "for newly created page to settle down"); - // Make the elements of the dropdown render - await page.waitForSelector(SEL.multiSelect); - await page.click(SEL.multiSelect); + await delay(5000, "for newly created page to settle down"); + // Make the elements of the dropdown render + await page.waitForSelector(SEL.multiSelect); + await page.click(SEL.multiSelect); - await perf.startTrace(actions.SELECT_CATEGORY); - await page.waitForSelector(SEL.category); - await page.click(SEL.category); + await perf.startTrace(actions.SELECT_CATEGORY); + await page.waitForSelector(SEL.category); + await page.click(SEL.category); - await perf.stopTrace(); + await perf.stopTrace(); - // Focus on the table widget - await page.waitForSelector(SEL.table); - await page.click(SEL.table); + // Focus on the table widget + await page.waitForSelector(SEL.table); - // Profile table Data binding - await perf.startTrace(actions.BIND_TABLE_DATA); - await page.waitForSelector(SEL.tableData); - await page.type(SEL.tableData, "{{SelectQuery.data}}"); - await page.waitForSelector(SEL.tableRow); - await perf.stopTrace(); + // Not sure why it needs two clicks to focus + await page.click(SEL.table); + await page.click(SEL.table); - // Click on table row - await perf.startTrace(actions.CLICK_ON_TABLE_ROW); - await page.click(SEL.tableRow); - await page.waitForFunction( - `document.querySelector("${SEL.titleInput}").value.includes("Template: Comments")`, - ); + // Profile table Data binding + await perf.startTrace(actions.BIND_TABLE_DATA); + await page.waitForSelector(SEL.tableData); + await page.type(SEL.tableData, "{{SelectQuery.data}}"); + await page.waitForSelector(SEL.tableRow); + await perf.stopTrace(); - await perf.stopTrace(); + // Click on table row + await perf.startTrace(actions.CLICK_ON_TABLE_ROW); + await page.click(SEL.tableRow); + await page.waitForFunction( + `document.querySelector("${SEL.titleInput}").value.includes("Template: Comments")`, + ); - // Edit title - await page.waitForSelector(SEL.titleInput); - await perf.startTrace(actions.UPDATE_POST_TITLE); + await perf.stopTrace(); - const randomString = makeid(); - await page.type(SEL.titleInput, randomString); - await delay(5000, "For the evaluations to comeback?"); + // Edit title + await page.waitForSelector(SEL.titleInput); + await perf.startTrace(actions.UPDATE_POST_TITLE); - await page.waitForSelector(SEL.updateButton); - await page.click(SEL.updateButton); - // When the row is updated, selected row changes. - // await page.waitForSelector(SEL.tableRowCell); - await page.waitForFunction( - `document.querySelector("${SEL.table}").textContent.includes("${randomString}")`, - ); - await perf.stopTrace(); + const randomString = makeid(); + await page.type(SEL.titleInput, randomString); + await delay(5000, "For the evaluations to comeback?"); - // Open modal - await page.waitForSelector(SEL.deletePostButton); - await perf.startTrace(actions.OPEN_MODAL); - await page.click(SEL.deletePostButton); - await page.waitForSelector(SEL.modalTitle); - await perf.stopTrace(); + await page.waitForSelector(SEL.updateButton); + await page.click(SEL.updateButton); + // When the row is updated, selected row changes. + // await page.waitForSelector(SEL.tableRowCell); + await page.waitForFunction( + `document.querySelector("${SEL.table}").textContent.includes("${randomString}")`, + ); + await perf.stopTrace(); - // Close modal - await page.waitForSelector(SEL.closeModal); - await perf.startTrace(actions.CLOSE_MODAL); - await page.click(SEL.closeModal); - await delay(3000, "wait after closing modal"); - await perf.stopTrace(); + // Open modal + await page.waitForSelector(SEL.deletePostButton); + await perf.startTrace(actions.OPEN_MODAL); + await page.click(SEL.deletePostButton); + await page.waitForSelector(SEL.modalTitle); + await perf.stopTrace(); - /* Enable this after the new entity explorer - // Navigate to a page - await page.waitForSelector(SEL.commentsPageLink); - await perf.startTrace("Switch page"); - await page.click(SEL.commentsPageLink); - await page.waitForSelector(SEL.commentsTableTitle); - await perf.stopTrace(); -*/ - await perf.generateReport(); - await perf.close(); + // Close modal + await page.waitForSelector(SEL.closeModal); + await perf.startTrace(actions.CLOSE_MODAL); + await page.click(SEL.closeModal); + await delay(3000, "wait after closing modal"); + await perf.stopTrace(); + + await perf.generateReport(); + await perf.close(); + } catch (e) { + await perf.handleRejections(e); + await perf.close(); + } } async function runTests() { - await testTyping(); - await testTyping(); - await testTyping(); - await testTyping(); - await testTyping(); + for (let i = 0; i < 5; i++) { + await testGoldenApp(i + 1); + } } + runTests(); diff --git a/app/client/perf/tests/sample-test.js b/app/client/perf/tests/sample-test.js index c95ce49bed..42b550c1ec 100644 --- a/app/client/perf/tests/sample-test.js +++ b/app/client/perf/tests/sample-test.js @@ -4,38 +4,43 @@ const dsl = require("./dsl/simple-typing").dsl; process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = 0; -async function testTyping() { - const perf = new Perf(); - await perf.launch(); - const page = perf.getPage(); - await perf.loadDSL(dsl); +async function sampleTest(iteration) { + const perf = new Perf({ iteration }); + try { + await perf.launch(); - const selector = "input.bp3-input"; // Input selector - await page.waitForSelector(selector); - const input = await page.$(selector); + const page = perf.getPage(); + await perf.loadDSL(dsl); - await perf.startTrace("Edit input"); - await page.type(selector, "Hello Appsmith"); - await perf.stopTrace(); + const selector = "input.bp3-input"; // Input selector + await page.waitForSelector(selector); + const input = await page.$(selector); - await perf.startTrace("Clear input"); - await input.click({ clickCount: 3 }); - await input.press("Backspace"); - await perf.stopTrace(); + await perf.startTrace("Edit input"); + await page.type(selector, "Hello Appsmith"); + await perf.stopTrace(); - await perf.startTrace("Edit input again"); - await page.type(selector, "Howdy satish"); - await perf.stopTrace(); + await perf.startTrace("Clear input"); + await input.click({ clickCount: 3 }); + await input.press("Backspace"); + await perf.stopTrace(); - await perf.generateReport(); - await perf.close(); + await perf.startTrace("Edit input again"); + await page.type(selector, "Howdy satish"); + await perf.stopTrace(); + + await perf.generateReport(); + await perf.close(); + } catch (e) { + await perf.handleRejections(e); + await perf.close(); + } } async function runTests() { - await testTyping(); - await testTyping(); - await testTyping(); - await testTyping(); - await testTyping(); + for (let i = 0; i < 5; i++) { + await sampleTest(i + 1); + } } + runTests(); diff --git a/app/client/perf/tests/select-widget.perf.js b/app/client/perf/tests/select-widget.perf.js index b68b50f9af..44adad5ac0 100644 --- a/app/client/perf/tests/select-widget.perf.js +++ b/app/client/perf/tests/select-widget.perf.js @@ -10,9 +10,9 @@ const SEL = { first_option_item: ".menu-item-text:nth-child(1)", }; -async function testSelectOptionsRender() { +async function testSelectOptionsRender(iteration) { + const perf = new Perf({ iteration }); try { - const perf = new Perf(); await perf.launch(); const page = perf.getPage(); @@ -34,15 +34,15 @@ async function testSelectOptionsRender() { await perf.generateReport(); await perf.close(); } catch (e) { - console.log(e); + await perf.handleRejections(e); + await perf.close(); } } async function runTests() { - await testSelectOptionsRender(); - await testSelectOptionsRender(); - await testSelectOptionsRender(); - await testSelectOptionsRender(); - await testSelectOptionsRender(); + for (let i = 0; i < 5; i++) { + await testSelectOptionsRender(i + 1); + } } + runTests();