i need to pass one input filed type text with some static data in the installation parameters how can i pass, as i checked in doc we can pass default_value only for radio, multiselect , or dropdown . how to pass value for input filed.
this input field is we are doing visible:false and it’s secure
@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’ });
}