ParamQuery grid support forum
General Category => Help for ParamQuery Select => Topic started by: nsomlai on November 10, 2016, 03:01:28 pm
-
I'm using single-selection pqSelects on editor forms. When the user edits existing data, they have a selected item when the form is created. My problem is that when clicking the dropdown button, the selected item is not scrolled into view. Is there a way to achieve that? Thanks!
-
There is no method in pqSelect API to scroll the view.
-
Still testing for side effects, but I think I have found a way.
This function is called with an undefined $label on dropdown:
fn._highlight = function($label) {
var hoverCls = this.options.hoverCls;
if (!$label || !$label.length) {
$label = this.$menu.find("label.pq-select-option-label.ui-state-enable:visible:first");
}
...
Changed the selector and now it seems to work:
$label = this.$menu.find("label.pq-select-option-label.ui-state-enable.pq-state-select:visible:first");