SmartClient : Smartclient v8.2p_2012-06-07 - Power Edition
Browser : IE 9
I'm adding this to a ribbon:
	The function getDisplayValue(value) is not getting called.
							
						
					Browser : IE 9
I'm adding this to a ribbon:
Code:
	
		title: 'Sectors',
	numRows: 2,
	width: 220,
	height: 89,
	searchPanelRef: this,
	isRequired: false,
        showDefaultValue: false,
	ID: 'SectorMultiSelect',
	numCols: 2,
	titleOrientation: 'top',
	name: 'sector', 
	editorType: 'select',
	multiple:true,
	multipleAppearance:"picklist",
	optionDataSource: "coolSectors",
	showTitle: false,
	displayField:"name",
	valueField:"id",
	getDisplayValue: function(value) 
        {
	        if (value != null && value.length > 1) 
	        	return '...';
	        return value;
	}

Comment