electron-dialogbox
Version:
The utility for making simple html base dialog box for Electron base application.
21 lines (20 loc) • 565 B
HTML
<html>
<head>
<script>
</script>
</head>
<body>
<h2>Radio button example</h2>
<form id="form1">
<label><input type="radio" name="opt" value="1">Option 1</label><br>
<label><input type="radio" name="opt" value="2">Option 2</label><br>
<label><input type="radio" name="opt" value="3">Option 3</label><br>
</form>
<button onclick="dialog.exit({opt: document.forms.form1.opt.value})">
OK
</button>
<button onclick="dialog.exit({opt: null})">
Cancel
</button>
</body>
</html>