Author Topic: Dynamic list of values in TagValues  (Read 2242 times)

Dmitry_M

  • EA Novice
  • *
  • Posts: 3
  • Karma: +0/-0
    • View Profile
Dynamic list of values in TagValues
« on: September 19, 2017, 05:56:44 am »
Hello everyone! Could you please support, how can we realize the following requirements regarding TagValues.

1) How to create using API a TagValue with dynamic bulk of possible values, that are imported from the 3rd party application? And how to edit this list of values?
2) Is there an opportunity to create a TV with table type (ID + SomeOtherField + someOtherField2) so to enrich data (list of values) from other database/application?

Thanks a lot for your answers!

qwerty

  • EA Guru
  • *****
  • Posts: 13574
  • Karma: +395/-301
  • I'm no guru at all
    • View Profile
Re: Dynamic list of values in TagValues
« Reply #1 on: September 19, 2017, 07:23:13 am »
TaggedValues is a collection inside the Element class where you can add new values like
Code: [Select]
tv = Element.TaggedValues.AddNew("name", "notes")TVs are rather limited in what you can put inside. See this help page.

q.