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
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 ?
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
Strange.
I could not reproduce with Firefox V22 and V23 ... 🙁
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
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.
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
hi b,
any date decided for the next release V3.5.0?
i can't wait :woohoo:
regards,
yankeeeeeeeee doodle
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:
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.
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
Just apply the proposed patch.
