Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm writing an extension for creating button groups which have the same set of action options as the native button chart. I'm hung up on cyclic dimensions. I can get a list of existing dimensions using
app.getList("DimensionList", (items) => {})
which will allow me to list them in the object properties but I don't know how to gain a reference to the actual dimension object so that the rendered button can call dimension methods on it. The method I'm after is StepCycle but any help on getting references is appreciated.
Also, the backendAPI does not seem to be accessible at all via Stardust's hooks. Extension code samples using the paint() approach show that it is a property of app. But in Stardust's component() pattern it's not.
Any clues are extremely helpful. Thanks!
Looks like I found the action motherload in the sn-action-button source so I should be good once I implement it.
https://github.com/qlik-oss/sn-action-button/blob/ff780992bb08352eea839d7030d10e5a6aadafb4/src/utils...