I’m running into two problems/issues.
-
Is there no way to make an
option
disabled in aselect
? I’ve tried thedisabled
attribute and it seems to be a no-op. -
Multiple selections don’t really work. I.e., I’m using
<select value={['several', 'items', 'in', 'the', 'options']} multiple={true}> ...
and that doesn’t really do anything.
In fact, you have to use the multiple={true}
to make even single selection work properly. Don’t know if that’s a React problem or a UXP problem.
Any hints or tricks here? @kerrishotts?