Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community
Just a quick question regarding extension objects!
Is it possible to do things like set vairiables from an extension object? If I had a chart with a list of names for example, could I click on a name, set a varible and then use that variable in another object on the dashboard?
Thanks
Peter
Hi,
This is possible, check the link below
{void} SetVariable(name, name)
Set a variable.
Example: var doc = Qv.GetDocument("Films"); doc.SetVariable("Var2","test");
Hi,
This is possible, check the link below
{void} SetVariable(name, name)
Set a variable.
Example: var doc = Qv.GetDocument("Films"); doc.SetVariable("Var2","test");
Hi Mark
Thanks for the response, is it only achievable through the script? My knowledge of java script is weak at best.
Thanks
Peter
Hi,
This will depend on what the extension is doing.
If it is already making the selection on a field you could make a trigger that sets a variable on field selection,
But I think if this was the case then you wouldn't need the Variable.
Mark
Hi Peter,
No problems.
Mark