Project Link to Apps
C
Carlos Diaz
That will be very efficient if can have the ability to link Projects to the App. That way when we are working on an specific app, instead of seeing (and sometimes search for) the full list of all projects we have created (in my case I have more than a 1,000 projects) just see the ones used or assigned to the App.
Pete Zagorski
I usually just hide the project field and create a choice list with the relevant projects, then SETPROJECT on save. see below
ON('load-record', function(event){
SETPROJECTHIDDEN(true);
});
function setProject(event) {
SETPROJECT(CHOICEVALUE($project_choice));
}
// Register the functions to the 'save-record' event
ON('save-record', function(event) {
setProject(event);
});