Community
Vault Customization
Share your knowledge, ask questions, and explore popular Vault API, Data Standard, and VBA topics related to programming, creating add-ins, or working with the Vault API.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

VDS-MFG-Sample 2024.3, Inventor.xaml in CAD.Custom

5 REPLIES 5
SOLVED
Reply
Message 1 of 6
Goran.Kis.
364 Views, 5 Replies

VDS-MFG-Sample 2024.3, Inventor.xaml in CAD.Custom

Hi all,

 

I am currently testing the samples and have noticed an issue with Property Values. Specifically, when Initial Values are set in Vault, they do not appear in the window as expected.

 

Here’s what happens:

  • Main windows show empty field
  • The option to choose a Property Value is available.
  • When selected, it writes the value to the file.
  • However, the next time I open the window, the value appears blank.

This seems to be an issue with the values not retaining or displaying correctly.

 

GoranKis_0-1724856863961.png

GoranKis_2-1724857056872.png

GoranKis_1-1724856870699.png

 

Could you please advise on how to resolve this?

 

It woks in old VDS-2022-Manufacturing-Sample window.

5 REPLIES 5
Message 2 of 6
Markus.Koechl
in reply to: Goran.Kis.

What is your Vault Update level? We had this issue in 2024 RTM but resolved it with updates. I checked the the latest 2024.3.1, and the list values with initial values work as expected. 

MarkusKoechl_0-1724874926253.png

 



Markus Koechl

Solutions Engineer PDM, Autodesk Central Europe
Message 3 of 6
Goran.Kis.
in reply to: Markus.Koechl

Hi @Markus.Koechl ,

 

Thank you for you response.

 

My current versions are....
Inventor VDS:

GoranKis_0-1724916914654.png

Inventor:

GoranKis_1-1724916950949.png

Vault client:

GoranKis_3-1724917157647.png

Vault server:

GoranKis_2-1724917030271.png

 

For installing i have used web installer directly to 2024.3 (Inventor and Vault client). Server is installed as a RTM, patched and then migrated (school workflow).

 

Thnx,

Goran

Message 4 of 6
Goran.Kis.
in reply to: Goran.Kis.

I have just checked on another computer....

If i use out-of-the box VDS window than it is showing:

GoranKis_1-1724918387680.png

But if i use customised from VDS-MFG-Sample 2024.3 it is not working:

GoranKis_2-1724918525819.png

Thnx,

Goran

Message 5 of 6
Markus.Koechl
in reply to: Goran.Kis.

Ah, you are right - the Boolean Type misses an attribute IsEditable="True" which has been removed to workaround the mentioned issue. Yesterday, I checked pull-down/listvalues, but not the True/False selection. So, to immediatly resolve your issue, you need to replace the style trigger for Boolean with this one:

<DataTrigger Binding="{Binding Typ}" Value="Boolean" >
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate>
                <ComboBox Text="{WPF:ValidatedBinding Value}" BorderThickness="0" IsEditable="True">
                    <ComboBoxItem Content="True" />
                    <ComboBoxItem Content="False" />
                </ComboBox>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</DataTrigger>

 

Thank you for the heads-up on this issue!

 

 



Markus Koechl

Solutions Engineer PDM, Autodesk Central Europe
Message 6 of 6
Goran.Kis.
in reply to: Markus.Koechl

No, you are right 🙂

 

Up and running:

GoranKis_1-1724935337961.png

 

Thank you @Markus.Koechl, as always 🙂

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report