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