Skip to product menu
Skip to main content

URL

To create an input field of the type URL—use the format key and define the field value as url. The list of attributes passed for this input field type is given below. 

Attribute NameDatatype Description
type*String 
(Value should be url)
The type of the input field. Value of the field should be url.
placeholder*String (150)Sample field value displayed to the user that describes the expected value of the input field.
name*String (50)A unique identifier for the field. Upon form submission, value defined for this key will be available in the function associated with the form.
label*String (150)Describes the display name for this field.
hintString (100)Provides a brief description of the fields purpose and the expected input.
max_lengthIntegerSpecifies the maximum number of characters allowed as input.
min_lengthInteger

Specifies the minimum number of characters allowed as input.

valueString(2048)Provide a default input value for the field.  
mandatoryBooleanDefines if the field's requisite is mandatory or not. 
Note: Default value is considered to be false.
disabledBooleanIf disabled is true, then the field will not be editable

Sample Code:

Copied{
   "type":"url",
   "name":"url",
   "label":"Webiste URL",
   "placeholder":"https://www.zylker.com/",
   "hint":"Enter your website address",
   "value":"https://www.zylker.com/",
   "mandatory":false,
   "max_length":100,
   "min_length":10,
   "disabled" : false
}

JSON format passed in handlers for the filled-in value:

Copied{
   "meta":{
      "type":"url",
      "value":"https://www.zylker.com/"
   },
   "value":"https://www.zylker.com/"
}