Dev Space

Customize and extend the power of Alteryx with SDKs, APIs, custom tools, and more.
SOLVED

Problem with HTML Sdk BeforeLoad function

WarGot
6 - Meteoroid

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);
        });
      };
1 REPLY 1
NeilR
Alteryx Alumni (Retired)

The incoming data is not available in the HTML GUI SDK, only the tool's configuration. The data is only available on the engine side, for instance with a macro or the Python SDK. See here and let me know if you have further questions.