Forum

users view < scr...
 
Notifications
Clear all

users view < scroll control glitch?

12 Posts
4 Users
0 Reactions
12.2 K Views
yankee_doodle
(@yankee_doodle)
Posts: 12
Active Member
Topic starter
 
[#1353]

see attached (right side of) screenshot of users view. this was driving me crazy the other day. pull the scroll control near the bottom of the scroll bar & the control automatically returns to top or home of users list.

any ideas why?


regards,
yankeeeeeeeee doodle

 
Posted : 30 Aug 2013 21H31
(@babynus)
Posts: 14952
Member Admin
 

Hi,

I never faced this issue.
Maybe it's a side effect of images display (I had some strange behavior with chrome, but not the one you report).

Do you face this issue only with items showing images in the list ?
What browser are you using ?


 
Posted : 30 Aug 2013 21H43
yankee_doodle
(@yankee_doodle)
Posts: 12
Active Member
Topic starter
 

hmmm.. maybe it's the images.

i'm using firefox 23.0.1 w/nextgen java plug-in 10.25.2.17 on a licensed win7 pro desktop os.


regards,
yankeeeeeeeee doodle

 
Posted : 30 Aug 2013 21H49
(@babynus)
Posts: 14952
Member Admin
 

Strange.
I could not reproduce with Firefox V22 and V23 ... 🙁


 
Posted : 30 Aug 2013 22H31
(@gordianus71)
Posts: 12
Active Member
 

Hello,

I can reproduce this error, with Chrome 28.0.1500.72 m, Firefox 21.0, IE 9.0.8112.16421.

Since adding pictures, scrolling is not possible. After removing all photos, the phenomenon is still present. Scroll start works until a certain point, then returns to upper position.

greetings
Christian


 
Posted : 04 Sep 2013 4H10
(@babynus)
Posts: 14952
Member Admin
 

No linked to presence of photos but only appears on users (and resource) list ?
Strange.

I'll have a look, but cannot reproduce until now.


 
Posted : 05 Sep 2013 21H35
(@babynus)
Posts: 14952
Member Admin
 

I found the issue, but it was not easy.

First, this behavior happens only when there are more than 25 lines in the list (that is why I could not reproduce, with a smaller list)

Then it is due to :
- triggering of the _onfetchcomplete event in the dojo grid when reaching end on list with more than 25 items :huh:
- patch I set try and refresh grid for users, resources and contects to be sure the list is fully displayed when containeing images (issue faced on Chrome) :blush:

The fix is just to comment the end of function refreshGridCount() in file /view/js/projector.js, this way :

function refreshGridCount(repeat) {
  var grid = dijit.byId("objectGrid");
  if (grid.rowCount==0 && ! repeat) {
    // dojo.byId('gridRowCount').innerHTML="?";
    setTimeout("refreshGridCount(1);",100);
  } else {
  dojo.byId('gridRowCount').innerHTML=grid.rowCount;
  dojo.byId('gridRowCountShadow1').innerHTML=grid.rowCount;
  dojo.byId('gridRowCountShadow2').innerHTML=grid.rowCount;
  }
  /*objClass=dojo.byId("objectClass").value;
  if (avoidRecursiveRefresh==false && (objClass=='Resource' || objClass=='User' || objClass=='Contact') ) {
	// If list may contain image, refresh once to fix issue : list not complete on Chrome
	avoidRecursiveRefresh=true;
    setTimeout('dijit.byId("objectGrid")._refresh();',100);
  } else {
	avoidRecursiveRefresh=false;
  }*/
}

This fix will be deployed in V3.5.0


 
Posted : 05 Sep 2013 23H13
yankee_doodle
(@yankee_doodle)
Posts: 12
Active Member
Topic starter
 

hi b,
any date decided for the next release V3.5.0?
i can't wait :woohoo:


regards,
yankeeeeeeeee doodle

 
Posted : 17 Sep 2013 12H16
(@babynus)
Posts: 14952
Member Admin
 

V3.5.0 is late ... 🙁
... very late :blush:
It was planned end of september, but will probably be 1 month late...

and possibly V3.5 will never be deployed :S
as it may be directly V4.0 :woohoo:


 
Posted : 17 Sep 2013 14H05
Carlos Cattani
(@ccattani)
Posts: 27
Active Member
 

I'm having the same problem and have no pics uploaded. I'm using Firefox 23.0.1 and ProjectOr 3.4.4. This problem comes back from 1 or 2 prior versions.


 
Posted : 18 Sep 2013 1H29
yankee_doodle
(@yankee_doodle)
Posts: 12
Active Member
Topic starter
 

we are also experiencing the anomaly without photos in FF 24.0 whilst maintaining 25+ users in the database. just thought i'd add that since we initially suspected it was due to photo display & something with the DoJo view, or something. :whistle:


regards,
yankeeeeeeeee doodle

 
Posted : 18 Sep 2013 6H39
(@babynus)
Posts: 14952
Member Admin
 

Just apply the proposed patch.


 
Posted : 18 Sep 2013 10H04
Share:

Scroll to Top