Hello Isomorphic,
I came across this code in the ComboBoxItem init function:
	Can you explain why allowEmptyValue should not be set together with specialValues?
Thanks
					I came across this code in the ComboBoxItem init function:
Code:
	
	        if (this.specialValues && this.allowEmptyValue) {
           // Default is allowEmptyValue:true so a warning will be unhelpful
            this.allowEmptyValue = false;
        }
Thanks
Comment