To enable the request from URL(www.gmail.com) Link beside the Backup Enabled field on the form
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2024 12:55 PM
Create a Field: Backup Enabled
Type: Integer
Choices: Yes/No
Implementation:
Create UI Macros:
Name: Backup_Enabled_URL
UI Macros Script:
-----------------------------------------------------------------------------------
<?xml version="1.0" encoding="utf-8" ?>
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null">
<j:set var="jvar_n" value="open_fs_url"/>
<span id="${jvar_n}" onclick="open_fs_url()" title="Open Link" tabindex="0" class="btn btn-default icon-open-document-new-tab">
<span class="sr-only">open_fs_url</span>
</span>
<script>
function open_fs_url(){
var url = "https://forms.office.com/pages/responsepage.aspx?id=hpAxLiaao0aGX2Fb7VdnhhRGXTwXerZKnXa_i7-LdXNUN1o5...";
window.open(url);
}
</script>
</j:jelly>
------------------------------------------------------------
Right click on “Backup Enabled” field and open disctionary
Add “ref_contributions=Backup_Enabled_URL” and save it
Result:
This URL will open new window.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2024 01:10 PM
Where is the question?
Blog: https://sys.properties | Telegram: https://t.me/sys_properties | LinkedIn: https://www.linkedin.com/in/slava-savitsky/