diff --git a/.github/workflows/integration-tests-command.yml b/.github/workflows/integration-tests-command.yml index 9cdaf41c16..168a818397 100644 --- a/.github/workflows/integration-tests-command.yml +++ b/.github/workflows/integration-tests-command.yml @@ -1330,6 +1330,7 @@ jobs: # Only run if the build step is successful if: success() runs-on: buildjet-4vcpu-ubuntu-2004 + defaults: run: working-directory: app/client @@ -1350,6 +1351,19 @@ jobs: - 27017:27017 steps: + - name: Checkout Performance Infra code + uses: actions/checkout@v3 + with: + repository: appsmithorg/performance-infra + token: ${{ secrets.GITHUB_TOKEN }} + ref: main + path: app/client/perf + + - name: List files + run: ls + ls perf + + # Check out merge commitGIT BRANCH - name: Fork based /ok-to-test-perf checkout uses: actions/checkout@v2 diff --git a/app/client/perf/gen-summary.js b/app/client/perf/gen-summary.js deleted file mode 100644 index 84f25e1c85..0000000000 --- a/app/client/perf/gen-summary.js +++ /dev/null @@ -1,6 +0,0 @@ -const { summaries } = require("./src/summary"); -const path = require("path"); - -global.APP_ROOT = path.join(__dirname); //Going back one level from src folder to /perf - -summaries(`${__dirname}/traces/reports`); diff --git a/app/client/perf/package.json b/app/client/perf/package.json deleted file mode 100644 index fc03bc4cf2..0000000000 --- a/app/client/perf/package.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "ui-performance-infra", - "version": "1.0.0", - "description": "Tools to automate chrome performance profiling", - "main": "index.js", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, - "author": "", - "license": "ISC", - "dependencies": { - "@supabase/supabase-js": "^1.30.2", - "median": "^0.0.2", - "node-stdev": "^1.0.1", - "puppeteer": "^13.5.1", - "sanitize-filename": "^1.6.3", - "tracelib": "^1.0.1" - } -} diff --git a/app/client/perf/readme.md b/app/client/perf/readme.md deleted file mode 100644 index 06e02eae4d..0000000000 --- a/app/client/perf/readme.md +++ /dev/null @@ -1,33 +0,0 @@ -### 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 deleted file mode 100644 index 9737f8b53c..0000000000 --- a/app/client/perf/src/ci/supabase.js +++ /dev/null @@ -1,138 +0,0 @@ -const { createClient } = require("@supabase/supabase-js"); -const fs = require("fs"); -const { actions } = require("../../tests/actions"); -const { parseReports } = require("../summary"); -const supabaseUrl = "https://ymiketujsffsmdmgpmut.supabase.co"; -const os = require("os"); -const hostname = os.hostname(); - -const metricsToLog = [ - "scripting", - "painting", - "rendering", - "idle", - "other", - "ForcedLayout", - "ForcedStyle", - "LongHandler", - "LongTask", -]; - -const supabaseKey = process.env.APPSMITH_PERF_SUPABASE_SECRET || "empty"; -const supabase = createClient(supabaseUrl, supabaseKey); - -const actionRows = Object.keys(actions).map((action) => ({ - name: actions[action], -})); - -const createActions = async () => { - const errors = []; - - await Promise.all( - actionRows.map(async (action) => { - const { data, error } = await supabase - .from("action") - .upsert([action], { ignoreDuplicates: true }); - if (error) { - errors.push(error); - } - }), - ); - - console.log(errors); -}; - -const createMetrics = async () => { - const errors = []; - - await Promise.all( - metricsToLog.map(async (metric) => { - const { data, error } = await supabase - .from("metric") - .upsert([{ name: metric }], { ignoreDuplicates: true }); - if (error) { - errors.push(error); - } - }), - ); - - console.log(errors); -}; - -const createRunMeta = async () => { - let prId; - try { - const ev = JSON.parse( - fs.readFileSync(process.env.GITHUB_EVENT_PATH, "utf8"), - ); - - prId = ev.client_payload.pull_request.number; - } catch (e) { - console.log("Error fetching PR id", e); - } - const { data, error } = await supabase.from("run_meta").insert([ - { - gh_run_number: process.env?.GITHUB_RUN_NUMBER || 1, - commit_id: process.env?.GITHUB_SHA, - branch: process.env?.GITHUB_REF_NAME, - gh_run_id: process.env?.GITHUB_RUN_ID || 1, - pull_request_id: prId || parsePullRequestId(process.env.GITHUB_REF), - runner_name: process.env?.RUNNER_NAME, - host_name: hostname, - machine: process.env?.MACHINE || "buildjet-4vcpu-ubuntu-2004", // Hardcoded temporarily. Should be removed - }, - ]); - if (data) { - return data[0]; - } - console.log(error); -}; -const saveData = async (results) => { - const run_meta = await createRunMeta(); - - const rows = []; - Object.keys(results).forEach((action) => { - Object.keys(results[action]).forEach((metric) => { - let row = {}; - row["action"] = action; - row["metric"] = metric; - row["meta"] = run_meta.id; - const runs = results[action][metric]; - runs.forEach((value, i) => { - row = { ...row, value }; - rows.push(row); - }); - }); - }); - - const { data, error } = await supabase.from("run").insert(rows); - - if (error) { - console.log(error); - } -}; - -exports.saveToSupabase = async () => { - const results = await parseReports( - `${APP_ROOT}/traces/reports`, - ["scripting", "painting", "rendering", "idle", "other"], - ["ForcedLayout", "ForcedStyle", "LongHandler", "LongTask"], - ); - - await createMetrics(); - await createActions(); - await saveData(results); -}; - -"use strict"; - -const parsePullRequestId = (githubRef) => { - const result = /refs\/pull\/(\d+)\/merge/g.exec(githubRef); - if (!result) { - return -1; - } - const [, pullRequestId] = result; - return pullRequestId; -}; - -createMetrics(); diff --git a/app/client/perf/src/index.js b/app/client/perf/src/index.js deleted file mode 100644 index f83b759f3f..0000000000 --- a/app/client/perf/src/index.js +++ /dev/null @@ -1,24 +0,0 @@ -const glob = require("glob"); -const path = require("path"); -const { summaries } = require("./summary"); -const { saveToSupabase } = require("./ci/supabase"); -var cp = require("child_process"); -var fs = require("fs"); - -// Create the directory -global.APP_ROOT = path.join(__dirname, ".."); //Going back one level from src folder to /perf -const dir = `${APP_ROOT}/traces/reports`; -if (!fs.existsSync(dir)) { - fs.mkdirSync(dir, { recursive: true }); -} - -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? - }); - await summaries(`${APP_ROOT}/traces/reports`); - await saveToSupabase(); -}); diff --git a/app/client/perf/src/perf.js b/app/client/perf/src/perf.js deleted file mode 100644 index 29c07dd347..0000000000 --- a/app/client/perf/src/perf.js +++ /dev/null @@ -1,233 +0,0 @@ -const Tracelib = require("tracelib"); -const puppeteer = require("puppeteer"); -var sanitize = require("sanitize-filename"); -const fs = require("fs"); -const path = require("path"); - -const { - delay, - getFormattedTime, - login, - sortObjectKeys, -} = require("./utils/utils"); - -const { - cleanTheHost, - setChromeProcessPriority, -} = require("./utils/system-cleanup"); - -const selectors = { - appMoreIcon: "span.t--options-icon", - workspaceImportAppOption: '[data-cy*="t--workspace-import-app"]', - fileInput: "#fileInput", - importButton: '[data-cy*="t--workspace-import-app-button"]', - createNewApp: ".createnew", -}; - -module.exports = class Perf { - constructor(launchOptions = {}) { - this.iteration = launchOptions.iteration || 0; // Current iteration number - this.launchOptions = { - defaultViewport: null, - args: ["--window-size=1920,1080"], - ignoreHTTPSErrors: true, // @todo Remove it after initial testing - ...launchOptions, - }; - - if (process.env.PERF_TEST_ENV === "dev") { - this.launchOptions.executablePath = - "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"; - this.launchOptions.devtools = true; - this.launchOptions.headless = false; - } - - this.traces = []; - this.currentTrace = null; - this.browser = null; - - // Initial setup - this.currentTestFile = process.argv[1] - .split("/") - .pop() - .replace(".perf.js", ""); - global.APP_ROOT = path.join(__dirname, ".."); //Going back one level from src folder to /perf - - 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]; - - await setChromeProcessPriority(); - await this._login(); - }; - - _login = async () => { - await login(this.page); - await delay(2000, "after login"); - }; - - startTrace = async (action = "foo") => { - if (this.currentTrace) { - console.warn( - "Trace already in progress. You can run only one trace at a time", - ); - return; - } - - this.currentTrace = action; - await delay(3000, `before starting trace ${action}`); - await this.page._client.send("HeapProfiler.enable"); - await this.page._client.send("HeapProfiler.collectGarbage"); - await delay(1000, `After clearing memory`); - - const path = `${APP_ROOT}/traces/${action}-${ - this.iteration - }-${getFormattedTime()}-chrome-profile.json`; - - await this.page.tracing.start({ - path: path, - screenshots: true, - }); - this.traces.push({ action, path }); - }; - - stopTrace = async () => { - this.currentTrace = null; - await delay(3000, "before stopping the trace"); - await this.page.tracing.stop(); - }; - - getPage = () => { - if (this.page) return this.page; - throw Error("Can't find the page, please call launch method."); - }; - - loadDSL = async (dsl) => { - const selector = selectors.createNewApp; - await this.page.waitForSelector(selector); - await this.page.click(selector); - // We goto the newly created app. - // Lets update the page - await this.page.waitForNavigation(); - - const currentUrl = this.page.url(); - const pageId = currentUrl - .split("/")[5] - ?.split("-") - .pop(); - - await this.page.evaluate( - async ({ dsl, pageId }) => { - const layoutId = await fetch(`/api/v1/pages/${pageId}`) - .then((response) => response.json()) - .then((data) => data.data.layouts[0].id); - - const pageSaveUrl = "/api/v1/layouts/" + layoutId + "/pages/" + pageId; - await fetch(pageSaveUrl, { - headers: { - accept: "application/json, text/plain, */*", - "content-type": "application/json", - }, - - referrerPolicy: "strict-origin-when-cross-origin", - body: JSON.stringify(dsl), - method: "PUT", - mode: "cors", - credentials: "include", - }) - .then((res) => - console.log("Save page with new DSL response:", res.json()), - ) - .catch((err) => { - console.log("Save page with new DSL error:", err); - }); - }, - { pageId, dsl }, - ); - await this.page.goto(currentUrl.replace("generate-page", ""), { - waitUntil: "networkidle2", - timeout: 60000, - }); - }; - - importApplication = async (jsonPath) => { - await this.page.waitForSelector(selectors.appMoreIcon); - await this.page.click(selectors.appMoreIcon); - await this.page.waitForSelector(selectors.workspaceImportAppOption); - await this.page.click(selectors.workspaceImportAppOption); - - const elementHandle = await this.page.$(selectors.fileInput); - await elementHandle.uploadFile(jsonPath); - - await this.page.waitForNavigation(); - await this.page.reload(); - }; - - generateReport = async () => { - const report = {}; - this.traces.forEach(({ action, path }) => { - report[action] = {}; - const trace = require(path); - const tasks = new Tracelib.default(trace.traceEvents); - report[action].path = path; - report[action].summary = sortObjectKeys(tasks.getSummary()); - report[action].warnings = sortObjectKeys(tasks.getWarningCounts()); - }); - - await fs.writeFile( - `${APP_ROOT}/traces/reports/${getFormattedTime()}.json`, - JSON.stringify(report, "", 4), - (err) => { - if (err) { - console.log("Error writing file", err); - } else { - console.log("Successfully wrote report"); - } - }, - ); - }; - - close = async () => { - this.browser.close(); - }; -}; diff --git a/app/client/perf/src/summary.js b/app/client/perf/src/summary.js deleted file mode 100644 index 5c8acbfc48..0000000000 --- a/app/client/perf/src/summary.js +++ /dev/null @@ -1,119 +0,0 @@ -const fs = require("fs"); -const path = require("path"); -const sd = require("node-stdev"); - -var median = require("median"); - -exports.summaries = async (directory) => { - const results = await parseReports( - directory, - ["scripting", "painting", "rendering"], - [], - ); - - generateMarkdown(results); -}; - -const parseReports = async ( - directory, - summaryFields = [], - warningFields = [], -) => { - const files = await fs.promises.readdir(directory); - const results = {}; - files.forEach((file) => { - if (file.endsWith(".json")) { - const content = require(`${directory}/${file}`); - Object.keys(content).forEach((key) => { - if (!results[key]) { - results[key] = {}; - } - summaryFields.forEach((summaryField) => { - if (!results[key][summaryField]) { - results[key][summaryField] = []; - } - results[key][summaryField].push( - parseFloat(content[key].summary[summaryField].toFixed(2)), - ); - }); - warningFields.forEach((warningField) => { - if (!results[key][warningField]) { - results[key][warningField] = []; - } - results[key][warningField].push( - parseFloat(content[key].warnings[warningField]), - ); - }); - }); - } - }); - return results; -}; -const getMaxSize = (results) => { - let size = 0; - Object.keys(results).forEach((key) => { - const action = results[key]; - size = Math.max(action["scripting"].length, size); - }); - - return size; -}; - -const generateMarkdown = (results) => { - const size = getMaxSize(results); - let markdown = `
Click to view performance test results\n\n| `; - for (let i = 0; i < size; i++) { - markdown = markdown + `| Run ${i + 1} `; - } - markdown = markdown + `| Median | Mean | SD.Sample | SD.Population`; - - markdown += "|\n"; - - for (let i = 0; i <= size + 4; i++) { - markdown = markdown + `| ------------- `; - } - markdown += "|\n"; - - Object.keys(results).forEach((key) => { - const action = results[key]; - markdown += `**${key}**`; - for (let i = 0; i <= size + 4; i++) { - markdown += `| `; - } - markdown += "|\n"; - - Object.keys(action).forEach((key) => { - const length = action[key].length; - markdown += `| ${key} | `; - markdown += action[key].reduce((sum, val) => `${sum} | ${val} `); - if (length < size) { - for (let i = 0; i < size - action[key].length; i++) { - markdown += " | "; - } - } - // Add median - markdown += `| ${median(action[key])}`; - // Add average - const avg = parseFloat( - (action[key].reduce((sum, val) => sum + val, 0) / length).toFixed(2), - ); - markdown += `| ${avg} | ${((sd.sample(action[key]) / avg) * 100).toFixed( - 2, - )} | ${((sd.population(action[key]) / avg) * 100).toFixed(2)}`; - - markdown += "| \n"; - }); - }); - - markdown += "
"; - - fs.writeFile(`${APP_ROOT}/traces/reports/summary.md`, markdown, (err) => { - if (err) { - console.log("Error writing file", err); - } else { - console.log("Successfully wrote summary"); - } - }); -}; - -exports.parseReports = parseReports; diff --git a/app/client/perf/src/utils/system-cleanup.js b/app/client/perf/src/utils/system-cleanup.js deleted file mode 100644 index 9a29f27bef..0000000000 --- a/app/client/perf/src/utils/system-cleanup.js +++ /dev/null @@ -1,53 +0,0 @@ -const cp = require("child_process"); - -exports.cleanTheHost = async () => { - await cp.exec("pidof chrome", (error, stdout, stderr) => { - if (error) { - console.log(`error: ${error.message}`); - return; - } - if (stderr) { - console.log(`stderr: ${stderr}`); - return; - } - console.log(`Killing chrome processes: ${stdout}`); - stdout.split(" ").forEach((PID) => { - cp.exec(`sudo kill -9 ${PID}`, (error, stdout, stder) => { - if (error) { - console.log(`Kill error: ${error.message}`); - return; - } - if (stderr) { - console.log(`Kill stderr: ${stderr}`); - return; - } - if (stdout) { - console.log(`Kill stdout: ${stdout}`); - return; - } - }); - }); - }); - - // Clear OS caches - await cp.exec("sync; echo 3 | sudo tee /proc/sys/vm/drop_caches"); -}; - -exports.setChromeProcessPriority = async () => { - await cp.exec("pidof chrome", (error, stdout, stderr) => { - if (error) { - console.log(`error: ${error.message}`); - return; - } - if (stderr) { - console.log(`stderr: ${stderr}`); - return; - } - console.log(`stdout: setting priority: ${stdout}`); - - // Set priority of chrome processes to maximum - stdout.split(" ").forEach((PID) => { - cp.execSync(`sudo renice -20 ${PID}`); - }); - }); -}; diff --git a/app/client/perf/src/utils/utils.js b/app/client/perf/src/utils/utils.js deleted file mode 100644 index 95a59d564f..0000000000 --- a/app/client/perf/src/utils/utils.js +++ /dev/null @@ -1,144 +0,0 @@ -const fs = require("fs"); -const path = require("path"); - -const delay = (time, msg = "") => { - console.log(`waiting ${msg}:`, time / 1000, "s"); - return new Promise(function(resolve) { - setTimeout(resolve, time); - }); -}; - -exports.delay = delay; - -exports.getDevToolsPage = async (browser) => { - const targets = await browser.targets(); - const devtoolsTarget = targets.filter((t) => { - return t.type() === "other" && t.url().startsWith("devtools://"); - })[0]; - - // Hack to get a page pointing to the devtools - devtoolsTarget._targetInfo.type = "page"; - const devtoolsPage = await devtoolsTarget.page(); - return devtoolsPage; -}; - -exports.gotoProfiler = async (devtoolsPage) => { - await devtoolsPage.bringToFront(); - await devtoolsPage.keyboard.down("MetaLeft"); - await devtoolsPage.keyboard.press("["); - await devtoolsPage.keyboard.up("MetaLeft"); -}; - -exports.getProfilerFrame = async (devtoolsPage) => { - const frames = await devtoolsPage.frames(); - const reactProfiler = frames[2]; // This is not foolproof - return reactProfiler; -}; - -exports.startReactProfile = async (reactProfiler) => { - const recordButton = - "#container > div > div > div > div > div.Toolbar___30kHu > button.Button___1-PiG.InactiveRecordToggle___2CUtF"; - await reactProfiler.waitForSelector(recordButton); - const container = await reactProfiler.$(recordButton); - console.log("Starting recording"); - await reactProfiler.evaluate((el) => el.click(), container); - console.log("Recording started"); -}; - -exports.stopReactProfile = async (reactProfiler) => { - const stopRecordingButton = - "#container > div > div > div > div > div.Toolbar___30kHu > button.Button___1-PiG.ActiveRecordToggle___1Cpcb"; - await reactProfiler.waitForSelector(stopRecordingButton); - const container = await reactProfiler.$(stopRecordingButton); - console.log("Stopping recording"); - await reactProfiler.evaluate((el) => el.click(), container); - console.log("Recording stopped"); -}; - -exports.downloadReactProfile = async (reactProfiler) => { - const saveProfileButton = - "#container > div > div > div > div.LeftColumn___3I7-I > div.Toolbar___30kHu > button:nth-child(8)"; - await reactProfiler.waitForSelector(saveProfileButton); - const container = await reactProfiler.$(saveProfileButton); - await reactProfiler.evaluate((el) => el.click(), container); - console.log("Downloaded the profile"); -}; - -exports.saveProfile = async (reactProfiler, name) => { - const anchorSelector = - "#container > div > div > div > div.LeftColumn___3I7-I > div.Toolbar___30kHu > a"; - await reactProfiler.waitForSelector(anchorSelector); - const anchor = await reactProfiler.$(anchorSelector); - await reactProfiler.evaluate( - (el) => console.log(el.getAttribute("href")), - anchor, - ); - const attr = await reactProfiler.$$eval(anchorSelector, (el) => - el.map((x) => x.getAttribute("href")), - ); - - const url = attr[0]; - - const profile = await reactProfiler.evaluate(async (href) => { - const blob = await fetch(href).then(async (r) => r.blob()); - const text = await blob.text(); - return text; - }, url); - const location = path.join(__dirname, `/profiles/${name}.json`); - fs.writeFileSync(location, profile); -}; - -exports.login = async (page) => { - const url = "https://dev.appsmith.com/user/login"; - // const url = "http://localhost/user/login"; - - await page.goto(url); - await page.setViewport({ width: 1920, height: 1080 }); - - await delay(1000, "before login"); - - const emailSelector = "input[name='username']"; - const passwordSelector = "input[name='password']"; - const buttonSelector = "button[type='submit']"; - - await page.waitForSelector(emailSelector); - await page.waitForSelector(passwordSelector); - await page.waitForSelector(buttonSelector); - - await page.type(emailSelector, "hello@myemail.com"); - await page.type(passwordSelector, "qwerty1234"); - delay(1000, "before clicking login button"); - await page.click(buttonSelector); -}; - -exports.getFormattedTime = () => { - var today = new Date(); - var y = today.getFullYear(); - var m = today.getMonth() + 1; - var d = today.getDate(); - var h = today.getHours(); - var mi = today.getMinutes(); - var s = today.getSeconds(); - return y + "-" + m + "-" + d + "-" + h + "-" + mi + "-" + s; -}; - -exports.sortObjectKeys = (obj) => { - const sortedObj = {}; - Object.keys(obj) - .sort() - .forEach((key) => { - sortedObj[key] = obj[key]; - }); - return sortedObj; -}; - -exports.makeid = (length = 8) => { - var result = ""; - var characters = - "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; - var charactersLength = characters.length; - for (var i = 0; i < length; i++) { - result += characters.charAt(Math.floor(Math.random() * charactersLength)); - } - return result; -}; diff --git a/app/client/perf/start-test.sh b/app/client/perf/start-test.sh deleted file mode 100644 index 28f0fd4bbc..0000000000 --- a/app/client/perf/start-test.sh +++ /dev/null @@ -1 +0,0 @@ -node ./src/index.js diff --git a/app/client/perf/tests/actions.js b/app/client/perf/tests/actions.js deleted file mode 100644 index 94591148a5..0000000000 --- a/app/client/perf/tests/actions.js +++ /dev/null @@ -1,10 +0,0 @@ -exports.actions = { - SELECT_CATEGORY: "SELECT_CATEGORY", - BIND_TABLE_DATA: "BIND_TABLE_DATA", - CLICK_ON_TABLE_ROW: "CLICK_ON_TABLE_ROW", - UPDATE_POST_TITLE: "UPDATE_POST_TITLE", - OPEN_MODAL: "OPEN_MODAL", - CLOSE_MODAL: "CLOSE_MODAL", - SELECT_WIDGET_MENU_OPEN: "SELECT_WIDGET_MENU_OPEN", - SELECT_WIDGET_SELECT_OPTION: "SELECT_WIDGET_SELECT_OPTION", -}; diff --git a/app/client/perf/tests/dsl/ImportTest.json b/app/client/perf/tests/dsl/ImportTest.json deleted file mode 100644 index f39bc90aec..0000000000 --- a/app/client/perf/tests/dsl/ImportTest.json +++ /dev/null @@ -1 +0,0 @@ -{"exportedApplication":{"name":"ImportTest","isPublic":false,"appIsExample":false,"unreadCommentThreads":0,"color":"#F4FFDE","icon":"email","slug":"importtest","evaluationVersion":2,"new":true},"datasourceList":[],"pageList":[{"userPermissions":["read:pages","manage:pages"],"gitSyncId":"61c2bbdf7f07823aaeee800f_61c2bbdf7f07823aaeee8011","unpublishedPage":{"name":"Page1","slug":"page1","layouts":[{"id":"Page1","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1432,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":1290,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":47,"minHeight":1292,"parentColumnSpace":1,"dynamicBindingPathList":[],"leftColumn":0,"children":[{"widgetName":"Table1","defaultPageSize":0,"columnOrder":["id","userId","title","body"],"isVisibleDownload":true,"dynamicPropertyPathList":[],"displayName":"Table","iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":0,"bottomRow":51,"isSortable":true,"parentRowSpace":10,"type":"TABLE_WIDGET","defaultSelectedRow":"0","hideCard":false,"animateLoading":true,"parentColumnSpace":22.1875,"dynamicTriggerPathList":[{"key":"onRowSelected"}],"dynamicBindingPathList":[{"key":"tableData"},{"key":"primaryColumns.userId.computedValue"},{"key":"primaryColumns.id.computedValue"},{"key":"primaryColumns.title.computedValue"},{"key":"primaryColumns.body.computedValue"}],"leftColumn":0,"primaryColumns":{"userId":{"index":0,"width":150,"id":"userId","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"userId","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.userId))}}"},"id":{"index":1,"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))}}"},"title":{"index":2,"width":150,"id":"title","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"title","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.title))}}"},"body":{"index":3,"width":150,"id":"body","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"body","computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.body))}}"}},"delimiter":",","onRowSelected":"{{Comments.run()}}","key":"n0pj8z97ep","derivedColumns":{},"rightColumn":38,"textSize":"PARAGRAPH","widgetId":"zjf167vmt5","isVisibleFilters":true,"tableData":"{{Posts.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,"id":60,"userId":63}},{"widgetName":"Table2","defaultPageSize":0,"columnOrder":["postId","id","name","email","body"],"isVisibleDownload":true,"dynamicPropertyPathList":[],"displayName":"Table","iconSVG":"/static/media/icon.db8a9cbd.svg","topRow":4,"bottomRow":49,"isSortable":true,"parentRowSpace":10,"type":"TABLE_WIDGET","defaultSelectedRow":"0","hideCard":false,"animateLoading":true,"parentColumnSpace":22.1875,"dynamicTriggerPathList":[],"dynamicBindingPathList":[{"key":"tableData"},{"key":"primaryColumns.postId.computedValue"},{"key":"primaryColumns.id.computedValue"},{"key":"primaryColumns.name.computedValue"},{"key":"primaryColumns.email.computedValue"},{"key":"primaryColumns.body.computedValue"}],"leftColumn":38,"primaryColumns":{"postId":{"index":0,"width":150,"id":"postId","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"postId","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.postId))}}"},"id":{"index":1,"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":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.id))}}"},"name":{"index":2,"width":150,"id":"name","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"name","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.name))}}"},"email":{"index":3,"width":150,"id":"email","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"email","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.email))}}"},"body":{"index":4,"width":150,"id":"body","horizontalAlignment":"LEFT","verticalAlignment":"CENTER","columnType":"text","textSize":"PARAGRAPH","enableFilter":true,"enableSort":true,"isVisible":true,"isDisabled":false,"isCellVisible":true,"isDerived":false,"label":"body","computedValue":"{{Table2.sanitizedTableData.map((currentRow) => ( currentRow.body))}}"}},"delimiter":",","key":"n0pj8z97ep","derivedColumns":{},"rightColumn":64,"textSize":"PARAGRAPH","widgetId":"yg7bh7rx32","isVisibleFilters":true,"tableData":"{{Comments.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,"postId":67,"id":60}},{"widgetName":"Text1","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":0,"bottomRow":4,"parentRowSpace":10,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"parentColumnSpace":22.1875,"dynamicTriggerPathList":[],"leftColumn":38,"dynamicBindingPathList":[{"key":"text"}],"text":"Comments on {{Table1.selectedRow.title}}","key":"cg0sw4ivpy","rightColumn":54,"textAlign":"LEFT","widgetId":"qmerdmwfb9","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","version":1,"parentId":"0","renderMode":"CANVAS","isLoading":false,"fontSize":"PARAGRAPH"}]},"layoutOnLoadActions":[[{"id":"61c2bc207f07823aaeee8014","name":"Posts","pluginType":"API","jsonPathKeys":[],"timeoutInMillisecond":10000}],[{"id":"61c2bc637f07823aaeee8016","name":"Comments","pluginType":"API","jsonPathKeys":["Table1.selectedRow.id"],"timeoutInMillisecond":10000}]],"new":false}],"userPermissions":[]},"publishedPage":{"name":"Page1","slug":"page1","layouts":[{"id":"Page1","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1224,"snapColumns":16,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":1254,"containerStyle":"none","snapRows":33,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":4,"minHeight":1292,"parentColumnSpace":1,"dynamicBindingPathList":[],"leftColumn":0,"children":[]},"new":false}],"userPermissions":[]},"new":true}],"publishedDefaultPageName":"Page1","unpublishedDefaultPageName":"Page1","actionList":[{"id":"61c2bc207f07823aaeee8014","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61c2bbdf7f07823aaeee800f_61c2bc207f07823aaeee8013","pluginType":"API","pluginId":"restapi-plugin","unpublishedAction":{"name":"Posts","datasource":{"userPermissions":[],"name":"DEFAULT_REST_DATASOURCE","pluginId":"restapi-plugin","datasourceConfiguration":{"url":"http://jsonplaceholder.typicode.com"},"invalids":[],"messages":[],"isValid":true,"new":true},"pageId":"Page1","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","path":"/posts","headers":[],"encodeParamsToggle":true,"queryParameters":[],"body":"","httpMethod":"GET","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":[],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Posts"},"publishedAction":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"61c2bc637f07823aaeee8016","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61c2bbdf7f07823aaeee800f_61c2bc637f07823aaeee8015","pluginType":"API","pluginId":"restapi-plugin","unpublishedAction":{"name":"Comments","datasource":{"userPermissions":[],"name":"DEFAULT_REST_DATASOURCE","pluginId":"restapi-plugin","datasourceConfiguration":{"url":"http://jsonplaceholder.typicode.com"},"invalids":[],"messages":[],"isValid":true,"new":true},"pageId":"Page1","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","path":"/comments","headers":[],"encodeParamsToggle":true,"queryParameters":[{"key":"postId","value":"{{Table1.selectedRow.id}}"}],"body":"","httpMethod":"GET","pluginSpecifiedTemplates":[{"value":true}]},"executeOnLoad":true,"dynamicBindingPathList":[{"key":"path"},{"key":"queryParameters[0].value"}],"isValid":true,"invalids":[],"messages":[],"jsonPathKeys":["Table1.selectedRow.id"],"confirmBeforeExecute":false,"userPermissions":[],"validName":"Comments"},"publishedAction":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false}],"actionCollectionList":[],"decryptedFields":{},"publishedLayoutmongoEscapedWidgets":{},"unpublishedLayoutmongoEscapedWidgets":{}} \ No newline at end of file diff --git a/app/client/perf/tests/dsl/blog-admin-app-mysql.json b/app/client/perf/tests/dsl/blog-admin-app-mysql.json deleted file mode 100644 index 474a20e649..0000000000 --- a/app/client/perf/tests/dsl/blog-admin-app-mysql.json +++ /dev/null @@ -1 +0,0 @@ -{"clientSchemaVersion":1,"serverSchemaVersion":1,"exportedApplication":{"name":"GoldenApp","isPublic":true,"appIsExample":false,"unreadCommentThreads":0,"color":"#F1DEFF","icon":"love","slug":"goldenapp","evaluationVersion":2,"appLayout":{"type":"DESKTOP"},"new":true},"datasourceList":[{"userPermissions":["execute:datasources","manage:datasources","read:datasources"],"gitSyncId":"60780a0c7dc0e0136c83e0fb_61efc11639a0da5942775f07","name":"FakeAPI","pluginId":"mysql-plugin","datasourceConfiguration":{"connection":{"mode":"READ_WRITE","ssl":{"authType":"DEFAULT"}},"endpoints":[{"host":"localhost","port":3306}],"sshProxyEnabled":false},"invalids":[],"messages":[],"isValid":true,"new":true}],"pageList":[{"userPermissions":["read:pages","manage:pages"],"gitSyncId":"61efc0f939a0da5942775f01_61efc19939a0da5942775f10","unpublishedPage":{"name":"Blog","slug":"blog","layouts":[{"id":"Blog","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1280,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":1880,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":51,"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_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,"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.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,"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"},"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))}}"},"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))}}"}},"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":228,"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":[],"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":[],"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":[],"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":[],"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":[],"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":[],"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":[],"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":[],"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":[],"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,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"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":[],"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":[],"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":[],"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":[],"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":[],"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":[],"leftColumn":0,"dynamicBindingPathList":[{"key":"text"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"{{Table1.selectedRow.post_title}}","key":"6pacxcck35","rightColumn":64,"textAlign":"LEFT","widgetId":"lhjdqceozq","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","shouldScroll":false,"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":[],"leftColumn":0,"dynamicBindingPathList":[{"key":"text"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"{{Table1.selectedRow.post_content}}","key":"6pacxcck35","rightColumn":64,"textAlign":"LEFT","widgetId":"msnx2elzmi","isVisible":true,"fontStyle":"","textColor":"#231F20","shouldScroll":false,"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":[],"leftColumn":0,"dynamicBindingPathList":[],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Show posts from","key":"kf4mmyg152","rightColumn":6,"textAlign":"LEFT","widgetId":"mywn2w5z48","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","shouldScroll":false,"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":[],"leftColumn":21,"dynamicBindingPathList":[],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"A Simple Blog Admin","key":"kf4mmyg152","rightColumn":37,"textAlign":"CENTER","widgetId":"3k35414uwf","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","shouldScroll":false,"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":32,"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')}}","color":"#040627","iconName":"cross","displayName":"Icon","iconSVG":"/static/media/icon.31d6cfe0.svg","widgetId":"hmgi4boxq2","topRow":1,"bottomRow":5,"isVisible":true,"type":"ICON_WIDGET","version":1,"hideCard":true,"parentId":"76vv2ztsz3","renderMode":"CANVAS","isLoading":false,"leftColumn":56,"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":[],"leftColumn":1,"dynamicBindingPathList":[],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Post Comments","key":"brfs5vee1o","rightColumn":41,"textAlign":"LEFT","widgetId":"53g2qiabn4","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","shouldScroll":false,"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},{"template":{"Text30":{"isVisible":true,"text":"{{List1.listData.map((currentItem, currentIndex) => {\n return (function(){\n return currentItem.post_title;\n })();\n })}}","fontSize":"PARAGRAPH","fontStyle":"BOLD","textAlign":"LEFT","textColor":"#231F20","truncateButtonColor":"#FFC13D","widgetName":"Text30","shouldScroll":false,"shouldTruncate":true,"version":1,"animateLoading":true,"type":"TEXT_WIDGET","hideCard":false,"displayName":"Text","key":"v1b9fzdb90","iconSVG":"/static/media/icon.97c59b52.svg","textStyle":"HEADING","dynamicBindingPathList":[{"key":"text"}],"dynamicTriggerPathList":[],"widgetId":"ohm5dccyt3","renderMode":"CANVAS","isLoading":false,"leftColumn":16,"rightColumn":28,"topRow":0,"bottomRow":4,"parentId":"usb4ttw3tc"},"Text31":{"isVisible":true,"text":"{{List1.listData.map((currentItem, currentIndex) => {\n return (function(){\n return currentItem.post_content;\n })();\n })}}","fontSize":"PARAGRAPH","fontStyle":"","textAlign":"LEFT","textColor":"#231F20","truncateButtonColor":"#FFC13D","widgetName":"Text31","shouldScroll":false,"shouldTruncate":true,"version":1,"animateLoading":true,"type":"TEXT_WIDGET","hideCard":false,"displayName":"Text","key":"v1b9fzdb90","iconSVG":"/static/media/icon.97c59b52.svg","textStyle":"BODY","dynamicBindingPathList":[{"key":"text"}],"dynamicTriggerPathList":[],"widgetId":"reanp9iexm","renderMode":"CANVAS","isLoading":false,"leftColumn":16,"rightColumn":24,"topRow":4,"bottomRow":8,"parentId":"usb4ttw3tc"}},"widgetName":"List1","listData":"{{SelectQuery.data}}","isCanvas":true,"displayName":"List","iconSVG":"/static/media/icon.9925ee17.svg","topRow":125,"bottomRow":186,"parentRowSpace":10,"type":"LIST_WIDGET","hideCard":false,"gridGap":0,"animateLoading":true,"parentColumnSpace":19.8125,"dynamicTriggerPathList":[],"leftColumn":32,"dynamicBindingPathList":[{"key":"template.Text30.text"},{"key":"template.Text31.text"},{"key":"listData"}],"gridType":"vertical","enhancements":true,"children":[{"widgetName":"Canvas8","displayName":"Canvas","topRow":0,"bottomRow":400,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":false,"hideCard":true,"dropDisabled":true,"openParentPropertyPane":true,"minHeight":400,"noPad":true,"parentColumnSpace":1,"leftColumn":0,"children":[{"boxShadow":"NONE","widgetName":"Container3","borderColor":"transparent","disallowCopy":true,"isCanvas":true,"displayName":"Container","iconSVG":"/static/media/icon.1977dca3.svg","topRow":0,"bottomRow":12,"dragDisabled":true,"type":"CONTAINER_WIDGET","hideCard":false,"openParentPropertyPane":true,"isDeletable":false,"animateLoading":true,"leftColumn":0,"children":[{"widgetName":"Canvas9","detachFromLayout":true,"displayName":"Canvas","widgetId":"usb4ttw3tc","containerStyle":"none","topRow":0,"bottomRow":120,"parentRowSpace":1,"isVisible":true,"type":"CANVAS_WIDGET","canExtend":false,"version":1,"hideCard":true,"parentId":"nwq8wjbrp3","renderMode":"CANVAS","isLoading":false,"parentColumnSpace":1,"leftColumn":0,"children":[{"widgetName":"Text30","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":0,"bottomRow":4,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"dynamicTriggerPathList":[],"dynamicBindingPathList":[{"key":"text"}],"leftColumn":0,"shouldTruncate":true,"truncateButtonColor":"#FFC13D","text":"{{currentItem.post_title}}","key":"v1b9fzdb90","rightColumn":64,"textAlign":"LEFT","widgetId":"ohm5dccyt3","logBlackList":{"isVisible":true,"text":true,"fontSize":true,"fontStyle":true,"textAlign":true,"textColor":true,"truncateButtonColor":true,"widgetName":true,"shouldScroll":true,"shouldTruncate":true,"version":true,"animateLoading":true,"type":true,"hideCard":true,"displayName":true,"key":true,"iconSVG":true,"isCanvas":true,"textStyle":true,"dynamicBindingPathList":true,"dynamicTriggerPathList":true,"minHeight":true,"widgetId":true,"renderMode":true,"isLoading":true,"parentColumnSpace":true,"parentRowSpace":true,"leftColumn":true,"rightColumn":true,"topRow":true,"bottomRow":true,"parentId":true},"isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","shouldScroll":false,"version":1,"parentId":"usb4ttw3tc","renderMode":"CANVAS","isLoading":false,"fontSize":"PARAGRAPH","textStyle":"HEADING"},{"widgetName":"Text31","displayName":"Text","iconSVG":"/static/media/icon.97c59b52.svg","topRow":4,"bottomRow":10,"type":"TEXT_WIDGET","hideCard":false,"animateLoading":true,"dynamicTriggerPathList":[],"dynamicBindingPathList":[{"key":"text"}],"leftColumn":0,"shouldTruncate":true,"truncateButtonColor":"#FFC13D","text":"{{currentItem.post_content}}","key":"v1b9fzdb90","rightColumn":64,"textAlign":"LEFT","widgetId":"reanp9iexm","logBlackList":{"isVisible":true,"text":true,"fontSize":true,"fontStyle":true,"textAlign":true,"textColor":true,"truncateButtonColor":true,"widgetName":true,"shouldScroll":true,"shouldTruncate":true,"version":true,"animateLoading":true,"type":true,"hideCard":true,"displayName":true,"key":true,"iconSVG":true,"isCanvas":true,"textStyle":true,"dynamicBindingPathList":true,"dynamicTriggerPathList":true,"minHeight":true,"widgetId":true,"renderMode":true,"isLoading":true,"parentColumnSpace":true,"parentRowSpace":true,"leftColumn":true,"rightColumn":true,"topRow":true,"bottomRow":true,"parentId":true},"isVisible":true,"fontStyle":"","textColor":"#231F20","shouldScroll":false,"version":1,"parentId":"usb4ttw3tc","renderMode":"CANVAS","isLoading":false,"fontSize":"PARAGRAPH","textStyle":"BODY"}],"key":"mndafeeggk"}],"borderWidth":"0","key":"we7dsrlk5c","disablePropertyPane":true,"backgroundColor":"white","rightColumn":64,"widgetId":"nwq8wjbrp3","containerStyle":"card","isVisible":true,"version":1,"parentId":"5c8r86iul8","renderMode":"CANVAS","isLoading":false,"borderRadius":"0"}],"key":"mndafeeggk","rightColumn":475.5,"detachFromLayout":true,"widgetId":"5c8r86iul8","containerStyle":"none","isVisible":true,"version":1,"parentId":"7o3wx5k1nd","renderMode":"CANVAS","isLoading":false}],"privateWidgets":{"Text30":true,"Text31":true},"key":"g39x389saf","backgroundColor":"transparent","rightColumn":64,"itemBackgroundColor":"#FFFFFF","widgetId":"7o3wx5k1nd","isVisible":true,"parentId":"0","renderMode":"CANVAS","isLoading":false}]},"layoutOnLoadActions":[[{"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_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_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},"publishedPage":{"name":"Blog","slug":"blog","layouts":[{"id":"Blog","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1280,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":1880,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":51,"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_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,"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.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,"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"},"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))}}"},"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))}}"}},"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":228,"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":[],"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":[],"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":[],"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":[],"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":[],"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":[],"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":[],"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":[],"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":[],"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,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"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":[],"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":[],"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":[],"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":[],"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":[],"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":[],"leftColumn":0,"dynamicBindingPathList":[{"key":"text"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"{{Table1.selectedRow.post_title}}","key":"6pacxcck35","rightColumn":64,"textAlign":"LEFT","widgetId":"lhjdqceozq","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","shouldScroll":false,"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":[],"leftColumn":0,"dynamicBindingPathList":[{"key":"text"}],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"{{Table1.selectedRow.post_content}}","key":"6pacxcck35","rightColumn":64,"textAlign":"LEFT","widgetId":"msnx2elzmi","isVisible":true,"fontStyle":"","textColor":"#231F20","shouldScroll":false,"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":[],"leftColumn":0,"dynamicBindingPathList":[],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Show posts from","key":"kf4mmyg152","rightColumn":6,"textAlign":"LEFT","widgetId":"mywn2w5z48","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","shouldScroll":false,"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":[],"leftColumn":21,"dynamicBindingPathList":[],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"A Simple Blog Admin","key":"kf4mmyg152","rightColumn":37,"textAlign":"CENTER","widgetId":"3k35414uwf","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","shouldScroll":false,"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')}}","color":"#040627","iconName":"cross","displayName":"Icon","iconSVG":"/static/media/icon.31d6cfe0.svg","widgetId":"hmgi4boxq2","topRow":1,"bottomRow":5,"isVisible":true,"type":"ICON_WIDGET","version":1,"hideCard":true,"parentId":"76vv2ztsz3","renderMode":"CANVAS","isLoading":false,"leftColumn":56,"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":[],"leftColumn":1,"dynamicBindingPathList":[],"shouldTruncate":false,"truncateButtonColor":"#FFC13D","text":"Post Comments","key":"brfs5vee1o","rightColumn":41,"textAlign":"LEFT","widgetId":"53g2qiabn4","isVisible":true,"fontStyle":"BOLD","textColor":"#231F20","shouldScroll":false,"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_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_61eff4883b61bf7f582f1831","unpublishedPage":{"name":"Users","slug":"users","layouts":[{"id":"Users","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1432,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":890,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":50,"minHeight":900,"parentColumnSpace":1,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0,"bottomRow":87,"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":890,"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","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,"bottomRow":86,"parentRowSpace":10,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1,"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,"primaryColumns":{"customColumn1":{"isCellVisible":true,"isDerived":true,"computedValue":"","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"},"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))}}"},"user_login":{"index":1,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"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":"{{SelectQuery.data}}","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":228,"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\": \"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,"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":[],"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":[],"leftColumn":0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_users Data"},{"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":[],"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":[],"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":[],"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":[],"leftColumn":2,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_login:"},{"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":"user_login","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_pass:"},{"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":"user_pass","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_nicename:"},{"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":"user_nicename","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_email:"},{"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":"user_email","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,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"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":0,"bottomRow":46,"parentRowSpace":10,"isVisible":"{{!!Table1.selectedRow.ID}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40,"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":[{"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":39,"bottomRow":43,"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":42,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39,"bottomRow":43,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","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":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_login}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63,"widgetId":"mlhvfasf31","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_pass}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63,"widgetId":"0lz9vhcnr0","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_nicename}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_5","rightColumn":63,"widgetId":"m4esf7fww5","topRow":26,"bottomRow":30,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_email}}","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":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.ID}}"},{"widgetName":"Text17","rightColumn":18,"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":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_login:"},{"widgetName":"Text18","rightColumn":18,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_pass:"},{"widgetName":"Text19","rightColumn":18,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_nicename:"},{"widgetName":"Text20","rightColumn":18,"textAlign":"RIGHT","widgetId":"gqpwf0yng6","topRow":26,"bottomRow":30,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":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,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":890,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":50,"minHeight":900,"parentColumnSpace":1,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0,"bottomRow":87,"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":890,"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","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,"bottomRow":86,"parentRowSpace":10,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1,"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,"primaryColumns":{"customColumn1":{"isCellVisible":true,"isDerived":true,"computedValue":"","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"},"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))}}"},"user_login":{"index":1,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"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":"{{SelectQuery.data}}","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":228,"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\": \"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,"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":[],"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":[],"leftColumn":0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_users Data"},{"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":[],"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":[],"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":[],"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":[],"leftColumn":2,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_login:"},{"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":"user_login","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_pass:"},{"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":"user_pass","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_nicename:"},{"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":"user_nicename","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_email:"},{"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":"user_email","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,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"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":0,"bottomRow":46,"parentRowSpace":10,"isVisible":"{{!!Table1.selectedRow.ID}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40,"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":[{"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":39,"bottomRow":43,"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":42,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39,"bottomRow":43,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","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":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_login}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63,"widgetId":"mlhvfasf31","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_pass}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63,"widgetId":"0lz9vhcnr0","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_nicename}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_5","rightColumn":63,"widgetId":"m4esf7fww5","topRow":26,"bottomRow":30,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_email}}","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":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.ID}}"},{"widgetName":"Text17","rightColumn":18,"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":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_login:"},{"widgetName":"Text18","rightColumn":18,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_pass:"},{"widgetName":"Text19","rightColumn":18,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_nicename:"},{"widgetName":"Text20","rightColumn":18,"textAlign":"RIGHT","widgetId":"gqpwf0yng6","topRow":26,"bottomRow":30,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":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,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":890,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":51,"minHeight":900,"parentColumnSpace":1,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0,"bottomRow":87,"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":890,"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":["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,"bottomRow":86,"parentRowSpace":10,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1,"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,"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"},"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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_id))}}"}},"delimiter":",","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":"{{SelectQuery.data}}","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":228,"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":"comment_ID","parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":7,"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,"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":[],"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":[],"leftColumn":0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_comments Data"},{"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":[],"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":[],"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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_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":[],"leftColumn":2,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author_email:"},{"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":"comment_author_email","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_post_ID:"},{"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":"comment_post_ID","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author:"},{"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":"comment_author","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author_url:"},{"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":"comment_author_url","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,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"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":0,"bottomRow":46,"parentRowSpace":10,"isVisible":"{{!!Table1.selectedRow.comment_ID}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40,"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":[{"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":39,"bottomRow":43,"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":42,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39,"bottomRow":43,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","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":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.comment_author_email}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63,"widgetId":"mlhvfasf31","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.comment_post_ID}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63,"widgetId":"0lz9vhcnr0","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.comment_author}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_5","rightColumn":63,"widgetId":"m4esf7fww5","topRow":26,"bottomRow":30,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.comment_author_url}}","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":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.comment_ID}}"},{"widgetName":"Text17","rightColumn":18,"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":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author_email:"},{"widgetName":"Text18","rightColumn":18,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_post_ID:"},{"widgetName":"Text19","rightColumn":18,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author:"},{"widgetName":"Text20","rightColumn":18,"textAlign":"RIGHT","widgetId":"gqpwf0yng6","topRow":26,"bottomRow":30,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":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,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":890,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":51,"minHeight":900,"parentColumnSpace":1,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0,"bottomRow":87,"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":890,"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":["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,"bottomRow":86,"parentRowSpace":10,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1,"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,"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"},"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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.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":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.user_id))}}"}},"delimiter":",","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":"{{SelectQuery.data}}","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":228,"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":"comment_ID","parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":7,"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,"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":[],"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":[],"leftColumn":0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_comments Data"},{"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":[],"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":[],"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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_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":[],"leftColumn":2,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author_email:"},{"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":"comment_author_email","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_post_ID:"},{"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":"comment_post_ID","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author:"},{"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":"comment_author","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author_url:"},{"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":"comment_author_url","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,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"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":0,"bottomRow":46,"parentRowSpace":10,"isVisible":"{{!!Table1.selectedRow.comment_ID}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40,"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":[{"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":39,"bottomRow":43,"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":42,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39,"bottomRow":43,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","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":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.comment_author_email}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63,"widgetId":"mlhvfasf31","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.comment_post_ID}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63,"widgetId":"0lz9vhcnr0","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.comment_author}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_5","rightColumn":63,"widgetId":"m4esf7fww5","topRow":26,"bottomRow":30,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.comment_author_url}}","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":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.comment_ID}}"},{"widgetName":"Text17","rightColumn":18,"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":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author_email:"},{"widgetName":"Text18","rightColumn":18,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_post_ID:"},{"widgetName":"Text19","rightColumn":18,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_author:"},{"widgetName":"Text20","rightColumn":18,"textAlign":"RIGHT","widgetId":"gqpwf0yng6","topRow":26,"bottomRow":30,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":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_61f3add7345f0c36171f8d59","unpublishedPage":{"name":"WP Options","slug":"wp-options","layouts":[{"id":"WP Options","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1280,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":890,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":51,"minHeight":900,"parentColumnSpace":1,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0,"bottomRow":87,"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":890,"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":["option_id","option_name","option_value","autoload","customColumn1"],"dynamicPropertyPathList":[{"key":"onPageChange"}],"isVisibleDownload":true,"topRow":10,"bottomRow":86,"parentRowSpace":10,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1,"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,"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"},"option_id":{"index":0,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"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":"{{SelectQuery.data}}","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":228,"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":"option_id","parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":7,"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,"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":[],"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":[],"leftColumn":0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_options Data"},{"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":[],"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":[],"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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_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":[],"leftColumn":2,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_name:"},{"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":"option_name","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_value:"},{"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":"option_value","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"autoload:"},{"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":"autoload","defaultText":"","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,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"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":0,"bottomRow":46,"parentRowSpace":10,"isVisible":"{{!!Table1.selectedRow.option_id}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40,"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":[{"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":39,"bottomRow":43,"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":42,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39,"bottomRow":43,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","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":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.option_name}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63,"widgetId":"mlhvfasf31","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.option_value}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63,"widgetId":"0lz9vhcnr0","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.autoload}}","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":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.option_id}}"},{"widgetName":"Text17","rightColumn":18,"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":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_name:"},{"widgetName":"Text18","rightColumn":18,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_value:"},{"widgetName":"Text19","rightColumn":18,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"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,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":890,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":51,"minHeight":900,"parentColumnSpace":1,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0,"bottomRow":87,"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":890,"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":["option_id","option_name","option_value","autoload","customColumn1"],"dynamicPropertyPathList":[{"key":"onPageChange"}],"isVisibleDownload":true,"topRow":10,"bottomRow":86,"parentRowSpace":10,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1,"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,"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"},"option_id":{"index":0,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"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":"{{SelectQuery.data}}","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":228,"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":"option_id","parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":7,"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,"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":[],"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":[],"leftColumn":0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_options Data"},{"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":[],"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":[],"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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_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":[],"leftColumn":2,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_name:"},{"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":"option_name","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_value:"},{"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":"option_value","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"autoload:"},{"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":"autoload","defaultText":"","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,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"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":0,"bottomRow":46,"parentRowSpace":10,"isVisible":"{{!!Table1.selectedRow.option_id}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40,"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":[{"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":39,"bottomRow":43,"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":42,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39,"bottomRow":43,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","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":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.option_name}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63,"widgetId":"mlhvfasf31","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.option_value}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63,"widgetId":"0lz9vhcnr0","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.autoload}}","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":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.option_id}}"},{"widgetName":"Text17","rightColumn":18,"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":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_name:"},{"widgetName":"Text18","rightColumn":18,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_value:"},{"widgetName":"Text19","rightColumn":18,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"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},{"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,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":890,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":51,"minHeight":900,"parentColumnSpace":1,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0,"bottomRow":87,"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":890,"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":["meta_id","post_id","meta_key","meta_value","customColumn1"],"dynamicPropertyPathList":[{"key":"onPageChange"}],"isVisibleDownload":true,"topRow":10,"bottomRow":86,"parentRowSpace":10,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1,"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,"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"},"meta_id":{"index":0,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"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":"{{SelectQuery.data}}","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":228,"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":"meta_id","parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":7,"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,"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":[],"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":[],"leftColumn":0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_postmeta Data"},{"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":[],"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":[],"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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_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":[],"leftColumn":2,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_key:"},{"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":"meta_key","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"post_id:"},{"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_id","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_value:"},{"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":"meta_value","defaultText":"","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,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"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":0,"bottomRow":46,"parentRowSpace":10,"isVisible":"{{!!Table1.selectedRow.meta_id}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40,"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":[{"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":39,"bottomRow":43,"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":42,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39,"bottomRow":43,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","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":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.meta_key}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63,"widgetId":"mlhvfasf31","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.post_id}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63,"widgetId":"0lz9vhcnr0","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.meta_value}}","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":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.meta_id}}"},{"widgetName":"Text17","rightColumn":18,"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":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_key:"},{"widgetName":"Text18","rightColumn":18,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"post_id:"},{"widgetName":"Text19","rightColumn":18,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"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,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":890,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":51,"minHeight":900,"parentColumnSpace":1,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0,"bottomRow":87,"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":890,"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":["meta_id","post_id","meta_key","meta_value","customColumn1"],"dynamicPropertyPathList":[{"key":"onPageChange"}],"isVisibleDownload":true,"topRow":10,"bottomRow":86,"parentRowSpace":10,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1,"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,"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"},"meta_id":{"index":0,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"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":"{{SelectQuery.data}}","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":228,"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":"meta_id","parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":7,"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,"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":[],"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":[],"leftColumn":0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_postmeta Data"},{"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":[],"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":[],"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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_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":[],"leftColumn":2,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_key:"},{"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":"meta_key","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"post_id:"},{"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_id","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_value:"},{"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":"meta_value","defaultText":"","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,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"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":0,"bottomRow":46,"parentRowSpace":10,"isVisible":"{{!!Table1.selectedRow.meta_id}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40,"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":[{"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":39,"bottomRow":43,"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":42,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39,"bottomRow":43,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","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":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.meta_key}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63,"widgetId":"mlhvfasf31","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.post_id}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63,"widgetId":"0lz9vhcnr0","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.meta_value}}","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":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.meta_id}}"},{"widgetName":"Text17","rightColumn":18,"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":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_key:"},{"widgetName":"Text18","rightColumn":18,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"post_id:"},{"widgetName":"Text19","rightColumn":18,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"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_61f901fa51793d08672fc1c7","unpublishedPage":{"name":"Comments Meta","slug":"comments-meta","layouts":[{"id":"Comments Meta","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1280,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":890,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":51,"minHeight":900,"parentColumnSpace":1,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0,"bottomRow":87,"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":890,"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":["col1","col2","col3","col4","col5","customColumn1"],"dynamicPropertyPathList":[{"key":"onPageChange"}],"isVisibleDownload":true,"topRow":10,"bottomRow":86,"parentRowSpace":10,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"primaryColumns.customColumn1.onClick"},{"key":"onSearchTextChanged"}],"dynamicBindingPathList":[{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"tableData"},{"key":"primaryColumns.col1.computedValue"},{"key":"primaryColumns.col2.computedValue"},{"key":"primaryColumns.col3.computedValue"},{"key":"primaryColumns.col4.computedValue"},{"key":"primaryColumns.col5.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"},"col4":{"isCellVisible":true,"isDerived":false,"computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.col4))}}","textSize":"PARAGRAPH","index":3,"isVisible":true,"label":"col4","columnType":"text","horizontalAlignment":"LEFT","width":150,"enableFilter":true,"enableSort":true,"id":"col4","verticalAlignment":"CENTER"},"col5":{"isCellVisible":true,"isDerived":false,"computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.col5))}}","textSize":"PARAGRAPH","index":4,"isVisible":true,"label":"col5","columnType":"text","horizontalAlignment":"LEFT","width":150,"enableFilter":true,"enableSort":true,"id":"col5","verticalAlignment":"CENTER"},"col2":{"isCellVisible":true,"isDerived":false,"computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.col2))}}","textSize":"PARAGRAPH","index":1,"isVisible":true,"label":"col2","columnType":"text","horizontalAlignment":"LEFT","width":150,"enableFilter":true,"enableSort":true,"id":"col2","verticalAlignment":"CENTER"},"col3":{"isCellVisible":true,"isDerived":false,"computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.col3))}}","textSize":"PARAGRAPH","index":2,"isVisible":true,"label":"col3","fontStyle":"","textColor":"","columnType":"text","horizontalAlignment":"LEFT","width":150,"enableFilter":true,"enableSort":true,"id":"col3","verticalAlignment":"CENTER"},"col1":{"isCellVisible":true,"isDerived":false,"computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.col1))}}","textSize":"PARAGRAPH","index":0,"isVisible":true,"label":"col1","columnType":"text","horizontalAlignment":"LEFT","width":150,"enableFilter":true,"enableSort":true,"id":"col1","verticalAlignment":"CENTER"}},"delimiter":",","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":"{{SelectQuery.data}}","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":228,"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":"meta_id","parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":7,"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\": \"comment_id\",\n\t\"value\": \"comment_id\"\n}, \n{\n\t\"label\": \"meta_id\",\n\t\"value\": \"meta_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":[],"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":[],"leftColumn":0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_commentmeta Data"},{"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":[],"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":[],"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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_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":[],"leftColumn":2,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_key:"},{"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":"meta_key","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_id:"},{"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":"comment_id","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_value:"},{"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":"meta_value","defaultText":"","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,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"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":0,"bottomRow":46,"parentRowSpace":10,"isVisible":"{{!!Table1.selectedRow.meta_id}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40,"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":[{"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":39,"bottomRow":43,"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":42,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39,"bottomRow":43,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","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":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.meta_key}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63,"widgetId":"mlhvfasf31","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.comment_id}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63,"widgetId":"0lz9vhcnr0","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.meta_value}}","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":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.meta_id}}"},{"widgetName":"Text17","rightColumn":18,"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":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_key:"},{"widgetName":"Text18","rightColumn":18,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_id:"},{"widgetName":"Text19","rightColumn":18,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_value:"}]}]}]},"layoutOnLoadActions":[[{"id":"Comments 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_61f9023051793d08672fc1d2","unpublishedPage":{"name":"Post Meta Copy","slug":"post-meta-copy","layouts":[{"id":"Post Meta Copy","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1280,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":890,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":51,"minHeight":900,"parentColumnSpace":1,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0,"bottomRow":87,"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":890,"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":["meta_id","post_id","meta_key","meta_value","customColumn1"],"dynamicPropertyPathList":[{"key":"onPageChange"}],"isVisibleDownload":true,"topRow":10,"bottomRow":86,"parentRowSpace":10,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1,"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,"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"},"meta_id":{"index":0,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"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":"{{SelectQuery.data}}","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":228,"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":"meta_id","parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":7,"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,"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":[],"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":[],"leftColumn":0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_postmeta Data"},{"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":[],"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":[],"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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_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":[],"leftColumn":2,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_key:"},{"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":"meta_key","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"post_id:"},{"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_id","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_value:"},{"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":"meta_value","defaultText":"","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,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"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":0,"bottomRow":46,"parentRowSpace":10,"isVisible":"{{!!Table1.selectedRow.meta_id}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40,"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":[{"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":39,"bottomRow":43,"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":42,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39,"bottomRow":43,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","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":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.meta_key}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63,"widgetId":"mlhvfasf31","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.post_id}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63,"widgetId":"0lz9vhcnr0","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.meta_value}}","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":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.meta_id}}"},{"widgetName":"Text17","rightColumn":18,"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":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_key:"},{"widgetName":"Text18","rightColumn":18,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"post_id:"},{"widgetName":"Text19","rightColumn":18,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_value:"}]}]}]},"layoutOnLoadActions":[[{"id":"Post Meta Copy_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_61f9023551793d08672fc1dd","unpublishedPage":{"name":"Comments Meta Copy","slug":"comments-meta-copy","layouts":[{"id":"Comments Meta Copy","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1280,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":890,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":51,"minHeight":900,"parentColumnSpace":1,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0,"bottomRow":87,"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":890,"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":["col1","col2","col3","col4","col5","customColumn1"],"dynamicPropertyPathList":[{"key":"onPageChange"}],"isVisibleDownload":true,"topRow":10,"bottomRow":86,"parentRowSpace":10,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1,"dynamicTriggerPathList":[{"key":"onPageChange"},{"key":"primaryColumns.customColumn1.onClick"},{"key":"onSearchTextChanged"}],"dynamicBindingPathList":[{"key":"primaryColumns.customColumn1.buttonLabel"},{"key":"tableData"},{"key":"primaryColumns.col1.computedValue"},{"key":"primaryColumns.col2.computedValue"},{"key":"primaryColumns.col3.computedValue"},{"key":"primaryColumns.col4.computedValue"},{"key":"primaryColumns.col5.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"},"col4":{"isCellVisible":true,"isDerived":false,"computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.col4))}}","textSize":"PARAGRAPH","index":3,"isVisible":true,"label":"col4","columnType":"text","horizontalAlignment":"LEFT","width":150,"enableFilter":true,"enableSort":true,"id":"col4","verticalAlignment":"CENTER"},"col5":{"isCellVisible":true,"isDerived":false,"computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.col5))}}","textSize":"PARAGRAPH","index":4,"isVisible":true,"label":"col5","columnType":"text","horizontalAlignment":"LEFT","width":150,"enableFilter":true,"enableSort":true,"id":"col5","verticalAlignment":"CENTER"},"col2":{"isCellVisible":true,"isDerived":false,"computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.col2))}}","textSize":"PARAGRAPH","index":1,"isVisible":true,"label":"col2","columnType":"text","horizontalAlignment":"LEFT","width":150,"enableFilter":true,"enableSort":true,"id":"col2","verticalAlignment":"CENTER"},"col3":{"isCellVisible":true,"isDerived":false,"computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.col3))}}","textSize":"PARAGRAPH","index":2,"isVisible":true,"label":"col3","fontStyle":"","textColor":"","columnType":"text","horizontalAlignment":"LEFT","width":150,"enableFilter":true,"enableSort":true,"id":"col3","verticalAlignment":"CENTER"},"col1":{"isCellVisible":true,"isDerived":false,"computedValue":"{{Table1.sanitizedTableData.map((currentRow) => ( currentRow.col1))}}","textSize":"PARAGRAPH","index":0,"isVisible":true,"label":"col1","columnType":"text","horizontalAlignment":"LEFT","width":150,"enableFilter":true,"enableSort":true,"id":"col1","verticalAlignment":"CENTER"}},"delimiter":",","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":"{{SelectQuery.data}}","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":228,"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":"meta_id","parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":7,"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\": \"comment_id\",\n\t\"value\": \"comment_id\"\n}, \n{\n\t\"label\": \"meta_id\",\n\t\"value\": \"meta_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":[],"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":[],"leftColumn":0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_commentmeta Data"},{"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":[],"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":[],"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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_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":[],"leftColumn":2,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_key:"},{"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":"meta_key","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_id:"},{"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":"comment_id","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_value:"},{"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":"meta_value","defaultText":"","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,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"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":0,"bottomRow":46,"parentRowSpace":10,"isVisible":"{{!!Table1.selectedRow.meta_id}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40,"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":[{"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":39,"bottomRow":43,"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":42,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39,"bottomRow":43,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","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":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.meta_key}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63,"widgetId":"mlhvfasf31","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.comment_id}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63,"widgetId":"0lz9vhcnr0","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.meta_value}}","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":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.meta_id}}"},{"widgetName":"Text17","rightColumn":18,"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":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_key:"},{"widgetName":"Text18","rightColumn":18,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"comment_id:"},{"widgetName":"Text19","rightColumn":18,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"meta_value:"}]}]}]},"layoutOnLoadActions":[[{"id":"Comments Meta Copy_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_61f9024051793d08672fc1e8","unpublishedPage":{"name":"Users Copy","slug":"users-copy","layouts":[{"id":"Users Copy","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1280,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":890,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":51,"minHeight":900,"parentColumnSpace":1,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0,"bottomRow":87,"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":890,"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","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,"bottomRow":86,"parentRowSpace":10,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1,"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,"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"},"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))}}"},"user_login":{"index":1,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"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":"{{SelectQuery.data}}","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":228,"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\": \"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,"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":[],"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":[],"leftColumn":0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_users Data"},{"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":[],"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":[],"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":[],"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":[],"leftColumn":2,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_login:"},{"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":"user_login","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_pass:"},{"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":"user_pass","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_nicename:"},{"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":"user_nicename","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_email:"},{"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":"user_email","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,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"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":0,"bottomRow":46,"parentRowSpace":10,"isVisible":"{{!!Table1.selectedRow.ID}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40,"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":[{"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":39,"bottomRow":43,"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":42,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39,"bottomRow":43,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","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":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_login}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63,"widgetId":"mlhvfasf31","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_pass}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63,"widgetId":"0lz9vhcnr0","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_nicename}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_5","rightColumn":63,"widgetId":"m4esf7fww5","topRow":26,"bottomRow":30,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_email}}","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":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.ID}}"},{"widgetName":"Text17","rightColumn":18,"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":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_login:"},{"widgetName":"Text18","rightColumn":18,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_pass:"},{"widgetName":"Text19","rightColumn":18,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_nicename:"},{"widgetName":"Text20","rightColumn":18,"textAlign":"RIGHT","widgetId":"gqpwf0yng6","topRow":26,"bottomRow":30,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_email:"}]}]}]},"layoutOnLoadActions":[[{"id":"Users Copy_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_61f9024b51793d08672fc1f3","unpublishedPage":{"name":"Users Copy1","slug":"users-copy1","layouts":[{"id":"Users Copy1","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1280,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":890,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":51,"minHeight":900,"parentColumnSpace":1,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0,"bottomRow":87,"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":890,"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","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,"bottomRow":86,"parentRowSpace":10,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1,"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,"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"},"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))}}"},"user_login":{"index":1,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"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":"{{SelectQuery.data}}","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":228,"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\": \"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,"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":[],"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":[],"leftColumn":0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_users Data"},{"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":[],"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":[],"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":[],"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":[],"leftColumn":2,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_login:"},{"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":"user_login","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_pass:"},{"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":"user_pass","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_nicename:"},{"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":"user_nicename","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_email:"},{"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":"user_email","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,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"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":0,"bottomRow":46,"parentRowSpace":10,"isVisible":"{{!!Table1.selectedRow.ID}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40,"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":[{"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":39,"bottomRow":43,"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":42,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39,"bottomRow":43,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","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":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_login}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63,"widgetId":"mlhvfasf31","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_pass}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63,"widgetId":"0lz9vhcnr0","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_nicename}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_5","rightColumn":63,"widgetId":"m4esf7fww5","topRow":26,"bottomRow":30,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.user_email}}","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":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.ID}}"},{"widgetName":"Text17","rightColumn":18,"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":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_login:"},{"widgetName":"Text18","rightColumn":18,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_pass:"},{"widgetName":"Text19","rightColumn":18,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_nicename:"},{"widgetName":"Text20","rightColumn":18,"textAlign":"RIGHT","widgetId":"gqpwf0yng6","topRow":26,"bottomRow":30,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":0,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"user_email:"}]}]}]},"layoutOnLoadActions":[[{"id":"Users Copy1_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_61fa173a737f9a3b3662ef38","unpublishedPage":{"name":"WP Options Copy","slug":"wp-options-copy","layouts":[{"id":"WP Options Copy","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1280,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":890,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":51,"minHeight":900,"parentColumnSpace":1,"dynamicTriggerPathList":[],"dynamicBindingPathList":[],"leftColumn":0,"children":[{"backgroundColor":"#FFFFFF","widgetName":"Container1","rightColumn":40,"widgetId":"mvubsemxfo","containerStyle":"card","topRow":0,"bottomRow":87,"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":890,"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":["option_id","option_name","option_value","autoload","customColumn1"],"dynamicPropertyPathList":[{"key":"onPageChange"}],"isVisibleDownload":true,"topRow":10,"bottomRow":86,"parentRowSpace":10,"onPageChange":"{{SelectQuery.run()}}","isSortable":true,"type":"TABLE_WIDGET","defaultSelectedRow":"0","parentColumnSpace":1,"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,"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"},"option_id":{"index":0,"width":150,"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,"width":150,"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,"width":150,"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,"width":150,"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,"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":"{{SelectQuery.data}}","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":228,"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":"option_id","parentColumnSpace":18.8828125,"dynamicTriggerPathList":[{"key":"onOptionChange"}],"leftColumn":7,"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,"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":[],"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":[],"leftColumn":0,"dynamicBindingPathList":[],"fontSize":"HEADING1","text":"perf_options Data"},{"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":[],"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":[],"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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_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":[],"leftColumn":2,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_name:"},{"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":"option_name","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_value:"},{"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":"option_value","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":[],"leftColumn":3,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"autoload:"},{"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":"autoload","defaultText":"","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,"shouldScroll":false,"parentId":"tp9pui0e6y","isLoading":false,"dynamicTriggerPathList":[],"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":0,"bottomRow":46,"parentRowSpace":10,"isVisible":"{{!!Table1.selectedRow.option_id}}","type":"FORM_WIDGET","parentId":"0","isLoading":false,"shouldScrollContents":true,"parentColumnSpace":18.8828125,"dynamicTriggerPathList":[],"leftColumn":40,"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":[{"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":39,"bottomRow":43,"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":42,"onClick":"","isDefaultClickDisabled":true,"dynamicPropertyPathList":[],"buttonColor":"#03b365","widgetId":"twwgpz5wfu","topRow":39,"bottomRow":43,"isVisible":"true","type":"FORM_BUTTON_WIDGET","version":1,"recaptchaType":"V3","parentId":"cicukwhp5j","isLoading":false,"dynamicTriggerPathList":[{"key":"onClick"}],"disabledWhenInvalid":false,"leftColumn":28,"dynamicBindingPathList":[],"buttonVariant":"SECONDARY","text":"Reset"},{"isRequired":true,"widgetName":"update_col_2","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":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.option_name}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_3","rightColumn":63,"widgetId":"mlhvfasf31","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.option_value}}","isDisabled":false,"validation":"true"},{"isRequired":true,"widgetName":"update_col_4","rightColumn":63,"widgetId":"0lz9vhcnr0","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","label":"","type":"INPUT_WIDGET","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":8.8963623046875,"dynamicTriggerPathList":[],"resetOnSubmit":true,"leftColumn":19,"dynamicBindingPathList":[{"key":"defaultText"}],"inputType":"TEXT","defaultText":"{{Table1.selectedRow.autoload}}","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":[],"leftColumn":1,"dynamicBindingPathList":[{"key":"text"}],"fontSize":"HEADING1","text":"Update Row: {{Table1.selectedRow.option_id}}"},{"widgetName":"Text17","rightColumn":18,"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":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_name:"},{"widgetName":"Text18","rightColumn":18,"textAlign":"RIGHT","widgetId":"xqcsd2e5dj","topRow":12,"bottomRow":16,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"option_value:"},{"widgetName":"Text19","rightColumn":18,"textAlign":"RIGHT","widgetId":"l109ilp3vq","topRow":19,"bottomRow":23,"parentRowSpace":10,"isVisible":"true","fontStyle":"BOLD","type":"TEXT_WIDGET","textColor":"#231F20","version":1,"parentId":"cicukwhp5j","isLoading":false,"parentColumnSpace":7.15625,"dynamicTriggerPathList":[],"leftColumn":1,"dynamicBindingPathList":[],"fontSize":"PARAGRAPH","text":"autoload:"}]}]}]},"layoutOnLoadActions":[[{"id":"WP Options Copy_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":"mysql-plugin","unpublishedAction":{"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"},"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":"mysql-plugin","unpublishedAction":{"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"},"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":"mysql-plugin","unpublishedAction":{"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"},"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":"mysql-plugin","unpublishedAction":{"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"},"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":"mysql-plugin","unpublishedAction":{"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"},"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":"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":"mysql-plugin","unpublishedAction":{"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"},"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":"Blog_GetComments","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f242880dcb6f75e86b5e78","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"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"},"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":"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_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_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_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},{"id":"Comments Meta_SelectQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f9021751793d08672fc1c9","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"SelectQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Comments Meta","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT * FROM perf_commentmeta\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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"Comments Meta_InsertQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f9021751793d08672fc1ca","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"InsertQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Comments Meta","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO perf_commentmeta (\n\tmeta_key, \n\tcomment_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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"Comments Meta_UpdateQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f9021751793d08672fc1cc","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"UpdateQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Comments Meta","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE perf_commentmeta SET\n\t\tmeta_key = '{{update_col_2.text}}',\n comment_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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"Comments Meta_DeleteQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f9021751793d08672fc1cd","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"DeleteQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Comments Meta","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM perf_commentmeta\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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"Post Meta Copy_UpdateQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f9023051793d08672fc1d4","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"UpdateQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Post Meta Copy","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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"Post Meta Copy_DeleteQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f9023051793d08672fc1d5","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"DeleteQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Post Meta Copy","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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"Post Meta Copy_InsertQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f9023051793d08672fc1d6","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"InsertQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Post Meta Copy","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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"Post Meta Copy_SelectQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f9023051793d08672fc1d7","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"SelectQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Post Meta Copy","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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"Comments Meta Copy_InsertQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f9023551793d08672fc1e0","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"InsertQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Comments Meta Copy","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"INSERT INTO perf_commentmeta (\n\tmeta_key, \n\tcomment_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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"Comments Meta Copy_SelectQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f9023551793d08672fc1df","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"SelectQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Comments Meta Copy","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"SELECT * FROM perf_commentmeta\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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"Comments Meta Copy_UpdateQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f9023551793d08672fc1e1","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"UpdateQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Comments Meta Copy","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"UPDATE perf_commentmeta SET\n\t\tmeta_key = '{{update_col_2.text}}',\n comment_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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"Comments Meta Copy_DeleteQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f9023551793d08672fc1e2","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"DeleteQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Comments Meta Copy","actionConfiguration":{"timeoutInMillisecond":10000,"paginationType":"NONE","encodeParamsToggle":true,"body":"DELETE FROM perf_commentmeta\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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"Users Copy_InsertQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f9024051793d08672fc1ea","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"InsertQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Users Copy","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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"Users Copy_UpdateQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f9024051793d08672fc1ec","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"UpdateQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Users Copy","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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"Users Copy_DeleteQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f9024051793d08672fc1eb","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"DeleteQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Users Copy","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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"Users Copy_SelectQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f9024051793d08672fc1ed","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"SelectQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Users Copy","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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"Users Copy1_SelectQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f9024b51793d08672fc1f5","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"SelectQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Users Copy1","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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"Users Copy1_InsertQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f9024b51793d08672fc1f6","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"InsertQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Users Copy1","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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"Users Copy1_DeleteQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f9024b51793d08672fc1f8","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"DeleteQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Users Copy1","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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"Users Copy1_UpdateQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61f9024b51793d08672fc1fb","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"UpdateQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"Users Copy1","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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"WP Options Copy_SelectQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61fa173b737f9a3b3662ef3a","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"SelectQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"WP Options Copy","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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"WP Options Copy_UpdateQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61fa173b737f9a3b3662ef3b","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"UpdateQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"WP Options Copy","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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"WP Options Copy_DeleteQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61fa173b737f9a3b3662ef3c","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"DeleteQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"WP Options Copy","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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false},{"id":"WP Options Copy_InsertQuery","userPermissions":["read:actions","execute:actions","manage:actions"],"gitSyncId":"61efc0f939a0da5942775f01_61fa173b737f9a3b3662ef3e","pluginType":"DB","pluginId":"mysql-plugin","unpublishedAction":{"name":"InsertQuery","datasource":{"id":"FakeAPI","userPermissions":[],"pluginId":"mysql-plugin","messages":[],"isValid":true,"new":false},"pageId":"WP Options Copy","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":{"datasource":{"userPermissions":[],"messages":[],"isValid":true,"new":true},"messages":[],"confirmBeforeExecute":false,"userPermissions":[]},"new":false}],"actionCollectionList":[],"decryptedFields":{"FakeAPI":{"password":"root123","authType":"com.appsmith.external.models.DBAuth","dbAuth":{"authenticationType":"dbAuth","authenticationType":"dbAuth","username":"root","databaseName":"fakeapi"}}},"editModeTheme":{"name":"Classic","new":true,"isSystemTheme":true},"publishedTheme":{"name":"Classic","new":true,"isSystemTheme":true},"publishedLayoutmongoEscapedWidgets":{},"unpublishedLayoutmongoEscapedWidgets":{}} \ No newline at end of file diff --git a/app/client/perf/tests/dsl/blog-admin-app-postgres.json b/app/client/perf/tests/dsl/blog-admin-app-postgres.json deleted file mode 100644 index c2c42e2ccd..0000000000 --- a/app/client/perf/tests/dsl/blog-admin-app-postgres.json +++ /dev/null @@ -1,17280 +0,0 @@ -{ - "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/dsl/simple-typing.js b/app/client/perf/tests/dsl/simple-typing.js deleted file mode 100644 index 2c041461b6..0000000000 --- a/app/client/perf/tests/dsl/simple-typing.js +++ /dev/null @@ -1,85 +0,0 @@ -exports.dsl = { - dsl: { - widgetName: "MainContainer", - backgroundColor: "none", - rightColumn: 1936, - snapColumns: 64, - detachFromLayout: true, - widgetId: "0", - topRow: 0, - bottomRow: 1290, - containerStyle: "none", - snapRows: 125, - parentRowSpace: 1, - type: "CANVAS_WIDGET", - canExtend: true, - version: 46, - minHeight: 1292, - parentColumnSpace: 1, - dynamicBindingPathList: [], - leftColumn: 0, - children: [ - { - isVisible: true, - text: "

{{Input1.text}}

", - fontSize: "HEADING1", - fontStyle: "BOLD", - textAlign: "LEFT", - textColor: "#231F20", - widgetName: "Text1", - version: 1, - type: "TEXT_WIDGET", - hideCard: false, - displayName: "Text", - key: "4ln743vbxf", - iconSVG: "/static/media/icon.97c59b52.svg", - widgetId: "oylox3e28e", - renderMode: "CANVAS", - isLoading: false, - parentColumnSpace: 30.0625, - parentRowSpace: 10, - leftColumn: 1, - rightColumn: 39, - topRow: 16, - bottomRow: 40, - parentId: "0", - dynamicBindingPathList: [ - { - key: "text", - }, - ], - dynamicTriggerPathList: [], - }, - { - isVisible: true, - inputType: "TEXT", - label: "", - widgetName: "Input1", - version: 1, - defaultText: "", - iconAlign: "left", - autoFocus: false, - labelStyle: "", - resetOnSubmit: true, - isRequired: false, - isDisabled: false, - allowCurrencyChange: false, - type: "INPUT_WIDGET", - hideCard: false, - displayName: "Input", - key: "4xvbov2itw", - iconSVG: "/static/media/icon.9f505595.svg", - widgetId: "d454uqlxd0", - renderMode: "CANVAS", - isLoading: false, - parentColumnSpace: 30.0625, - parentRowSpace: 10, - leftColumn: 1, - rightColumn: 12, - topRow: 9, - bottomRow: 13, - parentId: "0", - }, - ], - }, -}; diff --git a/app/client/perf/tests/dsl/stress-select-widget.json b/app/client/perf/tests/dsl/stress-select-widget.json deleted file mode 100644 index 9383128419..0000000000 --- a/app/client/perf/tests/dsl/stress-select-widget.json +++ /dev/null @@ -1 +0,0 @@ -{"clientSchemaVersion":1,"serverSchemaVersion":3,"exportedApplication":{"name":"Stress select widget","isPublic":false,"appIsExample":false,"unreadCommentThreads":0,"color":"#D6D1F2","icon":"snowy-weather","slug":"stress-select-widget","evaluationVersion":2,"new":true},"datasourceList":[],"pageList":[{"userPermissions":["read:pages","manage:pages"],"gitSyncId":"623816609fa6862ae807c56a_623816609fa6862ae807c56c","unpublishedPage":{"name":"Page1","slug":"page1","layouts":[{"id":"Page1","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1056,"snapColumns":64,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":5016,"containerStyle":"none","snapRows":125,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":53,"minHeight":580,"parentColumnSpace":1,"dynamicBindingPathList":[],"leftColumn":0,"children":[{"widgetName":"Select1","isFilterable":true,"displayName":"Select","iconSVG":"/static/media/icon.bd99caba.svg","labelText":"","topRow":31,"bottomRow":35,"parentRowSpace":10,"type":"SELECT_WIDGET","serverSideFiltering":false,"hideCard":false,"defaultOptionValue":"0","animateLoading":true,"parentColumnSpace":16.3125,"dynamicTriggerPathList":[],"leftColumn":21,"dynamicBindingPathList":[],"options":"[\n\t\t{\n \"label\": 0,\n \"value\": 0\n },\n {\n \"label\": 1,\n \"value\": 1\n },\n {\n \"label\": 2,\n \"value\": 2\n },\n {\n \"label\": 3,\n \"value\": 3\n },\n {\n \"label\": 4,\n \"value\": 4\n },\n {\n \"label\": 5,\n \"value\": 5\n },\n {\n \"label\": 6,\n \"value\": 6\n },\n {\n \"label\": 7,\n \"value\": 7\n },\n {\n \"label\": 8,\n \"value\": 8\n },\n {\n \"label\": 9,\n \"value\": 9\n },\n {\n \"label\": 10,\n \"value\": 10\n },\n {\n \"label\": 11,\n \"value\": 11\n },\n {\n \"label\": 12,\n \"value\": 12\n },\n {\n \"label\": 13,\n \"value\": 13\n },\n {\n \"label\": 14,\n \"value\": 14\n },\n {\n \"label\": 15,\n \"value\": 15\n },\n {\n \"label\": 16,\n \"value\": 16\n },\n {\n \"label\": 17,\n \"value\": 17\n },\n {\n \"label\": 18,\n \"value\": 18\n },\n {\n \"label\": 19,\n \"value\": 19\n },\n {\n \"label\": 20,\n \"value\": 20\n },\n {\n \"label\": 21,\n \"value\": 21\n },\n {\n \"label\": 22,\n \"value\": 22\n },\n {\n \"label\": 23,\n \"value\": 23\n },\n {\n \"label\": 24,\n \"value\": 24\n },\n {\n \"label\": 25,\n \"value\": 25\n },\n {\n \"label\": 26,\n \"value\": 26\n },\n {\n \"label\": 27,\n \"value\": 27\n },\n {\n \"label\": 28,\n \"value\": 28\n },\n {\n \"label\": 29,\n \"value\": 29\n },\n {\n \"label\": 30,\n \"value\": 30\n },\n {\n \"label\": 31,\n \"value\": 31\n },\n {\n \"label\": 32,\n \"value\": 32\n },\n {\n \"label\": 33,\n \"value\": 33\n },\n {\n \"label\": 34,\n \"value\": 34\n },\n {\n \"label\": 35,\n \"value\": 35\n },\n {\n \"label\": 36,\n \"value\": 36\n },\n {\n \"label\": 37,\n \"value\": 37\n },\n {\n \"label\": 38,\n \"value\": 38\n },\n {\n \"label\": 39,\n \"value\": 39\n },\n {\n \"label\": 40,\n \"value\": 40\n },\n {\n \"label\": 41,\n \"value\": 41\n },\n {\n \"label\": 42,\n \"value\": 42\n },\n {\n \"label\": 43,\n \"value\": 43\n },\n {\n \"label\": 44,\n \"value\": 44\n },\n {\n \"label\": 45,\n \"value\": 45\n },\n {\n \"label\": 46,\n \"value\": 46\n },\n {\n \"label\": 47,\n \"value\": 47\n },\n {\n \"label\": 48,\n \"value\": 48\n },\n {\n \"label\": 49,\n \"value\": 49\n },\n {\n \"label\": 50,\n \"value\": 50\n },\n {\n \"label\": 51,\n \"value\": 51\n },\n {\n \"label\": 52,\n \"value\": 52\n },\n {\n \"label\": 53,\n \"value\": 53\n },\n {\n \"label\": 54,\n \"value\": 54\n },\n {\n \"label\": 55,\n \"value\": 55\n },\n {\n \"label\": 56,\n \"value\": 56\n },\n {\n \"label\": 57,\n \"value\": 57\n },\n {\n \"label\": 58,\n \"value\": 58\n },\n {\n \"label\": 59,\n \"value\": 59\n },\n {\n \"label\": 60,\n \"value\": 60\n },\n {\n \"label\": 61,\n \"value\": 61\n },\n {\n \"label\": 62,\n \"value\": 62\n },\n {\n \"label\": 63,\n \"value\": 63\n },\n {\n \"label\": 64,\n \"value\": 64\n },\n {\n \"label\": 65,\n \"value\": 65\n },\n {\n \"label\": 66,\n \"value\": 66\n },\n {\n \"label\": 67,\n \"value\": 67\n },\n {\n \"label\": 68,\n \"value\": 68\n },\n {\n \"label\": 69,\n \"value\": 69\n },\n {\n \"label\": 70,\n \"value\": 70\n },\n {\n \"label\": 71,\n \"value\": 71\n },\n {\n \"label\": 72,\n \"value\": 72\n },\n {\n \"label\": 73,\n \"value\": 73\n },\n {\n \"label\": 74,\n \"value\": 74\n },\n {\n \"label\": 75,\n \"value\": 75\n },\n {\n \"label\": 76,\n \"value\": 76\n },\n {\n \"label\": 77,\n \"value\": 77\n },\n {\n \"label\": 78,\n \"value\": 78\n },\n {\n \"label\": 79,\n \"value\": 79\n },\n {\n \"label\": 80,\n \"value\": 80\n },\n {\n \"label\": 81,\n \"value\": 81\n },\n {\n \"label\": 82,\n \"value\": 82\n },\n {\n \"label\": 83,\n \"value\": 83\n },\n {\n \"label\": 84,\n \"value\": 84\n },\n {\n \"label\": 85,\n \"value\": 85\n },\n {\n \"label\": 86,\n \"value\": 86\n },\n {\n \"label\": 87,\n \"value\": 87\n },\n {\n \"label\": 88,\n \"value\": 88\n },\n {\n \"label\": 89,\n \"value\": 89\n },\n {\n \"label\": 90,\n \"value\": 90\n },\n {\n \"label\": 91,\n \"value\": 91\n },\n {\n \"label\": 92,\n \"value\": 92\n },\n {\n \"label\": 93,\n \"value\": 93\n },\n {\n \"label\": 94,\n \"value\": 94\n },\n {\n \"label\": 95,\n \"value\": 95\n },\n {\n \"label\": 96,\n \"value\": 96\n },\n {\n \"label\": 97,\n \"value\": 97\n },\n {\n \"label\": 98,\n \"value\": 98\n },\n {\n \"label\": 99,\n \"value\": 99\n },\n {\n \"label\": 100,\n \"value\": 100\n },\n {\n \"label\": 101,\n \"value\": 101\n },\n {\n \"label\": 102,\n \"value\": 102\n },\n {\n \"label\": 103,\n \"value\": 103\n },\n {\n \"label\": 104,\n \"value\": 104\n },\n {\n \"label\": 105,\n \"value\": 105\n },\n {\n \"label\": 106,\n \"value\": 106\n },\n {\n \"label\": 107,\n \"value\": 107\n },\n {\n \"label\": 108,\n \"value\": 108\n },\n {\n \"label\": 109,\n \"value\": 109\n },\n {\n \"label\": 110,\n \"value\": 110\n },\n {\n \"label\": 111,\n \"value\": 111\n },\n {\n \"label\": 112,\n \"value\": 112\n },\n {\n \"label\": 113,\n \"value\": 113\n },\n {\n \"label\": 114,\n \"value\": 114\n },\n {\n \"label\": 115,\n \"value\": 115\n },\n {\n \"label\": 116,\n \"value\": 116\n },\n {\n \"label\": 117,\n \"value\": 117\n },\n {\n \"label\": 118,\n \"value\": 118\n },\n {\n \"label\": 119,\n \"value\": 119\n },\n {\n \"label\": 120,\n \"value\": 120\n },\n {\n \"label\": 121,\n \"value\": 121\n },\n {\n \"label\": 122,\n \"value\": 122\n },\n {\n \"label\": 123,\n \"value\": 123\n },\n {\n \"label\": 124,\n \"value\": 124\n },\n {\n \"label\": 125,\n \"value\": 125\n },\n {\n \"label\": 126,\n \"value\": 126\n },\n {\n \"label\": 127,\n \"value\": 127\n },\n {\n \"label\": 128,\n \"value\": 128\n },\n {\n \"label\": 129,\n \"value\": 129\n },\n {\n \"label\": 130,\n \"value\": 130\n },\n {\n \"label\": 131,\n \"value\": 131\n },\n {\n \"label\": 132,\n \"value\": 132\n },\n {\n \"label\": 133,\n \"value\": 133\n },\n {\n \"label\": 134,\n \"value\": 134\n },\n {\n \"label\": 135,\n \"value\": 135\n },\n {\n \"label\": 136,\n \"value\": 136\n },\n {\n \"label\": 137,\n \"value\": 137\n },\n {\n \"label\": 138,\n \"value\": 138\n },\n {\n \"label\": 139,\n \"value\": 139\n },\n {\n \"label\": 140,\n \"value\": 140\n },\n {\n \"label\": 141,\n \"value\": 141\n },\n {\n \"label\": 142,\n \"value\": 142\n },\n {\n \"label\": 143,\n \"value\": 143\n },\n {\n \"label\": 144,\n \"value\": 144\n },\n {\n \"label\": 145,\n \"value\": 145\n },\n {\n \"label\": 146,\n \"value\": 146\n },\n {\n \"label\": 147,\n \"value\": 147\n },\n {\n \"label\": 148,\n \"value\": 148\n },\n {\n \"label\": 149,\n \"value\": 149\n },\n {\n \"label\": 150,\n \"value\": 150\n },\n {\n \"label\": 151,\n \"value\": 151\n },\n {\n \"label\": 152,\n \"value\": 152\n },\n {\n \"label\": 153,\n \"value\": 153\n },\n {\n \"label\": 154,\n \"value\": 154\n },\n {\n \"label\": 155,\n \"value\": 155\n },\n {\n \"label\": 156,\n \"value\": 156\n },\n {\n \"label\": 157,\n \"value\": 157\n },\n {\n \"label\": 158,\n \"value\": 158\n },\n {\n \"label\": 159,\n \"value\": 159\n },\n {\n \"label\": 160,\n \"value\": 160\n },\n {\n \"label\": 161,\n \"value\": 161\n },\n {\n \"label\": 162,\n \"value\": 162\n },\n {\n \"label\": 163,\n \"value\": 163\n },\n {\n \"label\": 164,\n \"value\": 164\n },\n {\n \"label\": 165,\n \"value\": 165\n },\n {\n \"label\": 166,\n \"value\": 166\n },\n {\n \"label\": 167,\n \"value\": 167\n },\n {\n \"label\": 168,\n \"value\": 168\n },\n {\n \"label\": 169,\n \"value\": 169\n },\n {\n \"label\": 170,\n \"value\": 170\n },\n {\n \"label\": 171,\n \"value\": 171\n },\n {\n \"label\": 172,\n \"value\": 172\n },\n {\n \"label\": 173,\n \"value\": 173\n },\n {\n \"label\": 174,\n \"value\": 174\n },\n {\n \"label\": 175,\n \"value\": 175\n },\n {\n \"label\": 176,\n \"value\": 176\n },\n {\n \"label\": 177,\n \"value\": 177\n },\n {\n \"label\": 178,\n \"value\": 178\n },\n {\n \"label\": 179,\n \"value\": 179\n },\n {\n \"label\": 180,\n \"value\": 180\n },\n {\n \"label\": 181,\n \"value\": 181\n },\n {\n \"label\": 182,\n \"value\": 182\n },\n {\n \"label\": 183,\n \"value\": 183\n },\n {\n \"label\": 184,\n \"value\": 184\n },\n {\n \"label\": 185,\n \"value\": 185\n },\n {\n \"label\": 186,\n \"value\": 186\n },\n {\n \"label\": 187,\n \"value\": 187\n },\n {\n \"label\": 188,\n \"value\": 188\n },\n {\n \"label\": 189,\n \"value\": 189\n },\n {\n \"label\": 190,\n \"value\": 190\n },\n {\n \"label\": 191,\n \"value\": 191\n },\n {\n \"label\": 192,\n \"value\": 192\n },\n {\n \"label\": 193,\n \"value\": 193\n },\n {\n \"label\": 194,\n \"value\": 194\n },\n {\n \"label\": 195,\n \"value\": 195\n },\n {\n \"label\": 196,\n \"value\": 196\n },\n {\n \"label\": 197,\n \"value\": 197\n },\n {\n \"label\": 198,\n \"value\": 198\n },\n {\n \"label\": 199,\n \"value\": 199\n },\n {\n \"label\": 200,\n \"value\": 200\n },\n {\n \"label\": 201,\n \"value\": 201\n },\n {\n \"label\": 202,\n \"value\": 202\n },\n {\n \"label\": 203,\n \"value\": 203\n },\n {\n \"label\": 204,\n \"value\": 204\n },\n {\n \"label\": 205,\n \"value\": 205\n },\n {\n \"label\": 206,\n \"value\": 206\n },\n {\n \"label\": 207,\n \"value\": 207\n },\n {\n \"label\": 208,\n \"value\": 208\n },\n {\n \"label\": 209,\n \"value\": 209\n },\n {\n \"label\": 210,\n \"value\": 210\n },\n {\n \"label\": 211,\n \"value\": 211\n },\n {\n \"label\": 212,\n \"value\": 212\n },\n {\n \"label\": 213,\n \"value\": 213\n },\n {\n \"label\": 214,\n \"value\": 214\n },\n {\n \"label\": 215,\n \"value\": 215\n },\n {\n \"label\": 216,\n \"value\": 216\n },\n {\n \"label\": 217,\n \"value\": 217\n },\n {\n \"label\": 218,\n \"value\": 218\n },\n {\n \"label\": 219,\n \"value\": 219\n },\n {\n \"label\": 220,\n \"value\": 220\n },\n {\n \"label\": 221,\n \"value\": 221\n },\n {\n \"label\": 222,\n \"value\": 222\n },\n {\n \"label\": 223,\n \"value\": 223\n },\n {\n \"label\": 224,\n \"value\": 224\n },\n {\n \"label\": 225,\n \"value\": 225\n },\n {\n \"label\": 226,\n \"value\": 226\n },\n {\n \"label\": 227,\n \"value\": 227\n },\n {\n \"label\": 228,\n \"value\": 228\n },\n {\n \"label\": 229,\n \"value\": 229\n },\n {\n \"label\": 230,\n \"value\": 230\n },\n {\n \"label\": 231,\n \"value\": 231\n },\n {\n \"label\": 232,\n \"value\": 232\n },\n {\n \"label\": 233,\n \"value\": 233\n },\n {\n \"label\": 234,\n \"value\": 234\n },\n {\n \"label\": 235,\n \"value\": 235\n },\n {\n \"label\": 236,\n \"value\": 236\n },\n {\n \"label\": 237,\n \"value\": 237\n },\n {\n \"label\": 238,\n \"value\": 238\n },\n {\n \"label\": 239,\n \"value\": 239\n },\n {\n \"label\": 240,\n \"value\": 240\n },\n {\n \"label\": 241,\n \"value\": 241\n },\n {\n \"label\": 242,\n \"value\": 242\n },\n {\n \"label\": 243,\n \"value\": 243\n },\n {\n \"label\": 244,\n \"value\": 244\n },\n {\n \"label\": 245,\n \"value\": 245\n },\n {\n \"label\": 246,\n \"value\": 246\n },\n {\n \"label\": 247,\n \"value\": 247\n },\n {\n \"label\": 248,\n \"value\": 248\n },\n {\n \"label\": 249,\n \"value\": 249\n },\n {\n \"label\": 250,\n \"value\": 250\n },\n {\n \"label\": 251,\n \"value\": 251\n },\n {\n \"label\": 252,\n \"value\": 252\n },\n {\n \"label\": 253,\n \"value\": 253\n },\n {\n \"label\": 254,\n \"value\": 254\n },\n {\n \"label\": 255,\n \"value\": 255\n },\n {\n \"label\": 256,\n \"value\": 256\n },\n {\n \"label\": 257,\n \"value\": 257\n },\n {\n \"label\": 258,\n \"value\": 258\n },\n {\n \"label\": 259,\n \"value\": 259\n },\n {\n \"label\": 260,\n \"value\": 260\n },\n {\n \"label\": 261,\n \"value\": 261\n },\n {\n \"label\": 262,\n \"value\": 262\n },\n {\n \"label\": 263,\n \"value\": 263\n },\n {\n \"label\": 264,\n \"value\": 264\n },\n {\n \"label\": 265,\n \"value\": 265\n },\n {\n \"label\": 266,\n \"value\": 266\n },\n {\n \"label\": 267,\n \"value\": 267\n },\n {\n \"label\": 268,\n \"value\": 268\n },\n {\n \"label\": 269,\n \"value\": 269\n },\n {\n \"label\": 270,\n \"value\": 270\n },\n {\n \"label\": 271,\n \"value\": 271\n },\n {\n \"label\": 272,\n \"value\": 272\n },\n {\n \"label\": 273,\n \"value\": 273\n },\n {\n \"label\": 274,\n \"value\": 274\n },\n {\n \"label\": 275,\n \"value\": 275\n },\n {\n \"label\": 276,\n \"value\": 276\n },\n {\n \"label\": 277,\n \"value\": 277\n },\n {\n \"label\": 278,\n \"value\": 278\n },\n {\n \"label\": 279,\n \"value\": 279\n },\n {\n \"label\": 280,\n \"value\": 280\n },\n {\n \"label\": 281,\n \"value\": 281\n },\n {\n \"label\": 282,\n \"value\": 282\n },\n {\n \"label\": 283,\n \"value\": 283\n },\n {\n \"label\": 284,\n \"value\": 284\n },\n {\n \"label\": 285,\n \"value\": 285\n },\n {\n \"label\": 286,\n \"value\": 286\n },\n {\n \"label\": 287,\n \"value\": 287\n },\n {\n \"label\": 288,\n \"value\": 288\n },\n {\n \"label\": 289,\n \"value\": 289\n },\n {\n \"label\": 290,\n \"value\": 290\n },\n {\n \"label\": 291,\n \"value\": 291\n },\n {\n \"label\": 292,\n \"value\": 292\n },\n {\n \"label\": 293,\n \"value\": 293\n },\n {\n \"label\": 294,\n \"value\": 294\n },\n {\n \"label\": 295,\n \"value\": 295\n },\n {\n \"label\": 296,\n \"value\": 296\n },\n {\n \"label\": 297,\n \"value\": 297\n },\n {\n \"label\": 298,\n \"value\": 298\n },\n {\n \"label\": 299,\n \"value\": 299\n },\n {\n \"label\": 300,\n \"value\": 300\n },\n {\n \"label\": 301,\n \"value\": 301\n },\n {\n \"label\": 302,\n \"value\": 302\n },\n {\n \"label\": 303,\n \"value\": 303\n },\n {\n \"label\": 304,\n \"value\": 304\n },\n {\n \"label\": 305,\n \"value\": 305\n },\n {\n \"label\": 306,\n \"value\": 306\n },\n {\n \"label\": 307,\n \"value\": 307\n },\n {\n \"label\": 308,\n \"value\": 308\n },\n {\n \"label\": 309,\n \"value\": 309\n },\n {\n \"label\": 310,\n \"value\": 310\n },\n {\n \"label\": 311,\n \"value\": 311\n },\n {\n \"label\": 312,\n \"value\": 312\n },\n {\n \"label\": 313,\n \"value\": 313\n },\n {\n \"label\": 314,\n \"value\": 314\n },\n {\n \"label\": 315,\n \"value\": 315\n },\n {\n \"label\": 316,\n \"value\": 316\n },\n {\n \"label\": 317,\n \"value\": 317\n },\n {\n \"label\": 318,\n \"value\": 318\n },\n {\n \"label\": 319,\n \"value\": 319\n },\n {\n \"label\": 320,\n \"value\": 320\n },\n {\n \"label\": 321,\n \"value\": 321\n },\n {\n \"label\": 322,\n \"value\": 322\n },\n {\n \"label\": 323,\n \"value\": 323\n },\n {\n \"label\": 324,\n \"value\": 324\n },\n {\n \"label\": 325,\n \"value\": 325\n },\n {\n \"label\": 326,\n \"value\": 326\n },\n {\n \"label\": 327,\n \"value\": 327\n },\n {\n \"label\": 328,\n \"value\": 328\n },\n {\n \"label\": 329,\n \"value\": 329\n },\n {\n \"label\": 330,\n \"value\": 330\n },\n {\n \"label\": 331,\n \"value\": 331\n },\n {\n \"label\": 332,\n \"value\": 332\n },\n {\n \"label\": 333,\n \"value\": 333\n },\n {\n \"label\": 334,\n \"value\": 334\n },\n {\n \"label\": 335,\n \"value\": 335\n },\n {\n \"label\": 336,\n \"value\": 336\n },\n {\n \"label\": 337,\n \"value\": 337\n },\n {\n \"label\": 338,\n \"value\": 338\n },\n {\n \"label\": 339,\n \"value\": 339\n },\n {\n \"label\": 340,\n \"value\": 340\n },\n {\n \"label\": 341,\n \"value\": 341\n },\n {\n \"label\": 342,\n \"value\": 342\n },\n {\n \"label\": 343,\n \"value\": 343\n },\n {\n \"label\": 344,\n \"value\": 344\n },\n {\n \"label\": 345,\n \"value\": 345\n },\n {\n \"label\": 346,\n \"value\": 346\n },\n {\n \"label\": 347,\n \"value\": 347\n },\n {\n \"label\": 348,\n \"value\": 348\n },\n {\n \"label\": 349,\n \"value\": 349\n },\n {\n \"label\": 350,\n \"value\": 350\n },\n {\n \"label\": 351,\n \"value\": 351\n },\n {\n \"label\": 352,\n \"value\": 352\n },\n {\n \"label\": 353,\n \"value\": 353\n },\n {\n \"label\": 354,\n \"value\": 354\n },\n {\n \"label\": 355,\n \"value\": 355\n },\n {\n \"label\": 356,\n \"value\": 356\n },\n {\n \"label\": 357,\n \"value\": 357\n },\n {\n \"label\": 358,\n \"value\": 358\n },\n {\n \"label\": 359,\n \"value\": 359\n },\n {\n \"label\": 360,\n \"value\": 360\n },\n {\n \"label\": 361,\n \"value\": 361\n },\n {\n \"label\": 362,\n \"value\": 362\n },\n {\n \"label\": 363,\n \"value\": 363\n },\n {\n \"label\": 364,\n \"value\": 364\n },\n {\n \"label\": 365,\n \"value\": 365\n },\n {\n \"label\": 366,\n \"value\": 366\n },\n {\n \"label\": 367,\n \"value\": 367\n },\n {\n \"label\": 368,\n \"value\": 368\n },\n {\n \"label\": 369,\n \"value\": 369\n },\n {\n \"label\": 370,\n \"value\": 370\n },\n {\n \"label\": 371,\n \"value\": 371\n },\n {\n \"label\": 372,\n \"value\": 372\n },\n {\n \"label\": 373,\n \"value\": 373\n },\n {\n \"label\": 374,\n \"value\": 374\n },\n {\n \"label\": 375,\n \"value\": 375\n },\n {\n \"label\": 376,\n \"value\": 376\n },\n {\n \"label\": 377,\n \"value\": 377\n },\n {\n \"label\": 378,\n \"value\": 378\n },\n {\n \"label\": 379,\n \"value\": 379\n },\n {\n \"label\": 380,\n \"value\": 380\n },\n {\n \"label\": 381,\n \"value\": 381\n },\n {\n \"label\": 382,\n \"value\": 382\n },\n {\n \"label\": 383,\n \"value\": 383\n },\n {\n \"label\": 384,\n \"value\": 384\n },\n {\n \"label\": 385,\n \"value\": 385\n },\n {\n \"label\": 386,\n \"value\": 386\n },\n {\n \"label\": 387,\n \"value\": 387\n },\n {\n \"label\": 388,\n \"value\": 388\n },\n {\n \"label\": 389,\n \"value\": 389\n },\n {\n \"label\": 390,\n \"value\": 390\n },\n {\n \"label\": 391,\n \"value\": 391\n },\n {\n \"label\": 392,\n \"value\": 392\n },\n {\n \"label\": 393,\n \"value\": 393\n },\n {\n \"label\": 394,\n \"value\": 394\n },\n {\n \"label\": 395,\n \"value\": 395\n },\n {\n \"label\": 396,\n \"value\": 396\n },\n {\n \"label\": 397,\n \"value\": 397\n },\n {\n \"label\": 398,\n \"value\": 398\n },\n {\n \"label\": 399,\n \"value\": 399\n },\n {\n \"label\": 400,\n \"value\": 400\n },\n {\n \"label\": 401,\n \"value\": 401\n },\n {\n \"label\": 402,\n \"value\": 402\n },\n {\n \"label\": 403,\n \"value\": 403\n },\n {\n \"label\": 404,\n \"value\": 404\n },\n {\n \"label\": 405,\n \"value\": 405\n },\n {\n \"label\": 406,\n \"value\": 406\n },\n {\n \"label\": 407,\n \"value\": 407\n },\n {\n \"label\": 408,\n \"value\": 408\n },\n {\n \"label\": 409,\n \"value\": 409\n },\n {\n \"label\": 410,\n \"value\": 410\n },\n {\n \"label\": 411,\n \"value\": 411\n },\n {\n \"label\": 412,\n \"value\": 412\n },\n {\n \"label\": 413,\n \"value\": 413\n },\n {\n \"label\": 414,\n \"value\": 414\n },\n {\n \"label\": 415,\n \"value\": 415\n },\n {\n \"label\": 416,\n \"value\": 416\n },\n {\n \"label\": 417,\n \"value\": 417\n },\n {\n \"label\": 418,\n \"value\": 418\n },\n {\n \"label\": 419,\n \"value\": 419\n },\n {\n \"label\": 420,\n \"value\": 420\n },\n {\n \"label\": 421,\n \"value\": 421\n },\n {\n \"label\": 422,\n \"value\": 422\n },\n {\n \"label\": 423,\n \"value\": 423\n },\n {\n \"label\": 424,\n \"value\": 424\n },\n {\n \"label\": 425,\n \"value\": 425\n },\n {\n \"label\": 426,\n \"value\": 426\n },\n {\n \"label\": 427,\n \"value\": 427\n },\n {\n \"label\": 428,\n \"value\": 428\n },\n {\n \"label\": 429,\n \"value\": 429\n },\n {\n \"label\": 430,\n \"value\": 430\n },\n {\n \"label\": 431,\n \"value\": 431\n },\n {\n \"label\": 432,\n \"value\": 432\n },\n {\n \"label\": 433,\n \"value\": 433\n },\n {\n \"label\": 434,\n \"value\": 434\n },\n {\n \"label\": 435,\n \"value\": 435\n },\n {\n \"label\": 436,\n \"value\": 436\n },\n {\n \"label\": 437,\n \"value\": 437\n },\n {\n \"label\": 438,\n \"value\": 438\n },\n {\n \"label\": 439,\n \"value\": 439\n },\n {\n \"label\": 440,\n \"value\": 440\n },\n {\n \"label\": 441,\n \"value\": 441\n },\n {\n \"label\": 442,\n \"value\": 442\n },\n {\n \"label\": 443,\n \"value\": 443\n },\n {\n \"label\": 444,\n \"value\": 444\n },\n {\n \"label\": 445,\n \"value\": 445\n },\n {\n \"label\": 446,\n \"value\": 446\n },\n {\n \"label\": 447,\n \"value\": 447\n },\n {\n \"label\": 448,\n \"value\": 448\n },\n {\n \"label\": 449,\n \"value\": 449\n },\n {\n \"label\": 450,\n \"value\": 450\n },\n {\n \"label\": 451,\n \"value\": 451\n },\n {\n \"label\": 452,\n \"value\": 452\n },\n {\n \"label\": 453,\n \"value\": 453\n },\n {\n \"label\": 454,\n \"value\": 454\n },\n {\n \"label\": 455,\n \"value\": 455\n },\n {\n \"label\": 456,\n \"value\": 456\n },\n {\n \"label\": 457,\n \"value\": 457\n },\n {\n \"label\": 458,\n \"value\": 458\n },\n {\n \"label\": 459,\n \"value\": 459\n },\n {\n \"label\": 460,\n \"value\": 460\n },\n {\n \"label\": 461,\n \"value\": 461\n },\n {\n \"label\": 462,\n \"value\": 462\n },\n {\n \"label\": 463,\n \"value\": 463\n },\n {\n \"label\": 464,\n \"value\": 464\n },\n {\n \"label\": 465,\n \"value\": 465\n },\n {\n \"label\": 466,\n \"value\": 466\n },\n {\n \"label\": 467,\n \"value\": 467\n },\n {\n \"label\": 468,\n \"value\": 468\n },\n {\n \"label\": 469,\n \"value\": 469\n },\n {\n \"label\": 470,\n \"value\": 470\n },\n {\n \"label\": 471,\n \"value\": 471\n },\n {\n \"label\": 472,\n \"value\": 472\n },\n {\n \"label\": 473,\n \"value\": 473\n },\n {\n \"label\": 474,\n \"value\": 474\n },\n {\n \"label\": 475,\n \"value\": 475\n },\n {\n \"label\": 476,\n \"value\": 476\n },\n {\n \"label\": 477,\n \"value\": 477\n },\n {\n \"label\": 478,\n \"value\": 478\n },\n {\n \"label\": 479,\n \"value\": 479\n },\n {\n \"label\": 480,\n \"value\": 480\n },\n {\n \"label\": 481,\n \"value\": 481\n },\n {\n \"label\": 482,\n \"value\": 482\n },\n {\n \"label\": 483,\n \"value\": 483\n },\n {\n \"label\": 484,\n \"value\": 484\n },\n {\n \"label\": 485,\n \"value\": 485\n },\n {\n \"label\": 486,\n \"value\": 486\n },\n {\n \"label\": 487,\n \"value\": 487\n },\n {\n \"label\": 488,\n \"value\": 488\n },\n {\n \"label\": 489,\n \"value\": 489\n },\n {\n \"label\": 490,\n \"value\": 490\n },\n {\n \"label\": 491,\n \"value\": 491\n },\n {\n \"label\": 492,\n \"value\": 492\n },\n {\n \"label\": 493,\n \"value\": 493\n },\n {\n \"label\": 494,\n \"value\": 494\n },\n {\n \"label\": 495,\n \"value\": 495\n },\n {\n \"label\": 496,\n \"value\": 496\n },\n {\n \"label\": 497,\n \"value\": 497\n },\n {\n \"label\": 498,\n \"value\": 498\n },\n {\n \"label\": 499,\n \"value\": 499\n },\n {\n \"label\": 500,\n \"value\": 500\n },\n {\n \"label\": 501,\n \"value\": 501\n },\n {\n \"label\": 502,\n \"value\": 502\n },\n {\n \"label\": 503,\n \"value\": 503\n },\n {\n \"label\": 504,\n \"value\": 504\n },\n {\n \"label\": 505,\n \"value\": 505\n },\n {\n \"label\": 506,\n \"value\": 506\n },\n {\n \"label\": 507,\n \"value\": 507\n },\n {\n \"label\": 508,\n \"value\": 508\n },\n {\n \"label\": 509,\n \"value\": 509\n },\n {\n \"label\": 510,\n \"value\": 510\n },\n {\n \"label\": 511,\n \"value\": 511\n },\n {\n \"label\": 512,\n \"value\": 512\n },\n {\n \"label\": 513,\n \"value\": 513\n },\n {\n \"label\": 514,\n \"value\": 514\n },\n {\n \"label\": 515,\n \"value\": 515\n },\n {\n \"label\": 516,\n \"value\": 516\n },\n {\n \"label\": 517,\n \"value\": 517\n },\n {\n \"label\": 518,\n \"value\": 518\n },\n {\n \"label\": 519,\n \"value\": 519\n },\n {\n \"label\": 520,\n \"value\": 520\n },\n {\n \"label\": 521,\n \"value\": 521\n },\n {\n \"label\": 522,\n \"value\": 522\n },\n {\n \"label\": 523,\n \"value\": 523\n },\n {\n \"label\": 524,\n \"value\": 524\n },\n {\n \"label\": 525,\n \"value\": 525\n },\n {\n \"label\": 526,\n \"value\": 526\n },\n {\n \"label\": 527,\n \"value\": 527\n },\n {\n \"label\": 528,\n \"value\": 528\n },\n {\n \"label\": 529,\n \"value\": 529\n },\n {\n \"label\": 530,\n \"value\": 530\n },\n {\n \"label\": 531,\n \"value\": 531\n },\n {\n \"label\": 532,\n \"value\": 532\n },\n {\n \"label\": 533,\n \"value\": 533\n },\n {\n \"label\": 534,\n \"value\": 534\n },\n {\n \"label\": 535,\n \"value\": 535\n },\n {\n \"label\": 536,\n \"value\": 536\n },\n {\n \"label\": 537,\n \"value\": 537\n },\n {\n \"label\": 538,\n \"value\": 538\n },\n {\n \"label\": 539,\n \"value\": 539\n },\n {\n \"label\": 540,\n \"value\": 540\n },\n {\n \"label\": 541,\n \"value\": 541\n },\n {\n \"label\": 542,\n \"value\": 542\n },\n {\n \"label\": 543,\n \"value\": 543\n },\n {\n \"label\": 544,\n \"value\": 544\n },\n {\n \"label\": 545,\n \"value\": 545\n },\n {\n \"label\": 546,\n \"value\": 546\n },\n {\n \"label\": 547,\n \"value\": 547\n },\n {\n \"label\": 548,\n \"value\": 548\n },\n {\n \"label\": 549,\n \"value\": 549\n },\n {\n \"label\": 550,\n \"value\": 550\n },\n {\n \"label\": 551,\n \"value\": 551\n },\n {\n \"label\": 552,\n \"value\": 552\n },\n {\n \"label\": 553,\n \"value\": 553\n },\n {\n \"label\": 554,\n \"value\": 554\n },\n {\n \"label\": 555,\n \"value\": 555\n },\n {\n \"label\": 556,\n \"value\": 556\n },\n {\n \"label\": 557,\n \"value\": 557\n },\n {\n \"label\": 558,\n \"value\": 558\n },\n {\n \"label\": 559,\n \"value\": 559\n },\n {\n \"label\": 560,\n \"value\": 560\n },\n {\n \"label\": 561,\n \"value\": 561\n },\n {\n \"label\": 562,\n \"value\": 562\n },\n {\n \"label\": 563,\n \"value\": 563\n },\n {\n \"label\": 564,\n \"value\": 564\n },\n {\n \"label\": 565,\n \"value\": 565\n },\n {\n \"label\": 566,\n \"value\": 566\n },\n {\n \"label\": 567,\n \"value\": 567\n },\n {\n \"label\": 568,\n \"value\": 568\n },\n {\n \"label\": 569,\n \"value\": 569\n },\n {\n \"label\": 570,\n \"value\": 570\n },\n {\n \"label\": 571,\n \"value\": 571\n },\n {\n \"label\": 572,\n \"value\": 572\n },\n {\n \"label\": 573,\n \"value\": 573\n },\n {\n \"label\": 574,\n \"value\": 574\n },\n {\n \"label\": 575,\n \"value\": 575\n },\n {\n \"label\": 576,\n \"value\": 576\n },\n {\n \"label\": 577,\n \"value\": 577\n },\n {\n \"label\": 578,\n \"value\": 578\n },\n {\n \"label\": 579,\n \"value\": 579\n },\n {\n \"label\": 580,\n \"value\": 580\n },\n {\n \"label\": 581,\n \"value\": 581\n },\n {\n \"label\": 582,\n \"value\": 582\n },\n {\n \"label\": 583,\n \"value\": 583\n },\n {\n \"label\": 584,\n \"value\": 584\n },\n {\n \"label\": 585,\n \"value\": 585\n },\n {\n \"label\": 586,\n \"value\": 586\n },\n {\n \"label\": 587,\n \"value\": 587\n },\n {\n \"label\": 588,\n \"value\": 588\n },\n {\n \"label\": 589,\n \"value\": 589\n },\n {\n \"label\": 590,\n \"value\": 590\n },\n {\n \"label\": 591,\n \"value\": 591\n },\n {\n \"label\": 592,\n \"value\": 592\n },\n {\n \"label\": 593,\n \"value\": 593\n },\n {\n \"label\": 594,\n \"value\": 594\n },\n {\n \"label\": 595,\n \"value\": 595\n },\n {\n \"label\": 596,\n \"value\": 596\n },\n {\n \"label\": 597,\n \"value\": 597\n },\n {\n \"label\": 598,\n \"value\": 598\n },\n {\n \"label\": 599,\n \"value\": 599\n },\n {\n \"label\": 600,\n \"value\": 600\n },\n {\n \"label\": 601,\n \"value\": 601\n },\n {\n \"label\": 602,\n \"value\": 602\n },\n {\n \"label\": 603,\n \"value\": 603\n },\n {\n \"label\": 604,\n \"value\": 604\n },\n {\n \"label\": 605,\n \"value\": 605\n },\n {\n \"label\": 606,\n \"value\": 606\n },\n {\n \"label\": 607,\n \"value\": 607\n },\n {\n \"label\": 608,\n \"value\": 608\n },\n {\n \"label\": 609,\n \"value\": 609\n },\n {\n \"label\": 610,\n \"value\": 610\n },\n {\n \"label\": 611,\n \"value\": 611\n },\n {\n \"label\": 612,\n \"value\": 612\n },\n {\n \"label\": 613,\n \"value\": 613\n },\n {\n \"label\": 614,\n \"value\": 614\n },\n {\n \"label\": 615,\n \"value\": 615\n },\n {\n \"label\": 616,\n \"value\": 616\n },\n {\n \"label\": 617,\n \"value\": 617\n },\n {\n \"label\": 618,\n \"value\": 618\n },\n {\n \"label\": 619,\n \"value\": 619\n },\n {\n \"label\": 620,\n \"value\": 620\n },\n {\n \"label\": 621,\n \"value\": 621\n },\n {\n \"label\": 622,\n \"value\": 622\n },\n {\n \"label\": 623,\n \"value\": 623\n },\n {\n \"label\": 624,\n \"value\": 624\n },\n {\n \"label\": 625,\n \"value\": 625\n },\n {\n \"label\": 626,\n \"value\": 626\n },\n {\n \"label\": 627,\n \"value\": 627\n },\n {\n \"label\": 628,\n \"value\": 628\n },\n {\n \"label\": 629,\n \"value\": 629\n },\n {\n \"label\": 630,\n \"value\": 630\n },\n {\n \"label\": 631,\n \"value\": 631\n },\n {\n \"label\": 632,\n \"value\": 632\n },\n {\n \"label\": 633,\n \"value\": 633\n },\n {\n \"label\": 634,\n \"value\": 634\n },\n {\n \"label\": 635,\n \"value\": 635\n },\n {\n \"label\": 636,\n \"value\": 636\n },\n {\n \"label\": 637,\n \"value\": 637\n },\n {\n \"label\": 638,\n \"value\": 638\n },\n {\n \"label\": 639,\n \"value\": 639\n },\n {\n \"label\": 640,\n \"value\": 640\n },\n {\n \"label\": 641,\n \"value\": 641\n },\n {\n \"label\": 642,\n \"value\": 642\n },\n {\n \"label\": 643,\n \"value\": 643\n },\n {\n \"label\": 644,\n \"value\": 644\n },\n {\n \"label\": 645,\n \"value\": 645\n },\n {\n \"label\": 646,\n \"value\": 646\n },\n {\n \"label\": 647,\n \"value\": 647\n },\n {\n \"label\": 648,\n \"value\": 648\n },\n {\n \"label\": 649,\n \"value\": 649\n },\n {\n \"label\": 650,\n \"value\": 650\n },\n {\n \"label\": 651,\n \"value\": 651\n },\n {\n \"label\": 652,\n \"value\": 652\n },\n {\n \"label\": 653,\n \"value\": 653\n },\n {\n \"label\": 654,\n \"value\": 654\n },\n {\n \"label\": 655,\n \"value\": 655\n },\n {\n \"label\": 656,\n \"value\": 656\n },\n {\n \"label\": 657,\n \"value\": 657\n },\n {\n \"label\": 658,\n \"value\": 658\n },\n {\n \"label\": 659,\n \"value\": 659\n },\n {\n \"label\": 660,\n \"value\": 660\n },\n {\n \"label\": 661,\n \"value\": 661\n },\n {\n \"label\": 662,\n \"value\": 662\n },\n {\n \"label\": 663,\n \"value\": 663\n },\n {\n \"label\": 664,\n \"value\": 664\n },\n {\n \"label\": 665,\n \"value\": 665\n },\n {\n \"label\": 666,\n \"value\": 666\n },\n {\n \"label\": 667,\n \"value\": 667\n },\n {\n \"label\": 668,\n \"value\": 668\n },\n {\n \"label\": 669,\n \"value\": 669\n },\n {\n \"label\": 670,\n \"value\": 670\n },\n {\n \"label\": 671,\n \"value\": 671\n },\n {\n \"label\": 672,\n \"value\": 672\n },\n {\n \"label\": 673,\n \"value\": 673\n },\n {\n \"label\": 674,\n \"value\": 674\n },\n {\n \"label\": 675,\n \"value\": 675\n },\n {\n \"label\": 676,\n \"value\": 676\n },\n {\n \"label\": 677,\n \"value\": 677\n },\n {\n \"label\": 678,\n \"value\": 678\n },\n {\n \"label\": 679,\n \"value\": 679\n },\n {\n \"label\": 680,\n \"value\": 680\n },\n {\n \"label\": 681,\n \"value\": 681\n },\n {\n \"label\": 682,\n \"value\": 682\n },\n {\n \"label\": 683,\n \"value\": 683\n },\n {\n \"label\": 684,\n \"value\": 684\n },\n {\n \"label\": 685,\n \"value\": 685\n },\n {\n \"label\": 686,\n \"value\": 686\n },\n {\n \"label\": 687,\n \"value\": 687\n },\n {\n \"label\": 688,\n \"value\": 688\n },\n {\n \"label\": 689,\n \"value\": 689\n },\n {\n \"label\": 690,\n \"value\": 690\n },\n {\n \"label\": 691,\n \"value\": 691\n },\n {\n \"label\": 692,\n \"value\": 692\n },\n {\n \"label\": 693,\n \"value\": 693\n },\n {\n \"label\": 694,\n \"value\": 694\n },\n {\n \"label\": 695,\n \"value\": 695\n },\n {\n \"label\": 696,\n \"value\": 696\n },\n {\n \"label\": 697,\n \"value\": 697\n },\n {\n \"label\": 698,\n \"value\": 698\n },\n {\n \"label\": 699,\n \"value\": 699\n },\n {\n \"label\": 700,\n \"value\": 700\n },\n {\n \"label\": 701,\n \"value\": 701\n },\n {\n \"label\": 702,\n \"value\": 702\n },\n {\n \"label\": 703,\n \"value\": 703\n },\n {\n \"label\": 704,\n \"value\": 704\n },\n {\n \"label\": 705,\n \"value\": 705\n },\n {\n \"label\": 706,\n \"value\": 706\n },\n {\n \"label\": 707,\n \"value\": 707\n },\n {\n \"label\": 708,\n \"value\": 708\n },\n {\n \"label\": 709,\n \"value\": 709\n },\n {\n \"label\": 710,\n \"value\": 710\n },\n {\n \"label\": 711,\n \"value\": 711\n },\n {\n \"label\": 712,\n \"value\": 712\n },\n {\n \"label\": 713,\n \"value\": 713\n },\n {\n \"label\": 714,\n \"value\": 714\n },\n {\n \"label\": 715,\n \"value\": 715\n },\n {\n \"label\": 716,\n \"value\": 716\n },\n {\n \"label\": 717,\n \"value\": 717\n },\n {\n \"label\": 718,\n \"value\": 718\n },\n {\n \"label\": 719,\n \"value\": 719\n },\n {\n \"label\": 720,\n \"value\": 720\n },\n {\n \"label\": 721,\n \"value\": 721\n },\n {\n \"label\": 722,\n \"value\": 722\n },\n {\n \"label\": 723,\n \"value\": 723\n },\n {\n \"label\": 724,\n \"value\": 724\n },\n {\n \"label\": 725,\n \"value\": 725\n },\n {\n \"label\": 726,\n \"value\": 726\n },\n {\n \"label\": 727,\n \"value\": 727\n },\n {\n \"label\": 728,\n \"value\": 728\n },\n {\n \"label\": 729,\n \"value\": 729\n },\n {\n \"label\": 730,\n \"value\": 730\n },\n {\n \"label\": 731,\n \"value\": 731\n },\n {\n \"label\": 732,\n \"value\": 732\n },\n {\n \"label\": 733,\n \"value\": 733\n },\n {\n \"label\": 734,\n \"value\": 734\n },\n {\n \"label\": 735,\n \"value\": 735\n },\n {\n \"label\": 736,\n \"value\": 736\n },\n {\n \"label\": 737,\n \"value\": 737\n },\n {\n \"label\": 738,\n \"value\": 738\n },\n {\n \"label\": 739,\n \"value\": 739\n },\n {\n \"label\": 740,\n \"value\": 740\n },\n {\n \"label\": 741,\n \"value\": 741\n },\n {\n \"label\": 742,\n \"value\": 742\n },\n {\n \"label\": 743,\n \"value\": 743\n },\n {\n \"label\": 744,\n \"value\": 744\n },\n {\n \"label\": 745,\n \"value\": 745\n },\n {\n \"label\": 746,\n \"value\": 746\n },\n {\n \"label\": 747,\n \"value\": 747\n },\n {\n \"label\": 748,\n \"value\": 748\n },\n {\n \"label\": 749,\n \"value\": 749\n },\n {\n \"label\": 750,\n \"value\": 750\n },\n {\n \"label\": 751,\n \"value\": 751\n },\n {\n \"label\": 752,\n \"value\": 752\n },\n {\n \"label\": 753,\n \"value\": 753\n },\n {\n \"label\": 754,\n \"value\": 754\n },\n {\n \"label\": 755,\n \"value\": 755\n },\n {\n \"label\": 756,\n \"value\": 756\n },\n {\n \"label\": 757,\n \"value\": 757\n },\n {\n \"label\": 758,\n \"value\": 758\n },\n {\n \"label\": 759,\n \"value\": 759\n },\n {\n \"label\": 760,\n \"value\": 760\n },\n {\n \"label\": 761,\n \"value\": 761\n },\n {\n \"label\": 762,\n \"value\": 762\n },\n {\n \"label\": 763,\n \"value\": 763\n },\n {\n \"label\": 764,\n \"value\": 764\n },\n {\n \"label\": 765,\n \"value\": 765\n },\n {\n \"label\": 766,\n \"value\": 766\n },\n {\n \"label\": 767,\n \"value\": 767\n },\n {\n \"label\": 768,\n \"value\": 768\n },\n {\n \"label\": 769,\n \"value\": 769\n },\n {\n \"label\": 770,\n \"value\": 770\n },\n {\n \"label\": 771,\n \"value\": 771\n },\n {\n \"label\": 772,\n \"value\": 772\n },\n {\n \"label\": 773,\n \"value\": 773\n },\n {\n \"label\": 774,\n \"value\": 774\n },\n {\n \"label\": 775,\n \"value\": 775\n },\n {\n \"label\": 776,\n \"value\": 776\n },\n {\n \"label\": 777,\n \"value\": 777\n },\n {\n \"label\": 778,\n \"value\": 778\n },\n {\n \"label\": 779,\n \"value\": 779\n },\n {\n \"label\": 780,\n \"value\": 780\n },\n {\n \"label\": 781,\n \"value\": 781\n },\n {\n \"label\": 782,\n \"value\": 782\n },\n {\n \"label\": 783,\n \"value\": 783\n },\n {\n \"label\": 784,\n \"value\": 784\n },\n {\n \"label\": 785,\n \"value\": 785\n },\n {\n \"label\": 786,\n \"value\": 786\n },\n {\n \"label\": 787,\n \"value\": 787\n },\n {\n \"label\": 788,\n \"value\": 788\n },\n {\n \"label\": 789,\n \"value\": 789\n },\n {\n \"label\": 790,\n \"value\": 790\n },\n {\n \"label\": 791,\n \"value\": 791\n },\n {\n \"label\": 792,\n \"value\": 792\n },\n {\n \"label\": 793,\n \"value\": 793\n },\n {\n \"label\": 794,\n \"value\": 794\n },\n {\n \"label\": 795,\n \"value\": 795\n },\n {\n \"label\": 796,\n \"value\": 796\n },\n {\n \"label\": 797,\n \"value\": 797\n },\n {\n \"label\": 798,\n \"value\": 798\n },\n {\n \"label\": 799,\n \"value\": 799\n },\n {\n \"label\": 800,\n \"value\": 800\n },\n {\n \"label\": 801,\n \"value\": 801\n },\n {\n \"label\": 802,\n \"value\": 802\n },\n {\n \"label\": 803,\n \"value\": 803\n },\n {\n \"label\": 804,\n \"value\": 804\n },\n {\n \"label\": 805,\n \"value\": 805\n },\n {\n \"label\": 806,\n \"value\": 806\n },\n {\n \"label\": 807,\n \"value\": 807\n },\n {\n \"label\": 808,\n \"value\": 808\n },\n {\n \"label\": 809,\n \"value\": 809\n },\n {\n \"label\": 810,\n \"value\": 810\n },\n {\n \"label\": 811,\n \"value\": 811\n },\n {\n \"label\": 812,\n \"value\": 812\n },\n {\n \"label\": 813,\n \"value\": 813\n },\n {\n \"label\": 814,\n \"value\": 814\n },\n {\n \"label\": 815,\n \"value\": 815\n },\n {\n \"label\": 816,\n \"value\": 816\n },\n {\n \"label\": 817,\n \"value\": 817\n },\n {\n \"label\": 818,\n \"value\": 818\n },\n {\n \"label\": 819,\n \"value\": 819\n },\n {\n \"label\": 820,\n \"value\": 820\n },\n {\n \"label\": 821,\n \"value\": 821\n },\n {\n \"label\": 822,\n \"value\": 822\n },\n {\n \"label\": 823,\n \"value\": 823\n },\n {\n \"label\": 824,\n \"value\": 824\n },\n {\n \"label\": 825,\n \"value\": 825\n },\n {\n \"label\": 826,\n \"value\": 826\n },\n {\n \"label\": 827,\n \"value\": 827\n },\n {\n \"label\": 828,\n \"value\": 828\n },\n {\n \"label\": 829,\n \"value\": 829\n },\n {\n \"label\": 830,\n \"value\": 830\n },\n {\n \"label\": 831,\n \"value\": 831\n },\n {\n \"label\": 832,\n \"value\": 832\n },\n {\n \"label\": 833,\n \"value\": 833\n },\n {\n \"label\": 834,\n \"value\": 834\n },\n {\n \"label\": 835,\n \"value\": 835\n },\n {\n \"label\": 836,\n \"value\": 836\n },\n {\n \"label\": 837,\n \"value\": 837\n },\n {\n \"label\": 838,\n \"value\": 838\n },\n {\n \"label\": 839,\n \"value\": 839\n },\n {\n \"label\": 840,\n \"value\": 840\n },\n {\n \"label\": 841,\n \"value\": 841\n },\n {\n \"label\": 842,\n \"value\": 842\n },\n {\n \"label\": 843,\n \"value\": 843\n },\n {\n \"label\": 844,\n \"value\": 844\n },\n {\n \"label\": 845,\n \"value\": 845\n },\n {\n \"label\": 846,\n \"value\": 846\n },\n {\n \"label\": 847,\n \"value\": 847\n },\n {\n \"label\": 848,\n \"value\": 848\n },\n {\n \"label\": 849,\n \"value\": 849\n },\n {\n \"label\": 850,\n \"value\": 850\n },\n {\n \"label\": 851,\n \"value\": 851\n },\n {\n \"label\": 852,\n \"value\": 852\n },\n {\n \"label\": 853,\n \"value\": 853\n },\n {\n \"label\": 854,\n \"value\": 854\n },\n {\n \"label\": 855,\n \"value\": 855\n },\n {\n \"label\": 856,\n \"value\": 856\n },\n {\n \"label\": 857,\n \"value\": 857\n },\n {\n \"label\": 858,\n \"value\": 858\n },\n {\n \"label\": 859,\n \"value\": 859\n },\n {\n \"label\": 860,\n \"value\": 860\n },\n {\n \"label\": 861,\n \"value\": 861\n },\n {\n \"label\": 862,\n \"value\": 862\n },\n {\n \"label\": 863,\n \"value\": 863\n },\n {\n \"label\": 864,\n \"value\": 864\n },\n {\n \"label\": 865,\n \"value\": 865\n },\n {\n \"label\": 866,\n \"value\": 866\n },\n {\n \"label\": 867,\n \"value\": 867\n },\n {\n \"label\": 868,\n \"value\": 868\n },\n {\n \"label\": 869,\n \"value\": 869\n },\n {\n \"label\": 870,\n \"value\": 870\n },\n {\n \"label\": 871,\n \"value\": 871\n },\n {\n \"label\": 872,\n \"value\": 872\n },\n {\n \"label\": 873,\n \"value\": 873\n },\n {\n \"label\": 874,\n \"value\": 874\n },\n {\n \"label\": 875,\n \"value\": 875\n },\n {\n \"label\": 876,\n \"value\": 876\n },\n {\n \"label\": 877,\n \"value\": 877\n },\n {\n \"label\": 878,\n \"value\": 878\n },\n {\n \"label\": 879,\n \"value\": 879\n },\n {\n \"label\": 880,\n \"value\": 880\n },\n {\n \"label\": 881,\n \"value\": 881\n },\n {\n \"label\": 882,\n \"value\": 882\n },\n {\n \"label\": 883,\n \"value\": 883\n },\n {\n \"label\": 884,\n \"value\": 884\n },\n {\n \"label\": 885,\n \"value\": 885\n },\n {\n \"label\": 886,\n \"value\": 886\n },\n {\n \"label\": 887,\n \"value\": 887\n },\n {\n \"label\": 888,\n \"value\": 888\n },\n {\n \"label\": 889,\n \"value\": 889\n },\n {\n \"label\": 890,\n \"value\": 890\n },\n {\n \"label\": 891,\n \"value\": 891\n },\n {\n \"label\": 892,\n \"value\": 892\n },\n {\n \"label\": 893,\n \"value\": 893\n },\n {\n \"label\": 894,\n \"value\": 894\n },\n {\n \"label\": 895,\n \"value\": 895\n },\n {\n \"label\": 896,\n \"value\": 896\n },\n {\n \"label\": 897,\n \"value\": 897\n },\n {\n \"label\": 898,\n \"value\": 898\n },\n {\n \"label\": 899,\n \"value\": 899\n },\n {\n \"label\": 900,\n \"value\": 900\n },\n {\n \"label\": 901,\n \"value\": 901\n },\n {\n \"label\": 902,\n \"value\": 902\n },\n {\n \"label\": 903,\n \"value\": 903\n },\n {\n \"label\": 904,\n \"value\": 904\n },\n {\n \"label\": 905,\n \"value\": 905\n },\n {\n \"label\": 906,\n \"value\": 906\n },\n {\n \"label\": 907,\n \"value\": 907\n },\n {\n \"label\": 908,\n \"value\": 908\n },\n {\n \"label\": 909,\n \"value\": 909\n },\n {\n \"label\": 910,\n \"value\": 910\n },\n {\n \"label\": 911,\n \"value\": 911\n },\n {\n \"label\": 912,\n \"value\": 912\n },\n {\n \"label\": 913,\n \"value\": 913\n },\n {\n \"label\": 914,\n \"value\": 914\n },\n {\n \"label\": 915,\n \"value\": 915\n },\n {\n \"label\": 916,\n \"value\": 916\n },\n {\n \"label\": 917,\n \"value\": 917\n },\n {\n \"label\": 918,\n \"value\": 918\n },\n {\n \"label\": 919,\n \"value\": 919\n },\n {\n \"label\": 920,\n \"value\": 920\n },\n {\n \"label\": 921,\n \"value\": 921\n },\n {\n \"label\": 922,\n \"value\": 922\n },\n {\n \"label\": 923,\n \"value\": 923\n },\n {\n \"label\": 924,\n \"value\": 924\n },\n {\n \"label\": 925,\n \"value\": 925\n },\n {\n \"label\": 926,\n \"value\": 926\n },\n {\n \"label\": 927,\n \"value\": 927\n },\n {\n \"label\": 928,\n \"value\": 928\n },\n {\n \"label\": 929,\n \"value\": 929\n },\n {\n \"label\": 930,\n \"value\": 930\n },\n {\n \"label\": 931,\n \"value\": 931\n },\n {\n \"label\": 932,\n \"value\": 932\n },\n {\n \"label\": 933,\n \"value\": 933\n },\n {\n \"label\": 934,\n \"value\": 934\n },\n {\n \"label\": 935,\n \"value\": 935\n },\n {\n \"label\": 936,\n \"value\": 936\n },\n {\n \"label\": 937,\n \"value\": 937\n },\n {\n \"label\": 938,\n \"value\": 938\n },\n {\n \"label\": 939,\n \"value\": 939\n },\n {\n \"label\": 940,\n \"value\": 940\n },\n {\n \"label\": 941,\n \"value\": 941\n },\n {\n \"label\": 942,\n \"value\": 942\n },\n {\n \"label\": 943,\n \"value\": 943\n },\n {\n \"label\": 944,\n \"value\": 944\n },\n {\n \"label\": 945,\n \"value\": 945\n },\n {\n \"label\": 946,\n \"value\": 946\n },\n {\n \"label\": 947,\n \"value\": 947\n },\n {\n \"label\": 948,\n \"value\": 948\n },\n {\n \"label\": 949,\n \"value\": 949\n },\n {\n \"label\": 950,\n \"value\": 950\n },\n {\n \"label\": 951,\n \"value\": 951\n },\n {\n \"label\": 952,\n \"value\": 952\n },\n {\n \"label\": 953,\n \"value\": 953\n },\n {\n \"label\": 954,\n \"value\": 954\n },\n {\n \"label\": 955,\n \"value\": 955\n },\n {\n \"label\": 956,\n \"value\": 956\n },\n {\n \"label\": 957,\n \"value\": 957\n },\n {\n \"label\": 958,\n \"value\": 958\n },\n {\n \"label\": 959,\n \"value\": 959\n },\n {\n \"label\": 960,\n \"value\": 960\n },\n {\n \"label\": 961,\n \"value\": 961\n },\n {\n \"label\": 962,\n \"value\": 962\n },\n {\n \"label\": 963,\n \"value\": 963\n },\n {\n \"label\": 964,\n \"value\": 964\n },\n {\n \"label\": 965,\n \"value\": 965\n },\n {\n \"label\": 966,\n \"value\": 966\n },\n {\n \"label\": 967,\n \"value\": 967\n },\n {\n \"label\": 968,\n \"value\": 968\n },\n {\n \"label\": 969,\n \"value\": 969\n },\n {\n \"label\": 970,\n \"value\": 970\n },\n {\n \"label\": 971,\n \"value\": 971\n },\n {\n \"label\": 972,\n \"value\": 972\n },\n {\n \"label\": 973,\n \"value\": 973\n },\n {\n \"label\": 974,\n \"value\": 974\n },\n {\n \"label\": 975,\n \"value\": 975\n },\n {\n \"label\": 976,\n \"value\": 976\n },\n {\n \"label\": 977,\n \"value\": 977\n },\n {\n \"label\": 978,\n \"value\": 978\n },\n {\n \"label\": 979,\n \"value\": 979\n },\n {\n \"label\": 980,\n \"value\": 980\n },\n {\n \"label\": 981,\n \"value\": 981\n },\n {\n \"label\": 982,\n \"value\": 982\n },\n {\n \"label\": 983,\n \"value\": 983\n },\n {\n \"label\": 984,\n \"value\": 984\n },\n {\n \"label\": 985,\n \"value\": 985\n },\n {\n \"label\": 986,\n \"value\": 986\n },\n {\n \"label\": 987,\n \"value\": 987\n },\n {\n \"label\": 988,\n \"value\": 988\n },\n {\n \"label\": 989,\n \"value\": 989\n },\n {\n \"label\": 990,\n \"value\": 990\n },\n {\n \"label\": 991,\n \"value\": 991\n },\n {\n \"label\": 992,\n \"value\": 992\n },\n {\n \"label\": 993,\n \"value\": 993\n },\n {\n \"label\": 994,\n \"value\": 994\n },\n {\n \"label\": 995,\n \"value\": 995\n },\n {\n \"label\": 996,\n \"value\": 996\n },\n {\n \"label\": 997,\n \"value\": 997\n },\n {\n \"label\": 998,\n \"value\": 998\n },\n {\n \"label\": 999,\n \"value\": 999\n }\n\t]","placeholderText":"Select option","isDisabled":false,"key":"ak637g8pus","isRequired":false,"rightColumn":41,"widgetId":"52k9ej1p6e","isVisible":true,"version":1,"parentId":"0","renderMode":"CANVAS","isLoading":false}]},"layoutOnLoadActions":[],"new":false}],"userPermissions":[]},"publishedPage":{"name":"Page1","slug":"page1","layouts":[{"id":"Page1","userPermissions":[],"dsl":{"widgetName":"MainContainer","backgroundColor":"none","rightColumn":1224,"snapColumns":16,"detachFromLayout":true,"widgetId":"0","topRow":0,"bottomRow":1254,"containerStyle":"none","snapRows":33,"parentRowSpace":1,"type":"CANVAS_WIDGET","canExtend":true,"version":4,"minHeight":1292,"parentColumnSpace":1,"dynamicBindingPathList":[],"leftColumn":0,"children":[]},"new":false}],"userPermissions":[]},"new":true}],"publishedDefaultPageName":"Page1","unpublishedDefaultPageName":"Page1","actionList":[],"actionCollectionList":[],"invisibleActionFields":{},"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 diff --git a/app/client/perf/tests/golden-app.perf.js b/app/client/perf/tests/golden-app.perf.js deleted file mode 100644 index 55b292b319..0000000000 --- a/app/client/perf/tests/golden-app.perf.js +++ /dev/null @@ -1,116 +0,0 @@ -const path = require("path"); -const Perf = require("../src/perf.js"); -const dsl = require("./dsl/simple-typing").dsl; -const { actions } = require("./actions"); -const { delay, makeid } = require("../src/utils/utils"); -process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = 0; - -const SEL = { - 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_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:last-child > div > div > button", - modalTitle: "#reyoxo4oec", - closeModal: - "#comment-overlay-wrapper-lryg8kw537 > div > div > div > div > button", -}; - -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 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.stopTrace(); - - // Focus on the table widget - await page.waitForSelector(SEL.table); - - // Not sure why it needs two clicks to focus - await page.click(SEL.table); - await page.click(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(); - - // 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")`, - ); - - await perf.stopTrace(); - - // Edit title - await page.waitForSelector(SEL.titleInput); - await perf.startTrace(actions.UPDATE_POST_TITLE); - - const randomString = makeid(); - await page.type(SEL.titleInput, randomString); - await delay(5000, "For the evaluations to comeback?"); - - 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(); - - // 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(); - - // 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() { - for (let i = 0; i < 5; i++) { - await testGoldenApp(i + 1); - } -} - -runTests(); diff --git a/app/client/perf/tests/initial-setup.js b/app/client/perf/tests/initial-setup.js deleted file mode 100644 index 0ed80ac370..0000000000 --- a/app/client/perf/tests/initial-setup.js +++ /dev/null @@ -1,43 +0,0 @@ -const puppeteer = require("puppeteer"); - -process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = 0; - -(async () => { - const browser = await puppeteer.launch({ - args: ["--window-size=1920,1080"], - ignoreHTTPSErrors: true, - }); - let page = await browser.newPage(); - await page.goto("https://dev.appsmith.com/setup/welcome"); - // await page.goto("http://localhost/setup/welcome"); - // Since we are not testing the initial setup, just send the post request directly. - // Could be moved to bash script as well. - await page.evaluate(async () => { - const url = "https://dev.appsmith.com/api/v1/users/super"; - // const url = "http://localhost/api/v1/users/super"; - await fetch(url, { - headers: { - accept: - "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9", - "accept-language": "en-US,en;q=0.9,fr-CA;q=0.8,fr;q=0.7", - "cache-control": "no-cache", - "content-type": "application/x-www-form-urlencoded", - }, - - referrerPolicy: "strict-origin-when-cross-origin", - body: - "name=Im+Puppeteer&email=hello%40myemail.com&password=qwerty1234&allowCollectingAnonymousData=true&signupForNewsletter=true&role=engineer&useCase=just+exploring", - method: "POST", - mode: "cors", - credentials: "include", - }) - .then((res) => - console.log("Save page with new DSL response:", res.json()), - ) - .catch((err) => { - console.log("Save page with new DSL error:", err); - }); - }); - console.log("Initial setup is successful"); - await browser.close(); -})(); diff --git a/app/client/perf/tests/sample-test.js b/app/client/perf/tests/sample-test.js deleted file mode 100644 index 42b550c1ec..0000000000 --- a/app/client/perf/tests/sample-test.js +++ /dev/null @@ -1,46 +0,0 @@ -const path = require("path"); -const Perf = require("../src/perf.js"); -const dsl = require("./dsl/simple-typing").dsl; - -process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = 0; - -async function sampleTest(iteration) { - const perf = new Perf({ iteration }); - try { - await perf.launch(); - - const page = perf.getPage(); - await perf.loadDSL(dsl); - - const selector = "input.bp3-input"; // Input selector - await page.waitForSelector(selector); - const input = await page.$(selector); - - await perf.startTrace("Edit input"); - await page.type(selector, "Hello Appsmith"); - await perf.stopTrace(); - - await perf.startTrace("Clear input"); - await input.click({ clickCount: 3 }); - await input.press("Backspace"); - await perf.stopTrace(); - - 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() { - 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 deleted file mode 100644 index 44adad5ac0..0000000000 --- a/app/client/perf/tests/select-widget.perf.js +++ /dev/null @@ -1,48 +0,0 @@ -const path = require("path"); -const Perf = require("../src/perf"); -const { delay } = require("../src/utils/utils"); -const { actions } = require("./actions"); -process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = 0; - -const SEL = { - select_button: ".select-button", - options_list: ".menu-virtual-list", - first_option_item: ".menu-item-text:nth-child(1)", -}; - -async function testSelectOptionsRender(iteration) { - const perf = new Perf({ iteration }); - try { - await perf.launch(); - const page = perf.getPage(); - - perf.importApplication(`${APP_ROOT}/tests/dsl/stress-select-widget.json`); - await delay(5000, "for newly created page to settle down"); - - await page.waitForSelector(SEL.select_button); - await perf.startTrace(actions.SELECT_WIDGET_MENU_OPEN); - await page.click(SEL.select_button); - await page.waitForSelector(SEL.options_list); - await delay(2000, "wait after opening options list"); - await perf.stopTrace(); - - await perf.startTrace(actions.SELECT_WIDGET_SELECT_OPTION); - await page.click(SEL.first_option_item); - await delay(2000, "wait after selecting option item"); - await perf.stopTrace(); - - await perf.generateReport(); - await perf.close(); - } catch (e) { - await perf.handleRejections(e); - await perf.close(); - } -} - -async function runTests() { - for (let i = 0; i < 5; i++) { - await testSelectOptionsRender(i + 1); - } -} - -runTests(); diff --git a/app/client/perf/yarn.lock b/app/client/perf/yarn.lock deleted file mode 100644 index 2e19714aa0..0000000000 --- a/app/client/perf/yarn.lock +++ /dev/null @@ -1,600 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@supabase/gotrue-js@^1.22.0": - version "1.22.1" - resolved "https://registry.yarnpkg.com/@supabase/gotrue-js/-/gotrue-js-1.22.1.tgz#28cba21713a25045e94f99fa26b66dbb3b808f92" - integrity sha512-Uqiw03Sd/PYGrjq/sfEGyRcZh868y2B2fxVtZgkUAGDHnQ84K1MpsGiIMCL6x/9JPKDCOkzpSZQdKIohcY8l2Q== - dependencies: - cross-fetch "^3.0.6" - -"@supabase/postgrest-js@^0.36.0": - version "0.36.0" - resolved "https://registry.yarnpkg.com/@supabase/postgrest-js/-/postgrest-js-0.36.0.tgz#a734b9ce92fad86f825e6d707ffe638f0e85887a" - integrity sha512-KOnhVy8tEr/qNnvOLpFqwOkt7ilRDFMXY+JJfmLjS3+eZuna1G57w4zb3L0SdY6BL7AKnfzP5BG3yHTAuJPSww== - dependencies: - cross-fetch "^3.0.6" - -"@supabase/realtime-js@^1.3.5": - version "1.3.5" - resolved "https://registry.yarnpkg.com/@supabase/realtime-js/-/realtime-js-1.3.5.tgz#6ade8a97ae4c600bbe8b7615fd987e2bd956c582" - integrity sha512-If+C0A6eT1BflFOOZNlnGw/91gNuj7f/M19/WutsPM0pjhx++8Dj0YH8z+tbgxX0nf/2UGVUMMgTBckzpk9R3g== - dependencies: - "@types/websocket" "^1.0.3" - websocket "^1.0.34" - -"@supabase/storage-js@^1.5.1": - version "1.5.1" - resolved "https://registry.yarnpkg.com/@supabase/storage-js/-/storage-js-1.5.1.tgz#0f451210972284a10c0e2edeea40daac9001c969" - integrity sha512-W82st1RvkChVJ/FTCcPXFXfS3V0Z4rZuMnoDnB9/NI5i9r9zspZS40tHpUQ+vbN6R6k0pfr/Waa1jcEd3YAtrQ== - dependencies: - cross-fetch "^3.1.0" - -"@supabase/supabase-js@^1.30.2": - version "1.30.2" - resolved "https://registry.yarnpkg.com/@supabase/supabase-js/-/supabase-js-1.30.2.tgz#f18e590197211db734a914aa5a70c2a21f03d0b1" - integrity sha512-r/hOnJ6Rx91NnAnT+/eFcrknAYCERvLi6y9lNRgfXqYZ9XFKNh9O8tSVSTmb9INS2vPfSY6fuPCS7M4791tOWw== - dependencies: - "@supabase/gotrue-js" "^1.22.0" - "@supabase/postgrest-js" "^0.36.0" - "@supabase/realtime-js" "^1.3.5" - "@supabase/storage-js" "^1.5.1" - -"@types/node@*": - version "17.0.18" - resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.18.tgz#3b4fed5cfb58010e3a2be4b6e74615e4847f1074" - integrity sha512-eKj4f/BsN/qcculZiRSujogjvp5O/k4lOW5m35NopjZM/QwLOR075a8pJW5hD+Rtdm2DaCVPENS6KtSQnUD6BA== - -"@types/websocket@^1.0.3": - version "1.0.5" - resolved "https://registry.yarnpkg.com/@types/websocket/-/websocket-1.0.5.tgz#3fb80ed8e07f88e51961211cd3682a3a4a81569c" - integrity sha512-NbsqiNX9CnEfC1Z0Vf4mE1SgAJ07JnRYcNex7AJ9zAVzmiGHmjKFEk7O4TJIsgv2B1sLEb6owKFZrACwdYngsQ== - dependencies: - "@types/node" "*" - -"@types/yauzl@^2.9.1": - version "2.9.2" - resolved "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.9.2.tgz#c48e5d56aff1444409e39fa164b0b4d4552a7b7a" - integrity sha512-8uALY5LTvSuHgloDVUvWP3pIauILm+8/0pDMokuDYIoNsOkSwd5AiHBTSEJjKTDcZr5z8UpgOWZkxBF4iJftoA== - dependencies: - "@types/node" "*" - -agent-base@6: - version "6.0.2" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" - integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== - dependencies: - debug "4" - -balanced-match@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== - -base64-js@^1.3.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== - -bl@^4.0.3: - version "4.1.0" - resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" - integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== - dependencies: - buffer "^5.5.0" - inherits "^2.0.4" - readable-stream "^3.4.0" - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -buffer-crc32@~0.2.3: - version "0.2.13" - resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" - integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI= - -buffer@^5.2.1, buffer@^5.5.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" - integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.1.13" - -bufferutil@^4.0.1: - version "4.0.6" - resolved "https://registry.yarnpkg.com/bufferutil/-/bufferutil-4.0.6.tgz#ebd6c67c7922a0e902f053e5d8be5ec850e48433" - integrity sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw== - dependencies: - node-gyp-build "^4.3.0" - -chownr@^1.1.1: - version "1.1.4" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" - integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= - -cross-fetch@3.1.5, cross-fetch@^3.0.6, cross-fetch@^3.1.0: - version "3.1.5" - resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" - integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== - dependencies: - node-fetch "2.6.7" - -d@1, d@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a" - integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA== - dependencies: - es5-ext "^0.10.50" - type "^1.0.1" - -debug@4, debug@4.3.3, debug@^4.1.1: - version "4.3.3" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" - integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== - dependencies: - ms "2.1.2" - -debug@^2.2.0: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== - dependencies: - ms "2.0.0" - -devtools-protocol@0.0.969999: - version "0.0.969999" - resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.969999.tgz#3d6be0a126b3607bb399ae2719b471dda71f3478" - integrity sha512-6GfzuDWU0OFAuOvBokXpXPLxjOJ5DZ157Ue3sGQQM3LgAamb8m0R0ruSfN0DDu+XG5XJgT50i6zZ/0o8RglreQ== - -end-of-stream@^1.1.0, end-of-stream@^1.4.1: - version "1.4.4" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== - dependencies: - once "^1.4.0" - -es5-ext@^0.10.35, es5-ext@^0.10.50: - version "0.10.53" - resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.53.tgz#93c5a3acfdbef275220ad72644ad02ee18368de1" - integrity sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q== - dependencies: - es6-iterator "~2.0.3" - es6-symbol "~3.1.3" - next-tick "~1.0.0" - -es6-iterator@~2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" - integrity sha1-p96IkUGgWpSwhUQDstCg+/qY87c= - dependencies: - d "1" - es5-ext "^0.10.35" - es6-symbol "^3.1.1" - -es6-symbol@^3.1.1, es6-symbol@~3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" - integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA== - dependencies: - d "^1.0.1" - ext "^1.1.2" - -ext@^1.1.2: - version "1.6.0" - resolved "https://registry.yarnpkg.com/ext/-/ext-1.6.0.tgz#3871d50641e874cc172e2b53f919842d19db4c52" - integrity sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg== - dependencies: - type "^2.5.0" - -extract-zip@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz#663dca56fe46df890d5f131ef4a06d22bb8ba13a" - integrity sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg== - dependencies: - debug "^4.1.1" - get-stream "^5.1.0" - yauzl "^2.10.0" - optionalDependencies: - "@types/yauzl" "^2.9.1" - -fd-slicer@~1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" - integrity sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4= - dependencies: - pend "~1.2.0" - -find-up@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -fs-constants@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" - integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= - -get-stream@^5.1.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" - integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== - dependencies: - pump "^3.0.0" - -glob@^7.1.3: - version "7.2.0" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" - integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - -https-proxy-agent@5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" - integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== - dependencies: - agent-base "6" - debug "4" - -ieee754@^1.1.13: - version "1.2.1" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" - integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@^2.0.3, inherits@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -is-typedarray@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" - integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= - -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== - dependencies: - p-locate "^4.1.0" - -lodash@^4.17.2: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== - -median@^0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/median/-/median-0.0.2.tgz#1b7172bc221eb3e9bf4f479fadaadefc50c44787" - integrity sha1-G3FyvCIes+m/T0efrare/FDER4c= - -minimatch@^3.0.4: - version "3.1.1" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.1.tgz#879ad447200773912898b46cd516a7abbb5e50b0" - integrity sha512-reLxBcKUPNBnc/sVtAbxgRVFSegoGeLaSjmphNhcwcolhYLRgtJscn5mRl6YRZNQv40Y7P6JM2YhSIsbL9OB5A== - dependencies: - brace-expansion "^1.1.7" - -mkdirp-classic@^0.5.2: - version "0.5.3" - resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" - integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= - -ms@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -next-tick@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" - integrity sha1-yobR/ogoFpsBICCOPchCS524NCw= - -node-fetch@2.6.7: - version "2.6.7" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" - integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== - dependencies: - whatwg-url "^5.0.0" - -node-gyp-build@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.3.0.tgz#9f256b03e5826150be39c764bf51e993946d71a3" - integrity sha512-iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q== - -node-stdev@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/node-stdev/-/node-stdev-1.0.1.tgz#7a4ba4ae44123683b9f4f06a25e0ec88b1ff1c54" - integrity sha1-ekukrkQSNoO59PBqJeDsiLH/HFQ= - dependencies: - lodash "^4.17.2" - -once@^1.3.0, once@^1.3.1, once@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= - dependencies: - wrappy "1" - -p-limit@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== - dependencies: - p-try "^2.0.0" - -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - dependencies: - p-limit "^2.2.0" - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= - -pend@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" - integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA= - -pkg-dir@4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== - dependencies: - find-up "^4.0.0" - -progress@2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" - integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== - -proxy-from-env@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" - integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== - -pump@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -puppeteer@^13.5.1: - version "13.5.1" - resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-13.5.1.tgz#d0f751bf36120efc2ebf74c7562a204a84e500e9" - integrity sha512-wWxO//vMiqxlvuzHMAJ0pRJeDHvDtM7DQpW1GKdStz2nZo2G42kOXBDgkmQ+zqjwMCFofKGesBeeKxIkX9BO+w== - dependencies: - cross-fetch "3.1.5" - debug "4.3.3" - devtools-protocol "0.0.969999" - extract-zip "2.0.1" - https-proxy-agent "5.0.0" - pkg-dir "4.2.0" - progress "2.0.3" - proxy-from-env "1.1.0" - rimraf "3.0.2" - tar-fs "2.1.1" - unbzip2-stream "1.4.3" - ws "8.5.0" - -readable-stream@^3.1.1, readable-stream@^3.4.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" - integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -rimraf@3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== - dependencies: - glob "^7.1.3" - -safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -sanitize-filename@^1.6.3: - version "1.6.3" - resolved "https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.3.tgz#755ebd752045931977e30b2025d340d7c9090378" - integrity sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg== - dependencies: - truncate-utf8-bytes "^1.0.0" - -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -tar-fs@2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" - integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== - dependencies: - chownr "^1.1.1" - mkdirp-classic "^0.5.2" - pump "^3.0.0" - tar-stream "^2.1.4" - -tar-stream@^2.1.4: - version "2.2.0" - resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" - integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== - dependencies: - bl "^4.0.3" - end-of-stream "^1.4.1" - fs-constants "^1.0.0" - inherits "^2.0.3" - readable-stream "^3.1.1" - -through@^2.3.8: - version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= - -tr46@~0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" - integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= - -tracelib@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/tracelib/-/tracelib-1.0.1.tgz#bb44ea96c19b8d7a6c85a6ee1cac9945c5b75c64" - integrity sha512-T2Vkpa/7Vdm3sV8nXRn8vZ0tnq6wlnO4Zx7Pux+JA1W6DMlg5EtbNcPZu/L7XRTPc9S0eAKhEFR4p/u0GcsDpQ== - -truncate-utf8-bytes@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz#405923909592d56f78a5818434b0b78489ca5f2b" - integrity sha1-QFkjkJWS1W94pYGENLC3hInKXys= - dependencies: - utf8-byte-length "^1.0.1" - -type@^1.0.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0" - integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== - -type@^2.5.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/type/-/type-2.6.0.tgz#3ca6099af5981d36ca86b78442973694278a219f" - integrity sha512-eiDBDOmkih5pMbo9OqsqPRGMljLodLcwd5XD5JbtNB0o89xZAwynY9EdCDsJU7LtcVCClu9DvM7/0Ep1hYX3EQ== - -typedarray-to-buffer@^3.1.5: - version "3.1.5" - resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" - integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== - dependencies: - is-typedarray "^1.0.0" - -unbzip2-stream@1.4.3: - version "1.4.3" - resolved "https://registry.yarnpkg.com/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz#b0da04c4371311df771cdc215e87f2130991ace7" - integrity sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg== - dependencies: - buffer "^5.2.1" - through "^2.3.8" - -utf-8-validate@^5.0.2: - version "5.0.8" - resolved "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-5.0.8.tgz#4a735a61661dbb1c59a0868c397d2fe263f14e58" - integrity sha512-k4dW/Qja1BYDl2qD4tOMB9PFVha/UJtxTc1cXYOe3WwA/2m0Yn4qB7wLMpJyLJ/7DR0XnTut3HsCSzDT4ZvKgA== - dependencies: - node-gyp-build "^4.3.0" - -utf8-byte-length@^1.0.1: - version "1.0.4" - resolved "https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz#f45f150c4c66eee968186505ab93fcbb8ad6bf61" - integrity sha1-9F8VDExm7uloGGUFq5P8u4rWv2E= - -util-deprecate@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= - -webidl-conversions@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" - integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE= - -websocket@^1.0.34: - version "1.0.34" - resolved "https://registry.yarnpkg.com/websocket/-/websocket-1.0.34.tgz#2bdc2602c08bf2c82253b730655c0ef7dcab3111" - integrity sha512-PRDso2sGwF6kM75QykIesBijKSVceR6jL2G8NGYyq2XrItNC2P5/qL5XeR056GhA+Ly7JMFvJb9I312mJfmqnQ== - dependencies: - bufferutil "^4.0.1" - debug "^2.2.0" - es5-ext "^0.10.50" - typedarray-to-buffer "^3.1.5" - utf-8-validate "^5.0.2" - yaeti "^0.0.6" - -whatwg-url@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" - integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0= - dependencies: - tr46 "~0.0.3" - webidl-conversions "^3.0.0" - -wrappy@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= - -ws@8.5.0: - version "8.5.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.5.0.tgz#bfb4be96600757fe5382de12c670dab984a1ed4f" - integrity sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg== - -yaeti@^0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/yaeti/-/yaeti-0.0.6.tgz#f26f484d72684cf42bedfb76970aa1608fbf9577" - integrity sha1-8m9ITXJoTPQr7ft2lwqhYI+/lXc= - -yauzl@^2.10.0: - version "2.10.0" - resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" - integrity sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk= - dependencies: - buffer-crc32 "~0.2.3" - fd-slicer "~1.1.0"