This content has been marked as final.
Show 2 replies
-
1. Re: Deleting a single item list in dropdown choices
MarkWalsh Sep 4, 2013 6:01 AM (in response to LeddyGee)With the 'resetForm' javascript command, you can specify a single field, or multiple fields, to reset. Add this to a button's action event, and replace 'Combo Box1' with the name(s) of the fields you want to reset:
this.resetForm("Combo Box1") // Resets only Combo Box1
Alternately, you can use one of the following:
this.resetForm(["Combo Box1", "Combo Box2"]) // Resets only Combo Box1 and Combo Box2
this.resetForm() // Resets entire form
-
2. Re: Deleting a single item list in dropdown choices
LeddyGee Sep 4, 2013 6:48 AM (in response to MarkWalsh)Excellent, that works perfectly. Thank you for your time!

