Getting Started with DeskDirector
DeskDirector Portals
Browser Support
What is the DeskDirector Admin Portal?
What is the DeskDirector TECH Portal?
What is the DeskDirector Client Portal?
Desktop Portal
Managing Your Account
Pricing & Subscription Plans
Deskdirector - Sign up walk through
Managing your DeskDirector Subscription
Admin Essentials
Release Notes
Enabling Master Admin
Permissions & Feature Configuration (Tokity)
Permissions & Feature Configuration (ConnectWise/Autotask Partners)
Automatic Contact Creation
The Developer Corner
Monitoring Portal Usage
DeskDirector Features Overview
Desktop Portal Version Differences
Logging in to DeskDirector
User Profiles & Profile Pictures
Office Hours
Using Markdown
How Searching Works
Embedding Help Page Media
Get started with the DeskDirector Power Automate Connector
Features
Portal Customization
Service Catalogue
Forms
Getting started with DeskDirector Forms
DeskDirector Forms - Question Types in Detail
Dynamic Form Content
Communication
Actionable Messages for Emails
Real-Time Chats
Notifications
Email Notifications
Email Template Engine
Surveys
Broadcasts
Generative AI
DeskDirector with Generative AI
Setting up AI Service Providers
AI Assistants in DeskDirector
Custom Tools for AI Assistants
Knowledge Bases for AI Assistants
Ticket Summary for Tech Portal
Advanced
Login & Authentication
Contact & User Groups
Approvals
Task Lists
The Learning Center
Group Tags
Custom Domains
File Storage
Portal Deep Linking
Clean Tickets
Contacts
Accounts
Service Dashboard
Auditing and Analytics
Integrations
ConnectWise
ConnectWise Custom Menu Item for DeskDirector
ConnectWise
ConnectWise Quotes & Invoices
ConnectBooster
ConnectWise Sell
ConnectWise - Avoid Aggressive Notifications
AutoTask
Switching or Merging PSAs
QuoteWerks
Wise-Pay
TimeZest
BiggerBrains
OneNote Notebooks
Integrations - Frequently Asked Questions
IT Glue
Microsoft Teams App
Introducing the DeskDirector for Microsoft Team App
Installing the Microsoft Teams App (Client Mode)
Installing the Microsoft Teams App (Tech Mode)
Setting up Tags for Teams Discussions (Tech)
Branding the DeskDirector Teams App
DeskDirector Teams App Notifications
User Groups Integration with Microsoft Teams
Setting up Content Security Policy (CSP)
Advanced topic: Setting up Tech & Client Mode in the same tenancy
Integrating Microsoft Teams with DeskDirector Tech Portal
Smart Alerts for Tech Users
Microsoft Power Automate
Actions
Solutions
Power Automate Template Gallery
Featured Solution: Teams Ticket Discussion
Featured Solution: Ticket Briefing
Introduction to Power Automate
Power Automate Connector - Setting up your first flow
DeskDirector Power Platform Connector Reference
DeskDirector Connector Triggers
Troubleshooting
Troubleshooting via Web Developer Tools
Desktop Portal - Common Issues
Contact & Service Agent Impersonation
Diagnose Entities Tool
DeskDirector Desktop App - Installation Issues
Troubleshooting DeskDirector Connection Issues
Login & Authentication - Common Issues
Permissions & Access - Common Issues
Tickets & Chats - Common Issues
Approvals - Common Issues
Email & Email Delivery - Common Issues
PSA Entity Syncing - Common Issues
PSA Integration - Common Issues
ConnectWise Integration - Common Issues
Autotask Integration - Common Issues
ConnectWise Audit Trail - Exporting API Logs
Microsoft Teams App - Common Issues
Contact DeskDirector Support
Security
Glossary
Archived
- All Categories
- Archived
- DeskDirector Forms - Embed content
DeskDirector Forms - Embed content
Updated
by Jason He
We have extensive Markdown supported and encourage you to consider dynamic content that returns markdown.
DeskDirector forms provide many options in collecting information, but it also has the capability to provide information, such as videos to demonstrate how to trouble shoot certain issues.
In order to embed video or other external content into forms, you need to be familiar with Markdown and HTML/CSS. Field's description supports markdown, which you can also put raw HTML code inside.
While we allowed adding videos into the field description before, there was no way to help style the width and height of the embedded video. With the latest client portal release, you can easily achieve styling with CSS class. We will demonstrate how to do that below:
<div class="ddf-ratio ddf-ratio-16x9">
<iframe src="https://www.youtube.com/embed/zpOULjyy-n8?rel=0"></iframe>
</div>
The above snippet will render the embedded Youtube video with a 16:9 ratio. Our CSS class supports several common aspect ratios.
- 1x1 - ddf-ratio ddf-ratio-1x1
- 4x3 - ddf-ratio ddf-ratio-4x3
- 16x9 - ddf-ratio ddf-ratio-16x9
- 21x9 - ddf-ratio ddf-ratio-21x9
Here are examples of HTML code of the aspect ratios mentioned above:
<div class="ddf-ratio ddf-ratio-1x1">
<iframe src="https://www.youtube.com/embed/zpOULjyy-n8?rel=0"></iframe>
</div>
<div class="ddf-ratio ddf-ratio-4x3">
<iframe src="https://www.youtube.com/embed/zpOULjyy-n8?rel=0"></iframe>
</div>
<div class="ddf-ratio ddf-ratio-16x9">
<iframe src="https://www.youtube.com/embed/zpOULjyy-n8?rel=0"></iframe>
</div>
<div class="ddf-ratio ddf-ratio-21x9">
<iframe src="https://www.youtube.com/embed/zpOULjyy-n8?rel=0"></iframe>
</div>
Frequently asked questions:
Q: Which portal version will support above CSS class?
A: From web portal 3.13.17 or desktop portal 3.3.x and above.
Q: Can those CSS class be used with other iframe? Such as website or Microsoft Calendar?
A: Yes, it can be used for any kind of embed.
Q: Other than ratio, is that possible to make height equal to the iframe's content height?
A: No, as of year 2020, there is no way to use CSS class to determine iframe's content height. That's why ratio has been used.
Q: How come embedded content is not rendered with correct ratio inside admin portal's form editor?
A: As 28th of Sep 2020, admin portal has not yet supported ddf-ratio CSS class. We will add them on next admin portal release.