ParamQuery grid support forum
General Category => Help for ParamQuery Grid (free version) => Topic started by: 杨万里 on May 11, 2018, 12:55:35 pm
-
have grid which has rows inline editing.
demo url: https://paramquery.com/demos/editing_custom
when the grid is normal state, autocomplete is working;
when i use $( ".selector" ).pqGrid( "toggle" ) make the grid be maximized state autocomplete is not working;
Is there any solution for this issue? so that we can have tabbing working in any columns.
Thanks.
-
Please assign higher z-index css to autocomplete.
-
Thank you very much.
But it is not work.
Is I write wrong?
.ui-autocomplete {
max-height: 200px;
overflow-y: auto;
overflow-x: hidden;
z-index:9999;
}
Thank you very much.
-
Thank you very much for bringing this to attention.
Please use appendTo option of autocomplete instead of z-index
$inp.autocomplete({
appendTo: ui.$cell
})
https://paramquery.com/demos/editing_custom
-
:) :) :) :) :)
It is work!
you gave me great help.I'm very excited.
I really thank you very much!