Примечание
Для доступа к этой странице требуется авторизация. Вы можете попробовать войти или изменить каталоги.
Для доступа к этой странице требуется авторизация. Вы можете попробовать изменить каталоги.
With Business Central runtime 15.0, you can add the UserControlHost
page type. The UserControlHost
is used to render any single user control in the client. The layout is optimized by the client to maximize the available space for the user control. This page type is ideal for embedding a Power BI report entirely, or displaying a single page of a Power Bi report.
The UserControlHost
page type can only have a single control of type usercontrol
within the layout Content
area. Furthermore, you can't specify actions on this page type. Likewise, only a limited number of properties and triggers are available for it and the page type isn't extensible.
The following example illustrates the differences between a standard page and a UserControlHost
page. The example uses the WebPageViewer
user control, which is a simple web browser control that can be used to display web pages in the client.
Example
// Welcome to your new AL extension.
// Remember that object names and IDs should be unique across all extensions.
// AL snippets start with t*, like tpageext - give them a try and happy coding!
namespace UserControlHost.Demo;
using System.Integration;
page 50100 StandardPage
{
PageType = Card;
Caption = 'Standard Page';
AboutTitle = 'About this page';
AboutText = 'Displays a single user control in a standard card page';
ApplicationArea = All;
UsageCategory = Documents;
layout
{
area(content)
{
usercontrol(WebPageViewer; WebPageViewer)
{
trigger ControlAddInReady(CallbackUrl: Text)
begin
CurrPage.WebPageViewer.Navigate('https://www.example.com');
end;
}
}
}
}
page 50101 UserControlHost
{
PageType = UserControlHost;
Caption = 'User Control Host Page';
AboutTitle = 'About this page';
AboutText = 'Displays a single user control in a user control host page';
ApplicationArea = All;
UsageCategory = Documents;
// UserControlHost pages are not extensible (at all)
// Extensible = true; // This property is not supported
layout
{
area(content)
{
// Only a single user control is permitted on pages of type UserControlHost
usercontrol(WebPageViewer; WebPageViewer)
{
trigger ControlAddInReady(CallbackUrl: Text)
begin
CurrPage.WebPageViewer.Navigate('https://www.example.com');
end;
}
}
}
// Actions are not permitted
// actions { } // will trigger AL0875
}