Is it possible to provide iframe in spModal?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2022 12:59 AM
In portal, I had a sentence.. when I clicked on it..a popUp needs to open ... in that I want to show some website.. ex: w3 schools website... so what should I need to write?
HTML
<div>
<p ng-click="c.clck()">Click here to open Popup</p>
</div>
Client controller
api.controller=function(spModal) {
/* widget controller */
var c = this;
c.clck= function () {
spModal.alert('How do you feel today?').then(function (answer) { // In this line what should I write?
});
}
};
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2022 01:46 AM
Hi,
which form is this? catalog or normal form?
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2022 02:21 AM
Hi Ankur,
It's a widget..