Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.
Bonjour,
(et merci pour ce trés bon logiciel de gestion de projet)
Dans la vue "planning" le bouton permettant d'afficher/masquer/déplacer certaine colonne ne fonctionne pas sous IE10. Lorsque, par exemple, j'essaie de déplacer (ou de décocher) une colonne par drap and drop Project Or charge indéfiniment.
Cela fonctionne trés bien sous firefox et d'ailleurs les modifications faites sous celui ci sont bien répercutée lorsque je retourne sous IE
----------------------
Hello,
(and thank you for this very good software project management)
In the "Plannig view", the button to show / hide / move column does not work in IE10. When, for example, I try to move (or uncheck) a column by drap and drop, Project'Or load indefinitely.
This works very well in firefox and also the changes made in one are reflected well when I return in IE
Thomas.
Hi,
I confirm this issue with IE10 on V3.4.4. 🙁
Luckily, it is already fixed in next version, that is coming very soon :woohoo:
We updated (V4.0.2 (86)) (thanks !)
Unfortunately the problem persists:
In the "follow view" / "Planning": for the vertical scroll bar only affects the right side (not the one with the name of the project)
Similarly, the selection of columns does not work.
this works perfectly in firefox.
Thomas.
Strange.
It works fine for me on IE10 / Windows 7.
First, be sure to clean browser cache and try again.
Then, if you still reproduce the issue, you should have some javascript error in browser console.
Please report it here.
Doesn't work...
I found this :
SCRIPT438: L’objet ne gère pas la propriété ou la méthode « preventDefault »
main.php, Ligne 1 Caractère 1
SCRIPT438: L’objet ne gère pas la propriété ou la méthode « indexOf »
projeqtorDialog.js, Ligne 3845 Caractère 4
Thomas.
Ticket #1248 recorded.
I upgraded Projeqtor (thanks for V4.1.1 !! ) and unfortunately, the problem persists...
Thomas.
Could not reproduce.
It works fine for me on IE10 / Windows 7.
How many lines are displayed on your planning ? (projects + activities)
Could you try to restrict visibility to one only prject ? Does it work better ?
Do you have any add-on on IE ?
I once add some strange behaviour with skype add-on, and needed to desactivate it to retrieve strandard behaviour of IE.
Could you try to desactivate all of them and test if it works fine without add-on ?
Approximately 50 (project + activities)
I check : no strange add-on (i tried too with all desactivate)
Even i collapsed all : same probleme
In the "follow view" / "Planning": for the vertical scroll bar only affects the right side (not the one with the name of the project)
The selection of columns does not work even all is collapsed.
Thomas.
Could you please report for javascript issues from both issues (scroll right part and column selection) ?
I guess errors must be different, and thios may give a hint.
For the column's selection i found this :
SCRIPT438: L’objet ne gère pas la propriété ou la méthode « indexOf »
projeqtorDialog.js, Ligne 3841 Caractère 4
I found nothing about my scrolling's problem.
Do you where i have to go to find it ?
Thomas.
SCRIPT438: L’objet ne gère pas la propriété ou la méthode « indexOf »
projeqtorDialog.js, Ligne 3841 Caractère 4
I searched a bit, and it seems Array.indexOf is not IE compatible.
(what is strange is that is works for me ...)
I'll try and implement a workaround with dojo.
Here is just a try for a fix : replace in /view/js/projeqtorDialog.js, from line 3839, function changePlanningColumn() with
function changePlanningColumn(col,status,order) {
if (status) {
//order=planningColumnOrder.indexOf('Hidden'+col);
order=dojo.indexOf(planningColumnOrder,'Hidden'+col);
planningColumnOrder[order]=col;
movePlanningColumn(col,col);
} else {
//order=planningColumnOrder.indexOf(col);
order=dojo.indexOf(planningColumnOrder,col);
planningColumnOrder[order]='Hidden'+col;
}
dojo.xhrGet({
url: '../tool/savePlanningColumn.php?action=status&status='
+ ((status)?'visible':'hidden')+'&item='+col,
handleAs: "text",
load: function(data,args) { },
error: function() { }
});
}
Refresh browser cache and try again...
Ok it resolve my column problem !!!!
Thanks a lot.
Thomas.
So, it will be integrated in V4.2