Author Topic: Textbox or Editor position does not move or hide when scroll  (Read 1588 times)

sudongol

  • Pro Enterprise
  • Newbie
  • *
  • Posts: 5
    • View Profile
Textbox or Editor position does not move or hide when scroll
« 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

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6113
    • View Profile
Re: Textbox or Editor position does not move or hide when scroll
« Reply #1 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();
},

sudongol

  • Pro Enterprise
  • Newbie
  • *
  • Posts: 5
    • View Profile
Re: Textbox or Editor position does not move or hide when scroll
« Reply #2 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?

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6113
    • View Profile
Re: Textbox or Editor position does not move or hide when scroll
« Reply #3 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.

sudongol

  • Pro Enterprise
  • Newbie
  • *
  • Posts: 5
    • View Profile
Re: Textbox or Editor position does not move or hide when scroll
« Reply #4 on: April 15, 2021, 06:38:53 pm »
Thank you, Paramvir.