Posted on 20/03/2017 14:40:57
Hi Nuno
A list box has X-values - each value is part of an array when indexed - so each piece of information in the list is one array entry
<input type="radio" name="field" value="Some">
<input type="radio" name="field" value="Other">
<input type="radio" name="field" value="String">
The value of this is an Array ["Some", "Other", "String"] which are indexed as such. In this case since the values are strictly one words, analyzed has no impact.
If the values contained more words:
<input type="radio" name="field" value="Some word">
<input type="radio" name="field" value="Other word">
<input type="radio" name="field" value="String word">
The values would then be: ["Some word", "Other word", "String word"] - which would be handled differently on analyzed/not analyzed.
So you cannot get a string of "Some,Other,String" in the field in the index (I guess that is what you are trying?)
BR Nicolai