Changing the Default Select Label in the Drop-Down Fields

You can change the default select label that appears in the drop-down items (Combo and Icon Combo) when the form loads through the form's listener JS. By default, 'Select' is the label that appears for the drop-down items as shown in the following screen shot:

The following sample code snippet changes the default select label of a Combo form item at form initialization: 

this.fm.registerHandler(CFEC.PRE_INITIALIZE, function(fm) 
{
	return 
	{
		'ACCOUNT_TYPE': // Combo Item ID
		{
			'selectLbl': 'Select Account Type' // Select label for the Combo item.
		}
	}
});