Hi,
I’m trying to include an indeterminate progress-bar in my UXP plug-in, but the bar is not animated:
html-snippet
<body>
<dialog id="myProgress">
<form method="dialog">
<sp-progressbar indeterminate>Indeterminate</sp-progressbar>
</form></dialog></body>
In Javascript I show the bar by calling:
_showProgressBar = async() => {
document.getElementById("myProgress").uxpShowModal({
title: "myTitle",
resize: "none",
size: {
width: 480,
height: 240
}
});
}
Are modal dialogs not updated?
Kind regards
Lars