Object Visualization Configuration - UocCommonMultiValueControl
HelloI'm trying manage a users proxy email address from ILM. I'm using the ProxyAddressCollection attribute which is a multivalue string. The box appear fine on the form but never saves any values. What am I missing. XML is bellow
</my:Control>
<my:Control my:Name="SMTP Addresses " my:TypeName="UocCommonMultiValueControl" my:Caption="{Binding Source=schema, Path=ProxyAddressCollection.DisplayName}" my:Description="" my:RightsLevel="{Binding Source=rights, Path=ProxyAddressCollection}">
<my:Properties>
<my:Property my:Name="Required" my:Value="{Binding Source=schema, Path=ProxyAddressCollection.Required}"/>
<my:Property my:Name="Columns" my:Value="34"/>
<my:Property my:Name="Rows" my:Value="6"/>
<my:Property my:Name="DataType" my:Value="String"/>
<my:Property my:Name="Text" my:Value="{Binding Source=object, Path=ProxyAddressCollection.DisplayName, Mode=TwoWay}"/>
</my:Properties>
</my:Control>
September 24th, 2009 11:16pm
I figured it out. Please disregard. I had text rather than Value and also the path contained displayname
</my:Control>
<my:Control my:Name="SMTP Addresses " my:TypeName="UocCommonMultiValueControl" my:Caption="{Binding Source=schema, Path=ProxyAddressCollection.DisplayName}" my:Description="" my:RightsLevel="{Binding Source=rights, Path=ProxyAddressCollection}">
<my:Properties>
<my:Property my:Name="Required" my:Value="{Binding Source=schema, Path=ProxyAddressCollection.Required}"/>
<my:Property my:Name="Columns" my:Value="34"/>
<my:Property my:Name="Rows" my:Value="6"/>
<my:Property my:Name="DataType" my:Value="String"/>
<my:Property my:Name="Value" my:Value="{Binding Source=object, Path=ProxyAddressCollection, Mode=TwoWay}"/>
</my:Properties>
</my:Control>
Free Windows Admin Tool Kit Click here and download it now
September 25th, 2009 12:46am


