Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! X
Hello all.
I am trying to display custom HTML fragment inside the OOTB attribute panel. I already created a controller that generates the fragment.
HTMLComponent hc = new HTMLComponent(" Goole Link " );
But I need help figuring out how to dynamically generate that HTML. Can i wire my controller into the Data Utility?
Hello ,
There are few customisation components available like , URLDisplayComponent which will accept URL and render the page on-click.
Even tool-tip can be set for this component.
UrlDisplayComponent urlDisplayComp = new UrlDisplayComponent(Label,Label, URL,ICON);
urlDisplayComp.setToolTip("Click");
Regards,
Sriram Rammohan