Vault Data Standard 2016 Combobox

Vault Data Standard 2016 Combobox

rolf_klos
Contributor Contributor
569 Views
1 Reply
Message 1 of 2

Vault Data Standard 2016 Combobox

rolf_klos
Contributor
Contributor

Hallo,

 

Wenn ich eine Combobox erstelle welche die Einträge von Vault zeigen soll, bleibt alles leer.

  • Listenwert im Vault ist befüllt
  • Eigenschaft im Vault = Geändert durch
  • Eigenschaft im Inventor = Modifié par

In den DymamicProperties funktioniert alles.

 

<ComboBox SelectedValue="{Binding Prop[Geändert durch].Value}" ItemsSource="{Binding Prop[Geändert durch].ListValues}" Text="{Binding Prop[Geändert durch].Value, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="7"/>

 

Wo liegt das Problem.

Rolf
0 Likes
Accepted solutions (1)
570 Views
1 Reply
Reply (1)
Message 2 of 2

wangdu
Collaborator
Collaborator
Accepted solution

Hi,

 

It looks like you are using the vault property name instead of inventor property name. And that may be the reason why the combobox is empty.

 

Try this:

<ComboBox SelectedValue="{Binding Prop[Modifie´ par].Value}" 
          ItemsSource="{Binding Prop[Modifie´ par].ListValues}"
          Text="{Binding Prop[Modifie´ par].Value, UpdateSourceTrigger=PropertyChanged}" 
          Grid.Column="1" Grid.Row="7"/>

Hope it helps!

 

Wangdu

 

coolOrange

www.coolOrange.com