eg if you have a source:
source: async function(value) {
console.log(value);
return [value];
}
You would expect that whatever the user typed will always appear in the list of available tags.
This is not the case when dealing with strings such as the following:
'Something A'
'Something B'
Because the value that is sent to the source function for these 2 values is:
As soon as the second word in this string is more than one character, correct behaviour resumes.
eg if you have a source:
You would expect that whatever the user typed will always appear in the list of available tags.
This is not the case when dealing with strings such as the following:
Because the value that is sent to the
sourcefunction for these 2 values is:As soon as the second word in this string is more than one character, correct behaviour resumes.