Static and Dynamic Content
Demonstrated Features
- Static Content
- Programmatic Content
Required Skills
- HTML
- JavaScript
Required License
- Premium
Technical Insights
Using the App Builder requires no coding. Coding features are optional and meant for users who want to go beyond the basic App Builder functionality to add their own custom logic, fine-tune app behavior, extend features, and integrate with custom workflows. If you are not interested in coding, you can skip these technical tutorials.
HTML Widget
Simply enter your own HTML.
<br/>
<h5>This is static HTML.</h5>
<br/>
<img src="https://wpdataaccess.com/wp-content/uploads/2024/11/wpda-logo-01-svg.png" width="100%" />JavaScript Widget
Simply enter your JavaScript. More detailed information can be found in the documentation (docs).
(() => {
setContent("<h5>This dynamic content was added using JavaScript.</h5>")
const today = new Date().toLocaleDateString()
return `<p>${content}<br/>TODAY: ${today}</p>`
})()