Ability to group items on the same line in a form

Ability to group items on the same line in a form

Requirements::customCSS("
	#Form_TODOFORMNAME .CompositeField .field {
		display: inline-block;
		margin: 0 5px;
	}
	#Form_Form_TODOFORMNAME .CompositeField input {
		width: 100px;
	}
	#Form_Form_TODOFORMNAME .CompositeField input.checkbox {
		width: auto;
	}
");

//TODO add this "field" (or composite field or fields) to $fields
$f = CompositeField::create(
	CheckboxField::create('Check1','One'),
	CheckboxField::create('Check2','Two'),
);
Rate this post