I'm trying to see if this is possible, and I think it is, I just can't seem to figure out the coding.
I have a RadComboBox that I'm selecting multiple email addresses out of, so I have the AutoCompleteSeparator=";" turned on. I also have it using LoadOnDemand. This works great for the first email address, but when you start typing the second one, it's using the entire ComboBox text to search for the next value, not just what's after the last ";". Of course it doesn't find a match and then deletes your entry.
I'm thinking the solution is to search e.Text (this is the ComboBox text) for the last ";" and set e.Text to everything past that last ";". This is actually more straight forward .NET programming than something to do with the RadComboBox, but I thought someone here might have already tried this and could help.
I appreciate the assistance.
I have a RadComboBox that I'm selecting multiple email addresses out of, so I have the AutoCompleteSeparator=";" turned on. I also have it using LoadOnDemand. This works great for the first email address, but when you start typing the second one, it's using the entire ComboBox text to search for the next value, not just what's after the last ";". Of course it doesn't find a match and then deletes your entry.
I'm thinking the solution is to search e.Text (this is the ComboBox text) for the last ";" and set e.Text to everything past that last ";". This is actually more straight forward .NET programming than something to do with the RadComboBox, but I thought someone here might have already tried this and could help.
I appreciate the assistance.