QuickDEV
  • ▶️Quick start
    • 🔃Overview
    • 🔑Security
  • 🎭Users management
    • 👨‍👩‍👦‍👦Members and groups
    • 🔐Permission for resources
  • 🖥️Applications
    • ➕Create applications
      • ⤴️Create application/module
      • 🔲Module
      • ✅Version and Release Management
    • 🎨Application editor
      • 👁️‍🗨️Visual components
        • ⚙️Common component settings
        • ⬆️File upload
        • 📊Charts and graphs
        • 🌄Image
        • 📋Option lists
        • 📑List view
        • ⬜Drawer
        • 🗺️Google maps
        • 📩Messages / Toast
        • 📅Calendar
        • Custom component
      • #️⃣Use markdown
      • ⌨️Keyboard shortcuts
    • 🔗Navigation
    • ⏯️Actions editor
      • ⏱️Date handling
      • 🟰Data selection & JavaScript
      • ⚡Event handlers
      • 🔎JavaScript Query
      • ✖️Dynamic variable
      • 💱Transformers
      • 🧮Data responder
      • ↕️Built-in JS functions
      • 📚Third-party libraries
    • 🖌️Styling
      • 📝Themes
      • 🖍️Customize styles
  • 🚀Database & API
    • 🔎Queries
    • 🧰Query repository
    • 📡Datasources
      • 🌎API
        • 1️REST API
        • 2️GraphQL
        • 3️Google Sheets
      • 🟠SQL Databases
        • 1️Oracle
        • 2️Microsoft SQL Server
        • 3️MySQL
        • 4️PostgreSQL
        • 5️MariaDB
      • 🟡NoSQL Databases
        • 1️MongoDB
        • 2️CouchDB
        • 3️DynamoDB
      • 🔴REDIS
      • 🟢BigData & OLAP
        • 1️Big Query
        • 2️Snowflake
        • 3️ClickHouse
        • 4️Elasticsearch
      • 🌐WebSocket
  • 💻Integrations
    • 1️ANGULAR
    • 2️HTML Pages
Powered by GitBook
On this page
  1. Integrations

HTML Pages

It is also possible to integrate QuickDEV Apps and Modules with HTML pages.

Place the standard JavaScript Files in your part of the HTML page.

<script src="https://unpkg.com/react@16.4.2/umd/react.production.min.js"></script>
<script src="https://unpkg.com/react-dom@16.4.2/umd/react-dom.production.min.js"></script>

And now the QuickDEV SDK script, as the last tag before the </BODY> closing tag.

<script src="url-of-quickdev_sdk/bundle.js"></script>

Here is an example of HTML file:

<!DOCTYPE html>
<html lang="en">
<head>
<title>Test notification</title>
<meta charset="UTF-8">
<script src="https://unpkg.com/react@16.4.1/umd/react.production.min.js"></script>
<script src="https://unpkg.com/react-dom@16.4.1/umd/react-dom.production.min.js"></script>
</head>
<body>
	<div class="quickdev-module-container">
		<div id="quickdev-embedding">
		  <div class="quickdev-module-display"></div>
		  <input type="hidden" class="quickdev-backend-url" value="https://apps.quickdev.cloud" />
		  <script>
			  var app_id_information = document.createElement("input");
			  app_id_information.setAttribute("type", "hidden");
			  app_id_information.setAttribute("class", "module-id");
			  app_id_information.setAttribute("value", "663392cf9e5a3c74ebd09cdc"); <!--Change this with your app/module id-->
			  document.getElementById('quickdev-embedding').appendChild(app_id_information);  
		  </script>
		</div>
	</div>
<script src="https://sdk.quickdev.cloud/bundle.js"></script>
</body>
</html>
PreviousANGULAR

Last updated 3 months ago

💻
2️