Command Bar and model-driven navigation in custom pages #PowerApps

preview_player
Показать описание
In this video, learn how to use the Creator Kit Command Bar and Navigate() function in custom pages to make our custom page look and act native to the rest of the model-driven app.

This is part of a series of videos on building a canvas app or model-driven custom page that shows a grid of accounts with fully delegable sorting, paging and filtering:
✅ Dataverse Delegable Paging in Power Apps

Contents:
00:00 Introduction

#powerapps #powerplatform #creatorkit #modeldrivenapps
Рекомендации по теме
Комментарии
Автор

Love that your full throttle on your videos. Keep them coming. So helpful!

morris
Автор

I just wanted to thank you Scott for such a great quality content and looking forward for the next episode ❤

Автор

I am very excited about this converged future with custom pages and components like the Creator Kit; and who better to showcase it, than Scott? Great quality and invaluable advice. Thank you!

LukasSchauffele
Автор

Thank you Scott for your very helpful videos.

robertsep
Автор

And I had just gotten to grips with Ribbon workbench! Thanks Scott, this series is great.

disturbedcarrot
Автор

Hi Scott, Just came across your videos and they are amazing and really helpful. Towards the end of this video, you mentioned about restoring the state of the custom page when coming back from another page. Do you have a video on that yet? Regards, Jyothi

Jyothi-pp
Автор

How to navigate from custom page to another custom page ?

priyashanjayasankha
Автор

Hi Scott,

Great video!

I'm trying to add a divider between two commands on the command bar but it renders to blank. According to documentation:

ItemHeader and ItemDivider must be set to true to render as a divider. If set to false, it expects other values and will render blank.

This is my Items property:

Table(
{
ItemKey: "back",
ItemIconOnly: true,
ItemIconName: "Back"
},
{
ItemHeader: true,
ItemDivider: true
},
{
ItemKey: "save",
ItemDisplayName: "Save",
ItemIconName: "Save"
},
{
ItemKey: "saveandclose",
ItemDisplayName: "Save & Close",
ItemIconName: "SaveAndClose"
}
)

What am I missing?

Thanks.
Daniel

danielvillacis-EIGO