when type is 'DOMAttr' then @object.getAttribute(@property) or ''

when @isMultiChoice
	results = []
	for choiceName,choiceEl of @choices
		if choiceEl.object.checked
			if type is 'DOMRadio'
				return choiceName
			else
				results.push choiceName

	return results