SmartClient Version: SNAPSHOT_v8.3d_2012-10-04/PowerEdition Deployment (built 2012-10-04)
The following code example:
	Generates several warning messages in the Developer Console:
	I have an application that generates dozens of these SelectItem fields (dynamically) which results in a very large list of warning messages.  I did not see these messages in the 2.5 release.  Is there something in the sample code snippet that needs to be corrected?
							
						
					The following code example:
Code:
	
	SelectItem facetSelectItem = new SelectItem("select_test", "Select Test");
facetSelectItem.setMultiple(true);
facetSelectItem.setMultipleAppearance(MultipleAppearance.PICKLIST);
facetSelectItem.setValueMap("One", "Two", "Three");
Code:
	
	21:24:03.590:selectionchange6:WARN:SelectItem:isc_SelectItem_2[select_test]:$952 - this is a multiple FormItem but newValue is not null and is not an array. 21:24:28.314:MUP8:WARN:SelectItem:isc_SelectItem_2[select_test]:$952 - this is a multiple FormItem but newValue is not null and is not an array.

Comment