Hi,
Sorry for the late reply. Unfortunately you cannot use this AC as suggestion only – but it might be added in a future release. To be able to add your own value when using “isLookupInSelf” you must set this attribute to true and have the user click the “Add xyz to the list” to add the custom value.
You can also add a new button to your form to remove the ac and leave a plain text field. Add this in a HTML section below your ac field like this (change “Project” with your field name):
<input type="button" value="Add your own value" onclick="acAddYourOwnValue(this,'Project')">
Then add this to the Custom JS:
function acAddYourOwnValue(btn,fin){
jQuery(btn).remove();
spjs.ac.destroy(fin);
}
Hope this helps,
Alexander