HTML GUI SDK

The HTML GUI SDK is a library of extensions used to create the graphical user interface (GUI) for the configuration panel for a custom Alteryx Designer tool.

Prerequisites

Creating a custom tool with an HTML GUI involves working with an SDK. For this reason, we assume you are familiar with:

  • HTML
  • JavaScript
  • File management

The library consists of three categories of classes:

  • Widgets: Classes that create the user interface, providing control of appearance and action.
  • Data items: Classes that store values and configuration, allowing for persistence in the configuration between interactions with the tool.
  • Core: Classes that manage the tool's lifecycle, and connect widgets and data items.

For more information about these classes, see API reference documentation.

SDK Use

To use the SDK, determine how your tool needs to handle configuration loading and persistence, and how the tool synchronizes data. There are a number of lifecycle method options, which provide different levels of persistence and difficulty. See Lifecycle Methods to determine the best approach for your tool.

Once you have determined the functionality of your tool:

To debug the CEF, see Debugging the CEF.

Build your own tool checklist

Create a folder with the name of your tool. See Build Custom Tools.

Create icon and save it inside the tool folder. See Build Custom Tools.

Create a GUI file and save it inside the folder. See HTML GUI SDK.

Create your back end and save it inside the folder. See C++ SDK, Macro, and Python SDK.

Create a configuration file and save it inside the folder. See Tool Configuration File.

Create a package configuration file and save it with the folder. Package a Tool.

Package the package configuration file and tool folder as a yxi. See Package a Tool.