Page 1 of 1

Options for Drop Down Boxes

Posted: 29 Oct 2014
by Katerina
Hi,

We have a client who is not happy that a form we have developed for them does not show the drop down fields as blank when when the form is first opened and instead shows the first item in the option list. The client would like the fields to be blank. We had the idea to place an item in the controlling list ***Please Select*** which the client would be happy with but only if we can prevent a user from submitting the form with ***Please Select***. We do not seem able to place validation that woudl revernt this from happening...

The field that is in use is a Lookup Field and probably needs to be so that teh end user can control the options in the form easily.


Thanks

Re: Options for Drop Down Boxes

Posted: 30 Oct 2014
by Dmitry Kozlov
Hi,

You can validate the selected value in fd.onsubmit handler via JavaScript:

Code: Select all

fd.onsubmit(function() {
	if (fd.field('LookupField').value() == 1) {
		alert('Please, fill-in the Lookup Field');
		return false;
	}
	return true;
});

Re: Options for Drop Down Boxes

Posted: 10 Nov 2014
by Katerina
Hi Dmitry,


I applied the function, put the name of the field in the fd.field and after == I added the ID of the Item that holds the **** - Please Select - **** but the function is not working. Have I done anything wrong?

Thanks

Re: Options for Drop Down Boxes

Posted: 11 Nov 2014
by Dmitry Kozlov
Hi Katerina,

Please, make sure that there're no JS-errors in the browser console and that the handler is executed correctly. You can modify the code above to trace the lookup field value:

Code: Select all

fd.onsubmit(function() {
	alert('OnSubmit handler is running');
	alert('Selected ID: ' + fd.field('LookupField').value());
	if (fd.field('LookupField').value() == 1) {
		alert('Please, fill-in the Lookup Field');
		return false;
	}
	return true;
});