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.

Distribution of the...
 
Notifications
Clear all

Distribution of the real work on the tickets

3 Posts
2 Users
0 Reactions
3,306 Views
(@djackjack)
Posts: 49
Active Member
Topic starter
 
[#1147]

Hello,

I wish I set up a distribution of the real work on the tickets. I want that when you change the real work, a dialog box opens with a calendar where you can select multiple dates.

This system is almost ready, I just missing some knowledge.

Is it possible to program the keyboard commands such as Ctrl + S? if so, how?

Once selected days, I want valid when the dialog box is the ticket back and refreshed. (I saw a function saveWithRefresh I know where but not ticket) How to set this up?

In dialogs dojo, is there a purpose for us to enter the label text but not textbox?


 
Posted : 06 May 2013 11H52
babynus
(@babynus)
Posts: 14952
Member Admin
 

Hi,

I wish I set up a distribution of the real work on the tickets. I want that when you change the real work, a dialog box opens with a calendar where you can select multiple dates.

Such a functianlity has been posted to me by a community contributor. It will be included in V3.4

Is it possible to program the keyboard commands such as Ctrl + S? if so, how?

It is already managed, in main.php, line 138

      var onKeyPressFunc = function(event) {
        if(event.ctrlKey && event.keyChar == 's'){
          event.preventDefault();
        	globalSave();
        } else if (event.keyCode==dojo.keys.F1 && ! event.keyChar) {
        	event.preventDefault();
        	showHelp();
        }  
      };
      dojo.connect(document, "onkeypress", this, onKeyPressFunc);

Once selected days, I want valid when the dialog box is the ticket back and refreshed. (I saw a function saveWithRefresh I know where but not ticket) How to set this up?

Sorry, I don't understand the question.

In dialogs dojo, is there a purpose for us to enter the label text but not textbox?

Sorry, I don't understand the question.


 
Posted : 06 May 2013 15H39
(@djackjack)
Posts: 49
Active Member
Topic starter
 

Great, for this future functionality.

When you are in the Project menu and we decided to assign a new resource, a popup will open as soon as the valid part of any edition of the project refreshes. I wish I do the same thing for a popup that I want to put in the tickets.


 
Posted : 07 May 2013 1H20
Share:

Scroll to Top