Hi all,
I am trying out the Onboarding Tasks canvas template app.
There's one thing that I find disturbing.
When I launch the app, it welcomes me and displays my team members in a Gallery. But you'll notice that the images to not take the entire space of the gallery, which leads to the images not being centered on the screen:
The Gallery control itself is perfectly centered.
Would it be possible to center the images inside the Gallery control?
Many thanks!
Joost
Solved! Go to Solution.
I think I found the problem. It has to do with the first entry in the OnStart property of the App Section. It appears that the OutlookTasks.GetTaskGroups() lookup checks the value closely. Depending on the language setting, this varies. As an admin user, it works with "My Tasks", as a normal user it works when I change it to "Meine Aufgaben" (German).
Hi @domkk thanks for your swift reply.
I experience the same behavior. As an admin, no issues, but as a normal user I do experience that issue.
I will take a closer look at your suggestion as my tenant is in Dutch and share the outcome.
Is there any solution for it to correctly sync the TO-DO-List folders?
Set(ProfileTaskFolder; "GetOnboardMyProfile" );;
Set(ToDoTaskFolder; "GetOnboardToDoList" );;
Set(TipsTaskFolder; "GetOnboardTips" );;
ClearCollect(MyFolders; OutlookTasks.GetTaskFolders(MyOutlookGroupId));;
Set(MyOutlookFolderId; LookUp(MyFolders;Name = ProfileTaskFolder).Id);;
Set(MyOutlookTaskFolderId; LookUp(MyFolders;Name = ToDoTaskFolder).Id);;
Set(MyOutlookTipsFolderId; LookUp(MyFolders;Name = TipsTaskFolder).Id);;
If(IsBlank(MyOutlookFolderId);OutlookTasks.CreateTaskFolder(ProfileTaskFolder;{groupId:MyOutlookGroupId}));;
If(IsBlank(MyOutlookTaskFolderId);OutlookTasks.CreateTaskFolder(ToDoTaskFolder;{groupId:MyOutlookGroupId}));;
If(IsBlank(MyOutlookTipsFolderId);Set(ShowProfilePageTip;true);Set(ShowProfilePageTip;false));;
If(IsBlank(MyOutlookTipsFolderId);OutlookTasks.CreateTaskFolder(TipsTaskFolder;{groupId:MyOutlookGroupId}));;
Set(isAdmin;MyUserEmail in Administrators.Email);;
If(!isAdmin; Navigate(WelcomeScreen; None))
User | Count |
---|---|
252 | |
104 | |
94 | |
50 | |
39 |