Read the documentation
https://help.alteryx.com/developer/current/HTML/Use/PluginUI.htm?tocpath=SDKs%7CBuild%20Custom%20Too...
As I understand it from the window.Alert.Gui.BeforeLoad in the json variable I can access the incoming stream. When you do console.log(json) I see only Configuration.
Please tell me how to access the incoming stream. Is it possible without using HTML engine ?
As I understand it from the window.Alert.Gui.BeforeLoad in the json variable I can access the incoming stream. When you do console.log(json) I see only Configuration.
Please tell me how to access the incoming stream. Is it possible without using HTML engine ?
window.Alteryx.Gui.BeforeLoad = function (manager, AlteryxDataItems, json) {
console.log('json data:');
console.log(json);
});
};