Picker and Keyboard Problem

When I click on the picker selector when the keyboard is open, it opens on the top of the keyboard.
No focused to picker element. Staying to input.

This picture:

Что такое “фокус у picker”?

Please look the picture. I have 2 input, first input normal text (name), second input is a picker (eg. male,female). Keyboard opens entering my name after i click the picker sex, picker opened on top of keyboard

В kitchen работает подругому?

If you want to do it without a plugin then add this ON definition into the picker creation:

on: {
 opened: function () {
  $( "#nameOfInputField" ).focus();
 }
}