I m using Sitecore and have a multilist field I d like to use Lucene to search on. The problem I have is that the field is a pipe-delimited list of actual values and there could be between 0 and an infinite (theoretically speaking, actually there s probably only a thousand or two possibilities) number of items in this list. I haven t been able to successfully use a wildcard query and I can t envision how to break this field up into multiple fields since there s an unknown number of items in the list.
I m creating a custom edit control for my content authors to use in the Page Editor. Of course this means I want my control to save data to an Item when the user clicks on the Save button. How is ...