uno
uno copied to clipboard
ComboBox doesn't open inside a ContentDialog
Current behavior
Expected behavior
How to reproduce it (as minimally and precisely as possible)
Environment
Nuget Package:
Package Version(s):
Affected platform(s):
- [x] iOS
- [x] Android
- [ ] WebAssembly
- [ ] Windows
- [ ] Build tasks
Visual Studio
- [ ] 2017 (version: )
- [ ] 2019 (version: )
- [ ] for Mac (version: )
Relevant plugins
- [ ] Resharper (version: )
Anything else we need to know?
Fixed for WASM by #1566. Not working on Android, not tested on iOS.
Same problem for me in Android. How can I solve it?
Android currently uses native popups, which prevents this from working properly. You can change this by setting this flag to false: https://github.com/unoplatform/uno/blob/4821fbe7f39634bb87cbcf9c973fc7b52e8741e4/src/Uno.UI/FeatureConfiguration.cs#L224
@jeromelaban I set
Uno.UI.FeatureConfiguration.Popup.UseNativePopup = false;
in Onlaunched and it works.
Thank you very much for help me.
Do you know a way to show HTML formatted text into a textbox?
Native popups are not used anymore, so this can be closed.