Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-08-2023 07:57 AM
Unchecked but I think it is as easy as calling the function in your client script:
c.confirm();
c.onConfirm = function() {
c.confirmed = "asking";
spModal.confirm("Can you confirm or deny this?").then(function(confirmed) {
c.confirmed = confirmed; // true or false
})
}
Help others to find a correct solution by marking the appropriate response as accepted solution and helpful.