Unlock URL type field on load of a formSummaryOn load of a form, the URL type field will be locked by default. The input area will not be visible. It is possible to change the URL field to be unlocked on load.InstructionsThere is no OOB way to unlock the URL type field on the Load of a form. Following onLoad client script might be used on the affected form to achieve this requirement. function onLoad() { g_form.getControl("url_field_name").click();}