Author Topic: EditedTextArea cell moves along with vertical/horizontal scroll  (Read 2167 times)

gopigupta

  • Pro Ultimate
  • Newbie
  • *
  • Posts: 37
    • View Profile
EditedTextArea cell moves along with vertical/horizontal scroll
« on: September 18, 2020, 04:13:49 pm »
If I edit any cell that cell popups and moves along while vertical and horizontal scrolling in the grid, I have installed latest version of paramquery grid (7.3.0) and I m facing this issue. I want to disable this feature. How can I disable this please help as soon as possible, Please find attached screenshot of issue:-

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6310
    • View Profile
Re: EditedTextArea cell moves along with vertical/horizontal scroll
« Reply #1 on: September 18, 2020, 04:19:45 pm »
editor stays in fixed position, while the grid can be scrolled in any direction.

https://paramquery.com/pro/demos/editing_custom

Is your experience different from this?

gopigupta

  • Pro Ultimate
  • Newbie
  • *
  • Posts: 37
    • View Profile
Re: EditedTextArea cell moves along with vertical/horizontal scroll
« Reply #2 on: September 18, 2020, 04:23:36 pm »
Yes, I am facing the issue I don't want cell editor in a fixed position while scrolling in a grid.
« Last Edit: September 18, 2020, 04:53:50 pm by gopigupta »

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6310
    • View Profile
Re: EditedTextArea cell moves along with vertical/horizontal scroll
« Reply #3 on: September 18, 2020, 05:24:07 pm »
Please use scroll event to quit editing.

Code: [Select]
scroll: function(){
this.quitEditMode();
},