I'm running into an interesting problem that I'm guessing must have surfaced before... <br><br>I've got an element in my XSD which is associated w/ a MultiSelectWidget. That allows users to select multiple strings to serve as a value for that particular element.<br>
Those multiple values are stored underneath as comma separated values.<br><br>e.g.<br><br>Products<br>---A<br>---B<br>---C<br><br>if first two products are selected and the document is saved, in control code underneath it gets saved as 'A,B'<br>
The problem arises when one of the product names has a comma in its description<br>   <br><br><br>
Products<br>
---A<br>
---B,B1<br>
---C<br>      <br>now in the control code underneath, it is saved with 'A,B,B1'.<br>Obviously that blurs the line between having two options 'A' and 'B,B1' and three options 'A', 'B', and 'B1' which creates problems when I try to search for things later.<br>
<br>I tried replacing commas w/ unicode values but that didn't work.<br><br>Any suggestions?<br>