Author Topic: Serious performance problem in Firefox 27.0.1  (Read 5693 times)

motoguru

  • Pro Enterprise
  • Newbie
  • *
  • Posts: 35
    • View Profile
Serious performance problem in Firefox 27.0.1
« on: February 24, 2014, 08:34:47 pm »
Hello again,

I just want to notice that there is a serious performance problem in newest FireFox release (27.0.1). I though that my application fails (I've got many thousands of records in grid) but I've double checked on free version Demo page (infinite scroll) and scroll is reeeeaaallly slow. I've also tried on IE11 and IE11 comparing to FireFox in this version is pure power monster :)
« Last Edit: February 25, 2014, 12:24:21 am by motoguru »

przemek

  • Pro Enterprise
  • Newbie
  • *
  • Posts: 25
    • View Profile
Re: Serious performance problem in Firefox 27.0.1
« Reply #1 on: March 19, 2014, 04:55:31 pm »
Hello,

I have the same problem as above - Chrome works better than Firefox 27.0.0.1 but also works slow.

I have a grid with 30 columns and 60 rows.

Please help us because PQ GRID is unusable in Firefox for now.

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6263
    • View Profile
Re: Serious performance problem in Firefox 27.0.1
« Reply #2 on: March 19, 2014, 05:11:21 pm »
for performance

virtualX should be true especially if number of columns > 10

and

there should not be computationally time intensive operations in refresh event.

przemek

  • Pro Enterprise
  • Newbie
  • *
  • Posts: 25
    • View Profile
Re: Serious performance problem in Firefox 27.0.1
« Reply #3 on: March 19, 2014, 05:44:59 pm »
Thanks, it helped a lot but i wanted to use virtualx:true to have the same rows height.
« Last Edit: March 19, 2014, 05:53:41 pm by przemek »

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6263
    • View Profile
Re: Serious performance problem in Firefox 27.0.1
« Reply #4 on: March 19, 2014, 06:00:23 pm »
Then either lock (freeze) the column having highest rows or use wrap: false

przemek

  • Pro Enterprise
  • Newbie
  • *
  • Posts: 25
    • View Profile
Re: Serious performance problem in Firefox 27.0.1
« Reply #5 on: March 19, 2014, 06:43:17 pm »
It works but column name are unreadable, it would be useful to add "title" attribute for TD with column names, than after mouse over we would see full column title.

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6263
    • View Profile
Re: Serious performance problem in Firefox 27.0.1
« Reply #6 on: March 19, 2014, 06:59:49 pm »
1) column.title can be html string so you can add title: '<span title="Full title">Full title</span>' in column definitions.

or

2) use column.minWidth property so that the column doesn't shrink beyond specified minimum width and title displays without cutting off the text.
« Last Edit: March 19, 2014, 07:11:57 pm by paramquery »