Page 1 of 1

How to hide a field in a form

Posted: 04 Feb 2015
by oren944
Hello,


How would I hide a field in a form on start. I want this field to appear once the user has input a value in the field above it.


Thanks!

Re: How to hide a field in a form

Posted: 05 Feb 2015
by Dmitry Kozlov
Hi,

You need to assign a CSS class to the field you want to hide in Forms Designer and use this class to get and hide the field via JavaScript:

Code: Select all

$('.your-custom-class').hide();
Please, find more samples in the following post:
http://spform.com/office-365/cond ... ynamically