↕️Built-in JS functions
Helpers
Open URL
helpers.openUrl(url: string, options?: { newTab: boolean = true })
// Example:
helpers.openUrl("https://www.google.com", { newTab: true })Open application
helpers.openApp( applicationId: string, options?: { queryParams?: {"key":"value"}, hashParams?: {"key":"value"}, newTab: true } )
//Open an QuickDEV app in a new tab
helpers.openApp("632bddc33bb9722fb561f6c0", { newTab: true })
//Open an QuickDEV app and pass in `id` parameter
helpers.openApp("632bddc33bb9722fb561f6c0", { queryParams: { "id": table1.selectedRow.id } })
//or
helpers.openApp("632bddc33bb9722fb561f6c0", { hashParams: { "id": table1.selectedRow.id } })Download file
Copy to clipboard
Message - global notification
localStorage
Responsiveness / Screen information
Last updated