Hi Keerthana, I do not believe that its possible to do what you are
looking for. That said, please reach out to Campaign Support if you want
to dig into this deeper and submit an enhancement request to R&D.
Regards,Craig
@Keerthana_H_N , To implement video component you can follow the below
link
https://experienceleague.adobe.com/docs/experience-manager-core-components/using/components/embed.html?lang=en
or you can create a custom component with html5 code and input the video
URL as a dialog field and display the input value in the html. Let us
know if you have any questions.
On publish it works the same way if you have that information stored
there. Be aware, that by default (if you are not authenticated) all
requests are executed using the "anonymous" user.
Hi @Keerthana_H_N Answered here -
https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-can-we-create-content-fragment-via-code/m-p/425621#M121296
Below is the snippet for setting value to the Element - I have one
Single Text element and Multi Line Text element as part of my model. Get
that element using its "fieldName" (that you provided while creating
CFM) and then set the content. Note : Any updates/persists to content
fragment calls for a commit unless specified otherwise. if
(contentFragment != null) { ContentElement textField =
contentFragment.getElement("textField"); LOG.debug("Textfield content
type={} and content={}",
textField.ge...