Good Morning,
I would like to switch using the style property to show or hide of a container or a field.
I’ve discovered that using the style property with “display: none;” instead of using JS code
$('.field-to-hide').hide();
to hide a container or a field can stop it from flashing on the screen when the form is launched.
I have been trying to use class and css to update the style property with no success. See examplea below.
$('.RequestInfo').css('display', 'none');
$('.RequestInfo').css('display', 'block');
What is the JS codes to show or hide a container (Grid) using “display: none;” or “display: block;” in the style property?
What is the JS codes to show or hide a field using “display: none;” or “display: block;” in the style property?
Thank you very much!