Is there a way to hide/unhide an INLINE HTML field using a clientscript? isDisplay returns an error of "TypeError Cannot set properties of null (setting 'isDisplay')".
d
dcrsmith
01/25/2022, 9:11 PM
if it's html just use css? display:none
j
JessicaL
01/25/2022, 9:26 PM
I need to hide it and unhide it depending on other fields (using fieldchanged mostly).
d
dcrsmith
01/25/2022, 9:50 PM
jQuery('#myfieldid').hide() and .show() should work
black mage 1
j
JessicaL
01/26/2022, 1:39 PM
That worked! Thank you so much! I appreciate the help!