fieldset

Module(s): vncanvas-base, vncanvas-form
Description: Creates a HTML form fieldset element for controls grouping.

  • Note: Use only on a 'form', not a 'cform'
  • Instantiating form elements without using "form" is not recommended.
fieldset, "fieldset_name"
Creates a fieldset with the given id.
The fieldset named "left_controls" is created below.
  
chapter = [

	...
	fieldset, "left_controls",
	/* All form elements following this fieldset and
	before the next fieldset or the end of form will be
	grouped to "left_controls" */
	...
];