Hi @aesthetic123 ,
If its a basic form, add custom JS on: Open your Basic Form in Portal management ModelDrivenApp-> select Additional Settings tab -> at the bottom, add your custom JS.
If its a Multistep form, add custom JS on: Open your Multistep form in Portal management ModelDrivenApp-> open your step from the Form Steps tab -> at the botton of the Form Options tab, add your custom JS.
Your JS will be something similier as:
$(document).ready(function () {
if ( //your condition) {
$("#abc_contactid").closest("td").show();
}
});
----------------------
If you enjoy this post, click the thumbs-up button. If it helped you, mark it as a solution so others can find it easily.
Cheers,
Dom