How to set src of video tag at dynamic?
I think I have something like that made with a custom component. Maybe it helps
Read full answer below ↓Question
Hi @artf ,
Hi I have drag and drop video tag and button from blockmanager, On Clicking the button , I need to change the url to src. But not working, Please guide me.
editor.BlockManager.add("html/video", { label: `<div>
<img src="../../../Images/SiteBuilder/video.svg"/>
<div class="my-label-block">Video</div>
</div>`,
category: 'UI Controls',
tab: 'UI Controls',
id: 'UI Controls',
content: `<video id="video1" src="../../../Images/Jotun/Media21-1.m4v"id="TestVideo" controls type="video/mp4">`,
});
Button Event:
va url = "../../test.mp4";
$("#video1").attr('src', url);
Its not applied, Let me know the anyother way to set.Answers (4)
I think I have something like that made with a custom component. Maybe it helps
"use strict";
const videowithupload = (editor) => {
editor.DomComponents.addType("videowithupload", {
// isComponent: (el) => {
// console.debug(el);
// },
model: {
defaults: {
tagName: 'video',
autoplay: true,
loop: true,
muted: true,
controls: false,
poster: "poster.png",
src: "",
draggable: false,
removable: false,
copyable: false,
resizable: false,
stylable: [],
traits: []
},
init() {
console.debug("video - model - init");
},
updated(property, value) {
// console.debug(property);
// console.debug(value);
// console.debug(prevValue);
if (property === "src")
this.set("src", value);
}
},
view: {
events: {
dblclick: "onActive"
},
init() {
console.debug("video - view - init");
const { model } = this;
const props = [
'loop',
'autoplay',
'controls',
'color',
'rel',
'modestbranding',
'poster'
];
const events = props.map(p => `change:${p}`).join(' ');
this.listenTo(model, 'change:src', this.updateSrc);
this.listenTo(model, events, this.updateVideo);
},
onRender() {
console.debug("video - view - onRender");
this.updateVideo();
},
updateVideo(){
const { model, el } = this;
el.loop = model.get('loop');
el.autoplay = model.get('autoplay');
el.controls = model.get('controls');
el.poster = model.get('poster');
},
updateSrc() {
console.debug("video - view - updateSrc");
const { model, el } = this;
if (!el) return;
let src = model.get('src');
el.src = src;
},
onActive(e) {
console.debug("video - view - onActive");
editor.runCommand('open-assets', {
target: this.model,
types: ['videos'],
accept: 'video/*',
onSelect() {
console.debug("video - upload - onSelect")
editor.Modal.close();
editor.AssetManager.setTarget(null);
}
});
e.stopPropagation();
}
},
});
}
export default videowithupload;
If you need to update only the block content (eg. the change will be applied on new dragged blocks) you can change it in this way:
const block = editor.BlockManager.get('html/video');
block.set('content', '<video ...>')
if you need to change Components in the canvas, I'd recommend reading more in detail Components
,Thanks @artf and stf1981 for your response, Actually I drag and drop multiple videos with generated Random number to Id attribute. In this case How to update src specific selected video?
I gets failed to update src.
Thanks for reporting this, @san-123.
Great question about How to set src of video tag at dynamic?. The recommended approach with GrapesJS is to use the event-driven API.
Start here:
- Check the GrapesJS documentation for your specific module
- Look for the
on()event listener method - Most operations can be achieved by listening to editor and component events
Common patterns:
// Listen for changes
editor.on('change', () => console.log('something changed'));
// Component lifecycle
editor.on('component:mount', (c) => console.log('component ready', c));
editor.on('component:update', (c) => console.log('component updated', c));
If you're still stuck:
- Share a minimal CodeSandbox reproduction
- Include what you've already tried
- Mention your GrapesJS version
- The community is here to help!
Related Questions and Answers
Continue research with similar issue discussions.
Issue #3631
How to load dynamic content in the final HTML file?
I looked everywhere, including the issues section and tried a few things. But really unsure how to load dynamic content in my components al...
Issue #3218
How to add new HTML element with inline styles?
I would like to add a new HTML element, with inline styles, around the rte.selection(). With the following example, the HTML is OK, but pro...
Issue #6348
It's possible to drag and drop literally anything inside grapesjs canvas
GrapesJS version [X] I confirm to use the latest version of GrapesJS What browser are you using? Chrome Reproducible demo link https://grap...
Issue #5388
Running Headless Mode Returns Different HTML from Editor
GrapesJS version [X] I confirm to use the latest version of GrapesJS What browser are you using? ChromeV117.0.5938.62 Reproducible demo lin...
Paid Plugins That Match This Issue
Curated by issue keywords and label relevance to help you ship faster.
Loading paid plugin recommendations...
Check the open-source GrapesJS plugins on GitHub or run a quick search in our free catalog.
Browse free plugins →Premium plugins ship with support, regular updates, and production-ready features — save days of integration work.
Browse premium plugins →Related tutorials
In-depth guides on the same topic.
Tutorial
How to Build a Production GrapesJS Editor: The Complete Walkthrough of Brief, Preset, Plugins, and Services
A complete walkthrough of building a production GrapesJS editor: how to choose a preset, pick plugins, and scope setup services without burning a sprint.
Tutorial
Big Updates: TinyMCE 8 and Placeholder 2.0 for GrapesJS
In May we shipped major updates to two of our most popular GrapesJS plugins — TinyMCE Inline Text Editor and Placeholder.
Tutorial
Find the Right GrapesJS Plugin in Seconds: Smarter Discovery Is Live
We're shipping a set of discovery upgrades. New label filters, a proper compatibility switch for GrapesJS vs Studio, one-click and a smarter sort bar.
Browse Plugin Categories
Jump directly to plugin category pages on the marketplace.