Forum

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.

Problem with planni...
 
Notifications
Clear all

Problem with planning view with Internet Explorer 10

15 Posts
2 Users
0 Reactions
13.3 K Views
(@tomea)
Posts: 20
Active Member
Topic starter
 
[#1439]

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.

 
Posted : 02 Nov 2013 14H50
(@babynus)
Posts: 14952
Member Admin
 

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:


 
Posted : 02 Nov 2013 15H17
(@tomea)
Posts: 20
Active Member
Topic starter
 

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.

 
Posted : 14 Nov 2013 19H53
(@babynus)
Posts: 14952
Member Admin
 

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.


 
Posted : 15 Nov 2013 15H04
(@tomea)
Posts: 20
Active Member
Topic starter
 

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.

 
Posted : 09 Dec 2013 17H36
(@babynus)
Posts: 14952
Member Admin
 

Ticket #1248 recorded.


 
Posted : 09 Dec 2013 22H21
(@tomea)
Posts: 20
Active Member
Topic starter
 

I upgraded Projeqtor (thanks for V4.1.1 !! ) and unfortunately, the problem persists...


Thomas.

 
Posted : 14 Jan 2014 13H40
(@babynus)
Posts: 14952
Member Admin
 

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 ?


 
Posted : 14 Jan 2014 13H55
(@tomea)
Posts: 20
Active Member
Topic starter
 

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.

 
Posted : 14 Jan 2014 14H49
(@babynus)
Posts: 14952
Member Admin
 

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.


 
Posted : 14 Jan 2014 15H36
(@tomea)
Posts: 20
Active Member
Topic starter
 

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.

 
Posted : 14 Jan 2014 16H09
(@babynus)
Posts: 14952
Member Admin
 

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.


 
Posted : 14 Jan 2014 16H39
(@babynus)
Posts: 14952
Member Admin
 

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...


 
Posted : 14 Jan 2014 16H51
(@tomea)
Posts: 20
Active Member
Topic starter
 

Ok it resolve my column problem !!!!

Thanks a lot.


Thomas.

 
Posted : 14 Jan 2014 18H31
(@babynus)
Posts: 14952
Member Admin
 

So, it will be integrated in V4.2


 
Posted : 14 Jan 2014 21H03
Share:

Scroll to Top