Conditional Fields?

I want to have certain fields show up on a form only when certain values are selected in a previous fields drop down list. Is there an easy way to do this dynamically without the user having to refresh the url?

Thanks,

Chris

Subject: RE: Conditional Fields?

It depends what you call easy. If you enable Javascript in your application, you can easily refresh the form for the user whenever the field changes – just enable the “refresh on keyword change” option of the keyword field.

Otherwise, you can write your own JavaScript code for the onchange event of the field, and use the DHTML features of the browser to hide or display varions sections based on the values selected.

Subject: RE: Conditional Fields?

Thanks for the direction!