InDesign 20.4 Windows 11 Bug. UXP Plugin Panel and Dialog have incorrect behavior of html SELECT tag
InDesign 20.4 Windows 11: After updating from version 20.3.1 to 20.4 UXP, the plugin, which worked fine in the previous version, now has problems with displaying dialogs and panels, namely:
all SELECT tags on a panel are stopped responding to modification.
Version 20.3.1 does not exhibit these problems; dialogs and panels display SELECT tags correctly and respond to user modifications.
In version 20.4, SELECT tags respond only by changing the border color to blue; the list is not displayed at all. It is impossible to change the selected list item. In the dialog, this behavior is observed in all elements.
Reinstalling version 20.4 did not solve the problem. The incorrect behavior of the application persists.
Beta and release version 20.3.1: The plugin behaves normally.
Please send the following information to santalwa@adobe.com :
- Reproducible Steps – What were you doing when the issue occurred?
- Video recording of the issue
- Share the Plugin
—
Adobe InDesign Team
-
Viacheslav Horobchenko commented
For example, let's create a new plugin (React).
Demos.jsx file:-- Demos.jsx --
import React from "react";
import { app } from "indesign";export const Demos = () => {
const ver = app.version;
return (
<><p>InDesing {ver}</p>
<select id="sel1" value="value1">
<option value="value1">VALUE 1</option>
<option value="value2">VALUE 2</option>
<option value="value3">VALUE 3</option>
</select><select id="sel2" value="value2">
<option value="value1">VALUE 1</option>
<option value="value2">VALUE 2</option>
<option value="value3">VALUE 3</option>
</select><select id="sel3" value="value3">
<option value="value1">VALUE 1</option>
<option value="value2">VALUE 2</option>
<option value="value3">VALUE 3</option>
</select>
</>
)
}--- eof
3 SELECT items will appear on the panel.
That's all. Compile the plugin. Try it under UXP Developer Tools
Try it on InDesign 20.3 — SELECT tags work.
On InDesign 20.4, 20.4.1 — SELECT tags don't work.
On Indesign 20.4.1.4, 20.5.0.34 (Prerelease) SELECT tags don’t work.The same SELECT behavior is observed with this element in UXP dialogs (HTML).
-
shuji kawano commented
I confirmed that bugs on ExtendScript and CEP have been fixed on 20.4.1
However, select tag still doesn't work at all on UXP Plugin.
I checked InDesign 20.4.1 both of OS, Mac OS and Windows11.