I try to create a valuelist
var array = databaseManager.getFoundSetDataProviderAsArray(forms.contacts.contacts_to_contacts_join,'contacts_join_to_comemail.com_number');
array.toString()
var array2 = forms.contacts.contacts_to_comemail.com_number ;
var dataset = array.concat( array2)
application.setValueListItems('commNumber',dataset);
//array returns [value1,null]
//array 2 returns value2
//dataset returns [value1,,value2]
but if one of the array’s has an empty(non valid) value, the list returns “noname” for it.
I think that the problem is the null in the first array, but I don’t know how to get rid of it.
Any suggestions?