How to pass default value for input field type text in installation-parameters

@Konanki_Prakash
Good day!
As @Mughela_Chandresh said you can use default_value key in Iparams.json
or you can use dynamic Iparams to set the value at runtime while on Form load,
There is a hook available on form Load and you can use the same to set the value.

say for eg:
iparams.json

function onFormLoad() {
utils.set(‘First_name’, { value: ‘sample value’ });
}

for more reference kindly refer to this doc,

Hope it helps :slight_smile:

Thanks

1 Like