MobileCRM.UI.IFrameForm.showModal - Resconet/JSBridge GitHub Wiki
Shows a new iFrame form in modal window.
Arguments
Argument | Type | Description |
---|---|---|
caption | String | Defines the form caption. |
url | String | Defines the URL of the HTML document. |
options | Object | Generic object passed to the new iFrame. |
This example demonstrate how to show a new iFrame form in modal window.
function showModal() {
MobileCRM.UI.IFrameForm.showModal("TestIframe", "http://www.google.com/", (options = { text: "Some Text as option." }));
}