117. Empty URL type field
Import
·
Jun 10, 2024
·
article
Want to unlock an empty URL type field by default?
Global level:
Set this system property to true : glide.ui.unlock_empty_url
At form level:
Then use the below client script
function onLoad() {
if (g_form.getValue(‘’) == ‘’) {
g_form.getControl(“_unlock”).click();
}
}
View original source
https://medium.com/@LearnITbyPrashant/117-empty-url-type-field-253aad3d64ed?source=rss-d005fc598f0a------2