How can I add a blank entry to the top of the combobox list ?
I have tried these without success:
  onLoadSuccess: function(data){
    return data.push({"txt":"","val":""});
    $(this).prepend("<option value=''></option>").val('');
  }
  onLoadSuccess: function(data){
    $(this).prepend("<option value=''></option>").val('');
  }