Set Embed Page Url and Trigger the On Data Change Script
- Last UpdatedJun 25, 2024
- 1 minute read
Use the below script to set the Embed Page Url and also trigger the Embed Page’s On Data Change script.
// Below line would set the url of the Embed Page to load
control.findById(“E1”).url = "http://www.skelta.com";
// Below line would set the value of the Embed Page control, so that
// the On Data Change script of the Embed Page is fired.
control.findById(“E1”).value = "http://www.skelta.com";