Fluent UI Combobox [mobile] focuses on option selection and launches mobile keyboard - fluent

So for a Fluent UI Combobox, on a mobile phone, after the dropdown is clicked and the menu expands, when a selection itself is made, the combobox looks to be refocused and the mobile keyboard expands with a blinking cursor.
The keyboard should not launch on selection.
This is with the allowFreeForm={false} prop passed in to the Combobox.
image

Related

How to prevent focus for canRevealPassword on Fluent UI?

I have a login page. I am using the Fluent UI TextField component. After I press Tab, I want to focus Login button -which is under Password TextField-, but this component focuses canRevealPassword icon instead of the login button. Is there a way to prevent this action?
I tried tabIndex but didn't work.
https://developer.microsoft.com/en-us/fluentui#/controls/web/textfield

Vue.js: Prevent div from bubbling up to parent

i have a problem with the #click.stop in my vue application. I also use quasar and leaflet.
So in my app you can click different objects on a leaflet map. If an object is selected a q-drawer pops open. In the drawer I can click a few buttons and input fields to do some other actions.
If I click on them everything is working as intended, but if I click on the empty space of the drawer the drawer gets closed. This is because the map behind the drawer reacts through event bubbling on the click.
If I add the #click.stopto the drawer the event does not bubble up to the map, but also does not reach any buttons I wanna click...
Any advice what to do?

What is the maximum number of view controllers in UITabBarController for tvOS

What is the maximum number of view controllers in UITabBarController for tvOS? It's not documented on developer.apple.com.
The screen is obviously bigger than iOS devices. I know for iOS it will add a "More" button if the number is bigger than 5.
The More Navigation Controller The tab bar has limited space for
displaying your custom items. If you add six or more custom view
controllers to a tab bar controller, the tab bar controller displays
only the first four items plus the standard More item on the tab bar.
Tapping the More item brings up a standard interface for selecting the
remaining items. The interface for the standard More item includes an
Edit button that allows the user to reconfigure the tab bar. By
default, the user is allowed to rearrange all items on the tab bar. If
you do not want the user to modify some items, though, you can remove
the appropriate view controllers from the array in the
customizableViewControllers property.
Note
Tab bar customization and
the More interface is not available in tvOS
Differences in tvOS
Tab bar controllers serve the same purpose in tvOS as in iOS, but
provide slightly different user interface features: The tab bar
interface appears at the top of the window. When focus leaves the tab
bar, the tab bar is hidden. Swiping up on the remote shows the tab bar
again and focuses it. A user can also show and focus the tab bar by
pressing the Menu button. Swiping down from the tab bar moves focus
into the content view; specifically, to the first focusable view that
is visually below the selected tab. Swiping down behaves like a normal
focus-changing gesture—that is, focus moves in the direction the user
swiped. If nothing is focusable immediately below the selected tab,
the closest focusable view is focused instead. Pressing the Select
button while a tab is focused moves focus into the content view.
Because there is no direction associated with this change, focus moves
to the view specified in the content view's preferredFocusedView
property. Tab bar controllers in tvOS do not support customization. A
tab bar controller displays only the number of view controllers from
its viewControllers array that fit on the screen, and does not provide
the More interface seen in iOS.
I found it by adding ViewControllers in StoryBoard. No matter how smaller your buttons are, the answer is 7. It will hide if it's more than 7 ViewController. And no "More" button of course. I added an 8 view controller but it only shows 7 (seven).
The answer is 7
Great, right?!
Solution
Sadly, I wrote my own TabBarController :(
Which is not a subclass of UITabBarController but UIViewController. Hoping Apple will change this (they'll not.). Should be depending on the size of the buttons, and could auto calculate each specific case.
Best.

How to focus Buttons (or other widgets) with TalkBack turned ON in Android Device?

I'm implementing Accessibility in my application. Here's the scenario :
I have 4 buttons arranged horizontally at the very top of the screen (Activity). On the click of a button, I'm launching an Alert Dialog which displays something to the user. With the alert being displayed, I will still be able to perform click operations on those 4 buttons at the top of the screen. When I turn ON TalkBack (Android Accessibility Service) in Android device and click on that button, alert is getting displayed but I'm unable to move the focus (a yellow rectangular box which will be there when TalkBack feature is turned ON in Android phone) to those 4 buttons. Please help!
Try to set the below properties to your buttons
android:importantForAccessibility="yes"
android:focusable="true"
You won't be able to do it with a dialog, you'll need to fake it with a View.
Perhaps you are using the wrong component which is why it sounds odd when you describe it? A picture of your design would help provide some context.
As #aardrian says, the alert dialog is modal and will (and does) block user input from the underlying UI. Clicking away from the dialog or pressing back will dismiss the dialog.
With TalkBack enabled, the user will be able to press the system back button, use the back gesture (swipe down, then left) or select an option within the dialog to dismiss it.
Try to integrate voice control into your application via Accessibility TalkBack
Define 4 buttons, Alert Dialog Box as objects, selected by voice:
button 1
button 2
...
...
I am studying the limitations of voice control of Android smartphone/ device in Blind Mode ( eyes-free)

How do I disable shortcut menus for the form but enable shortcut menus for textboxes on the form?

In access, I have a (continuous) form with textboxes on it. For these textboxes, I have created shortcut menus and assigned these to the textboxes (through Shortcut Menu Bar property).
In order for these shortcut menus to popup on a right mouse click on the textboxes, I need the form to have the Shortcut Menu property to be yes.
Yet, setting this Shortcut Menu property to yes also opens a (default) shortcut menu when I right click on the form. I don't want this default shortcut menu to pop up.
So, how can I have the shortcut menu for the textboxes but disable them for the form hosting the textboxes?