components.PowerPortalsPro.Demo.Client.Customizations.Pages.Editors.LookupEdit.LookupEditDemoPage.description
<LookupEdit columnName="primarycontactid" /><LookupEdit ColumnName="primarycontactid" />components.PowerPortalsPro.Demo.Client.Customizations.Pages.Editors.LookupEdit.LookupEditDemoPage.editor-type-description
{/* components.PowerPortalsPro.Demo.Client.Customizations.Pages.Editors.LookupEdit.LookupEditDemoPage.snippet-editor-autocomplete-comment */}
<LookupEdit columnName="primarycontactid" editorType={LookupEditorType.AutoComplete} />
{/* components.PowerPortalsPro.Demo.Client.Customizations.Pages.Editors.LookupEdit.LookupEditDemoPage.snippet-editor-dropdown-comment */}
<LookupEdit columnName="primarycontactid" editorType={LookupEditorType.Dropdown} />
{/* components.PowerPortalsPro.Demo.Client.Customizations.Pages.Editors.LookupEdit.LookupEditDemoPage.snippet-editor-radio-comment */}
<LookupEdit
columnName="primarycontactid"
editorType={LookupEditorType.RadioButtons}
radioButtonOrientation={ChoiceOrientation.Vertical}
/><!-- components.PowerPortalsPro.Demo.Client.Customizations.Pages.Editors.LookupEdit.LookupEditDemoPage.snippet-editor-autocomplete-comment -->
<LookupEdit ColumnName="primarycontactid" EditorType="LookupEditType.AutoComplete" />
<!-- components.PowerPortalsPro.Demo.Client.Customizations.Pages.Editors.LookupEdit.LookupEditDemoPage.snippet-editor-dropdown-comment -->
<LookupEdit ColumnName="primarycontactid" EditorType="LookupEditType.Dropdown" />
<!-- components.PowerPortalsPro.Demo.Client.Customizations.Pages.Editors.LookupEdit.LookupEditDemoPage.snippet-editor-radio-comment -->
<LookupEdit ColumnName="primarycontactid"
EditorType="LookupEditType.RadioButtons"
RadioButtonOrientation="ComponentOrientation.Vertical" />components.PowerPortalsPro.Demo.Client.Customizations.Pages.Editors.LookupEdit.LookupEditDemoPage.views-description
const contactViews = {
contact: ['...'],
};
<LookupEdit
columnName="primarycontactid"
viewIds={contactViews}
defaultViewId="..."
/><LookupEdit ColumnName="primarycontactid"
ViewIds="_contactViews"
DefaultViewId="@(new Guid("..."))" />
@code {
private Dictionary<string, List<Guid>> _contactViews = new()
{
{ "contact", new List<Guid> { new Guid("...") } }
};
}components.PowerPortalsPro.Demo.Client.Customizations.Pages.Editors.LookupEdit.LookupEditDemoPage.polymorphic-description
<LookupEdit columnName="parentcustomerid" defaultTable="account" /><LookupEdit ColumnName="parentcustomerid" DefaultTable="account" />components.PowerPortalsPro.Demo.Client.Customizations.Pages.Editors.LookupEdit.LookupEditDemoPage.main-demo-description
components.PowerPortalsPro.Demo.Client.Customizations.Pages.Editors.LookupEdit.LookupEditDemoPage.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? | コンポーネントの子コンテンツ | |
ColumnName* | string | テーブルレコードからエディタをバインドするための論理カラム名。 | |
DefaultTable | string? | ||
DefaultViewId | Guid? | ||
Description | string? | 説明はツールチップに表示されます。 | |
Disabled | bool? | エディターを無効にすべきか。 | |
DisplayLabelWhenAvailable | bool | True | ラベルが可能であれば表示するかどうかを明記しています。 |
DisplayNullChoice | bool | True | |
DisplayTooltipWhenAvailable | bool | True | ツールチップが表示されるかどうかを指定します。 |
DisplayValidationErrorMessage | bool | True | コンポーネントが検証に失敗したときに検証エラーメッセージを表示するべきでしょうか? |
EditorType | LookupEditType | AutoComplete | |
IsVisible | bool | True | エディターは見えますか? |
Label | string? | 編集者用のラベルとして表示されるテキスト。 | |
MaxRecordsReturned | int | 20 | |
RadioButtonOrientation | ComponentOrientation | Vertical | |
ReadOnly | bool? | エディターは読み取り専用であるべきです。 | |
Required | bool? | 価値が求められるかどうか。 | |
Value | LookupEditValue? | 型の価値 Models.ColumnValueBase | |
ViewIds | Dictionary<string, List<Guid>>? |
ChildContentColumnName*DefaultTableDefaultViewIdDescriptionDisabledDisplayLabelWhenAvailableDisplayNullChoiceDisplayTooltipWhenAvailableDisplayValidationErrorMessageEditorTypeIsVisibleLabelMaxRecordsReturnedRadioButtonOrientationReadOnlyRequiredValueModels.ColumnValueBaseViewIdscomponents.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.description |
|---|---|---|
ValueChanged | EventCallback<ColumnValueBase> | バウンド値を更新するコールバックを取得または設定します。 |
ValueChangedcomponents.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 |
|---|---|---|---|
GetValidationErrors | List<string> | 現在の検証エラーの集合を返します。 |
GetValidationErrors