ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: sudongol on April 14, 2021, 10:41:48 pm

Title: Textbox or Editor position does not move or hide when scroll
Post by: sudongol on April 14, 2021, 10:41:48 pm
When editing the cell, the editor (input fields) stays on screen and does not go away during scrolling. Please look at attachment for reference
Title: Re: Textbox or Editor position does not move or hide when scroll
Post by: paramvir on April 14, 2021, 11:01:53 pm
It's by design, if you don't want it then add this to the grid initialization options:

Code: [Select]
scroll: function(){
this.quitEditMode();
},
Title: Re: Textbox or Editor position does not move or hide when scroll
Post by: sudongol on April 15, 2021, 12:37:08 am
I just upgraded from version 6.0 to 7.7.
Earlier version does not seem to have this issue. Do you mean it is meant to behave like this from version 7?
And is there any other ways not to have this as default behavior?
Title: Re: Textbox or Editor position does not move or hide when scroll
Post by: paramvir on April 15, 2021, 04:17:15 pm
Quote
Earlier version does not seem to have this issue. Do you mean it is meant to behave like this from version 7?

yes, this feature has been added since v7

Quote
And is there any other ways not to have this as default behavior?

Not that I know of.
Title: Re: Textbox or Editor position does not move or hide when scroll
Post by: sudongol on April 15, 2021, 06:38:53 pm
Thank you, Paramvir.