components.PowerPortalsPro.Demo.Client.Customizations.Pages.Grids.ManyToManyLookupEditor.ManyToManyLookupEditorDemoPage.description
components.PowerPortalsPro.Demo.Client.Customizations.Pages.Grids.ManyToManyLookupEditor.ManyToManyLookupEditorDemoPage.how-it-works-description
<RecordContext table="account" queryParameterName="id">
<ManyToManyLookupEdit relationshipName="ppp_Account_ppp_Region_ppp_Region" />
</RecordContext><RecordContext TableName="account" QueryParameterName="id">
<ManyToManyLookupEdit RelationshipName="ppp_Account_ppp_Region_ppp_Region" />
</RecordContext>components.PowerPortalsPro.Demo.Client.Customizations.Pages.Grids.ManyToManyLookupEditor.ManyToManyLookupEditorDemoPage.views-description
<ManyToManyLookupEdit
relationshipName="ppp_Account_ppp_Region_ppp_Region"
viewIds={regionViews}
defaultViewId="..."
/>
const regionViews = ['...', '...'];<ManyToManyLookupEdit RelationshipName="ppp_Account_ppp_Region_ppp_Region"
ViewIds="_regionViews"
DefaultViewId="@(new Guid("..."))" />
@code {
private List<Guid> _regionViews = new List<Guid>
{
new Guid("..."),
new Guid("..."),
};
}components.PowerPortalsPro.Demo.Client.Customizations.Pages.Grids.ManyToManyLookupEditor.ManyToManyLookupEditorDemoPage.validation-description
<ManyToManyLookupEdit
relationshipName="ppp_Account_ppp_Region_ppp_Region"
minimumNumberOfItems={1}
maximumNumberOfItems={3}
/><ManyToManyLookupEdit RelationshipName="ppp_Account_ppp_Region_ppp_Region"
MinimumNumberOfItems="1"
MaximumNumberOfItems="3" />components.PowerPortalsPro.Demo.Client.Customizations.Pages.Grids.ManyToManyLookupEditor.ManyToManyLookupEditorDemoPage.saving-description
<MainContext>
<MenuBar>
<SaveContextButton />
</MenuBar>
<RecordContext table="account" queryParameterName="id">
<ColumnEdit columnName="name" />
<ManyToManyLookupEdit
relationshipName="ppp_Account_ppp_Region_ppp_Region"
minimumNumberOfItems={1}
maximumNumberOfItems={3}
/>
</RecordContext>
</MainContext><MainContext>
<MenuBar>
<SaveContextButton />
</MenuBar>
<RecordContext TableName="account" QueryParameterName="id">
<ColumnEdit ColumnName="name" />
<ManyToManyLookupEdit RelationshipName="ppp_Account_ppp_Region_ppp_Region"
MinimumNumberOfItems="1"
MaximumNumberOfItems="3" />
</RecordContext>
</MainContext>components.PowerPortalsPro.Demo.Client.Customizations.Pages.Grids.ManyToManyLookupEditor.ManyToManyLookupEditorDemoPage.main-demo-description
components.PowerPortalsPro.Demo.Client.Customizations.Pages.Grids.ManyToManyLookupEditor.ManyToManyLookupEditorDemoPage.properties-demo-description
components.PowerPortalsPro.Demo.Client.Customizations.Components.Documentation.ApiDocumentation.name | components.PowerPortalsPro.Demo.Client.Customizations.Components.Documentation.ApiDocumentation.type | components.PowerPortalsPro.Demo.Client.Customizations.Components.Documentation.ApiDocumentation.default | components.PowerPortalsPro.Demo.Client.Customizations.Components.Documentation.ApiDocumentation.description |
|---|---|---|---|
ChildContent | RenderFragment? | コンポーネントの子コンテンツ | |
Context | MainContext? | ||
DefaultViewId | Guid? | ||
Description | string? | 説明はツールチップに表示されます。 | |
Disabled | bool? | エディターを無効にすべきか。 | |
DisplayLabelWhenAvailable | bool | True | ラベルが可能であれば表示するかどうかを明記しています。 |
DisplayTooltipWhenAvailable | bool | True | ツールチップが表示されるかどうかを指定します。 |
DisplayValidationErrorMessage | bool | True | コンポーネントが検証に失敗したときに検証エラーメッセージを表示するべきでしょうか? |
IsDirty | bool | False | コンポーネントに保存されていない変更があるかどうかを示します。 |
IsVisible | bool | True | エディターは見えますか? |
Label | string? | 編集者用のラベルとして表示されるテキスト。 | |
MaximumNumberOfItems | int? | ||
MaxRecordsReturned | int | 20 | |
MinimumNumberOfItems | int? | ||
ReadOnly | bool? | エディターは読み取り専用であるべきです。 | |
RelationshipName* | string | ||
Required | bool? | 価値が求められるかどうか。 | |
ViewIds | List<Guid>? |
ChildContentContextDefaultViewIdDescriptionDisabledDisplayLabelWhenAvailableDisplayTooltipWhenAvailableDisplayValidationErrorMessageIsDirtyIsVisibleLabelMaximumNumberOfItemsMaxRecordsReturnedMinimumNumberOfItemsReadOnlyRelationshipName*RequiredViewIdscomponents.PowerPortalsPro.Demo.Client.Customizations.Components.Documentation.ApiDocumentation.name | components.PowerPortalsPro.Demo.Client.Customizations.Components.Documentation.ApiDocumentation.parameters | components.PowerPortalsPro.Demo.Client.Customizations.Components.Documentation.ApiDocumentation.type | components.PowerPortalsPro.Demo.Client.Customizations.Components.Documentation.ApiDocumentation.description |
|---|---|---|---|
GetRequests | List<OrganizationRequest> | 保留中のセーブ操作のリストを Requests.OrganizationRequest オブジェクトとして返します。 | |
GetValidationErrors | List<string> | 現在の検証エラーの集合を返します。 | |
RefreshAsync | bool forceRefresh | Task | コンポーネントのデータを更新し、保存されていない変更プロンプトを回避できます。 |
ResetState | void | 保留中の変更をすべて最後に保存した状態に戻します。 | |
Validate | bool | コンポーネントの現在の状態を検証します。有効であればtrueを返します。 |
GetRequestsRequests.OrganizationRequest オブジェクトとして返します。GetValidationErrorsRefreshAsyncResetStateValidate