Hi,
I am having a look at the Perspective Tag Picker from Ignition Exchange and would like to modify it to list all tags from all providers.
The current binding calls a recursive browsing function with a tag path, that seems must include a provider.
if value["mode"] == "realtime":
ret = Framework.Tags.browseTags("[default]", None, value["expanded"])
else:
ret = Framework.Tags.browseHistoryTags("", None, value["expanded"])
return ret
Is there a way to list all tag providers and browse for each? I would like to include [System] and whatever else exists.
I’ve tried wildcards with no luck.
Thanks,
Deon