...
Section |
---|
Column |
---|
Code Block |
---|
| if (form.load) {
SpanishOnly.required = false;
} |
|
Column |
---|
|
|
Here is an example show/hide rule where name and age are required fields only for Spanish speaking students.
Section |
---|
Column |
---|
Code Block |
---|
| if (spanish.value == 'yes') {
SpanishOnly.required = true;
SpanishOnly.visible = true;
}
else {
// Must clear values in hidden fields
// Must be done BEFORE setting <section>.required=false
name.value = null;
age.value = null;
SpanishOnly.required = false;
SpanishOnly.visible = false;
} |
|
Column | |
---|
|
|
Warning |
---|
Do NOT add required palette controls into an optional schema section. The from schema section tries to validate controls inside it as if they are inside an optional section, but because the controls are from palette they are not bound to the same schema. Validation will not work as expected. If these controls are needed, update the xsd to add the controls directly to the schema. Refer to Customizing the XMLSchema for examples of common xsd customizations.
|
...