
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am developing a Fusion 360 C++ Add-in . It is based on this example:https://help.autodesk.com/view/fusion360/ENU/?guid=GUID-F0068478-49F0-4E5E-9BAD-3116D8FCBCAF
My add-in opens up a Palette that displays a Web-page. The problem I am having is 'select' html option doesn't work in Fusion 360 (Mac) version. On Windows it works fine.
To create a minimal code that reproduces the problem I created a html page with just the "select" html element as seen below
<!DOCTYPE html>
<html>
<body>
<h1>The select element</h1>
<p>The select element is used to create a drop-down list:</p>
<label for="cars">Choose a car:</label>
<select id="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
</select>
<button type="button" onclick="alert('Hello world!')">Click Me!</button>
</body>
</html>
When I try to select the car, all options show for a split second and I can't pick any other option.
The code works fine on Windows. The HTML page on its own renders and functions as expected on Windows and Mac in all major browsers - Just not in palette of Fusion 360 on Mac.
I am looking for suggestions how to resolve this.
Solved! Go to Solution.