Hi, I tried in the incognito in Chrome and Edge and found the same issue, the fields display, flick and then hide based on the logic I have in the custom js on web form step.
I’m using fetchxml template to get the values from one table and setting values in the dropdown field on my form, then I’m using web form step that have that dropdown and some other fields.
The custom js goes like this
//Get values from fetchxml template
$.getJSON("/fetchxmltemplate?id=" + primaryValue, function(data) {
//Check values in dropdown
if (dropdownvalue != "") {
$("#" + DropdownName).val(dropdownvalue);
//Calling function to hide
ToggleContent();
//Hiding field
function ToggleContent() {
$("#cr501_InputField").closest("td").hide();
}
Thanks,
-RI