I need DropDownList with list of Exchange Mailbox databases in "Configuration for User Editing" RCDC.
So I bind ItemSource of DropDownList to MailboxDatabase.LocalizedAllowedValues in RCDC.
And fill validation string pattern of "MailboxDatabase" attrbute with following regex:
^(base|base_2)?$
If regex contains only letters, digits and "_" as above it works great, but...
If regex contains dashes or special characters it doesn't work.
Something like ^(base|base-2)?$ or ^(base|base%2)?$ just doesn't work, drop-down list is empty.
I tried screen dashes and special characters with backslash - no success.
Is there any way to see dash in FIM drop-down list through LocalizedAllowedValues?
So I bind ItemSource of DropDownList to MailboxDatabase.LocalizedAllowedValues in RCDC.
And fill validation string pattern of "MailboxDatabase" attrbute with following regex:
^(base|base_2)?$
If regex contains only letters, digits and "_" as above it works great, but...
If regex contains dashes or special characters it doesn't work.
Something like ^(base|base-2)?$ or ^(base|base%2)?$ just doesn't work, drop-down list is empty.
I tried screen dashes and special characters with backslash - no success.
Is there any way to see dash in FIM drop-down list through LocalizedAllowedValues?