Hello Everyone,
is it possible to load/render an URL in From with Iframe or enything else, out of loaded control "fd.control('URL').value = value.ID"?
Thank you very much
Andre
Hello Everyone,
is it possible to load/render an URL in From with Iframe or enything else, out of loaded control "fd.control('URL').value = value.ID"?
Thank you very much
Andre
Hello @Andruu,
You can add an iframe to a form with HTML control.
If you want to update the content of the control dynamically, you can do that with teh code:
fd.control('Control1').html = '<h1>Title: [Title]</h1>'
Hi Margo,
canĀ“t name the html control as descripted in documentation?
Any Ideas?
You need to ass CSS class to the control like so:
And then you can change the content of the control with the code:
$('.my-html-control').html("<b>Hello world!</b>")