Empty value in a valuelist based on an Array

How can I add an empty value to a valuelist that is based on an Array?

Alexander

Add an empty entry in the array…

If you would create the array yourself like below, just add an extra entry

var testarray = new Array
testarray[0] = ‘A’;
testarray[1] = ‘B’;
testarray[2] = ‘’;

hope this helps…

Paul