When using the Alteryx HTML, JS to make a .yxi application, does anyone know why you cannot make a radio button using simple HTML or an alternative? I am able to make a checkbox, but when I use the html elements to form a radio button the system will not create the UI elements for it on the screen.
I used this basic example from W3 schools:
<form>
<input type="radio" name="gender" value="male" checked> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
<input type="radio" name="gender" value="other"> Other<br><br>
</form>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>XMSG("ABC_Tool")</title>
<script type="text/javascript">
// Include version 1 of the base GUI library.
document.write('<link rel="import" href="' + window.Alteryx.LibDir + '1/lib/alteryx/gui/includes.html">');
</script>
<!-- Update Name of Script File -->
<script type="text/javascript" src='ABC.js'></script>
</head>
<body>
<!-- Step 1 -->
<fieldset id="Step1View" style="display:none">
<legend>XMSG("Signing into system")</legend>
</fieldset>
<!-- Step 2 -->
<fieldset id="Step2View" style="display:none">
<legend>XMSG("Welcome Page")</legend>
<!-- Add your Own logic -->
<label>Welcome to the ABC application</label><br><br>
<form>
<input type="radio" name="gender" value="male" checked> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
<input type="radio" name="gender" value="other"> Other<br><br>
</form>
<button style="width:116px;" type="submit" id="onlineMode" onclick="Step3();">XMSG("Next")</button><br/><br/>
<br/><br/>
<button style="width:116px;" type="submit" id="onlineMode" onclick="Debug();">XMSG("Debug")</button><br/><br/>
</fieldset>