Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro';

You may get advantage of the <ApiLink kind="interface" prefixed={false} suffix={false} type="TransactionService" label="Transaction Service" /> when using any component that needs to preserve the state of its data source and to commit many transactions at once.

When working with the Ignite UI for Angular grid components, you may use the <ApiLink type="TransactionService" suffix={false} /> and `IgxHierarchicalTransactionService` that are integrated with the grids and provide batch editing out of the box. However, if you need to use transactions with any other Ignite UI for Angular or custom component, you may again use the <ApiLink type="TransactionService" suffix={false} /> and implement similar behavior.
When working with the Ignite UI for Angular grid components, you may use the <ApiLink type="TransactionService" suffix={false} /> and <ApiLink kind="interface" type="HierarchicalTransactionService" prefixed={false} suffix={false} label="IgxHierarchicalTransactionService" /> that are integrated with the grids and provide batch editing out of the box. However, if you need to use transactions with any other Ignite UI for Angular or custom component, you may again use the <ApiLink type="TransactionService" suffix={false} /> and implement similar behavior.

## Angular How to use the Transaction service Example

Expand Down Expand Up @@ -288,7 +288,7 @@ public onCommit(): void {

```

If we are using the `IgxHierarchicalTransactionService` we can also use an overload of the <ApiLink type="TransactionService" suffix={false} member="commit" label="commit" /> method which expects primaryKey and childDataKey as arguments.
If we are using the <ApiLink kind="interface" type="HierarchicalTransactionService" prefixed={false} suffix={false} label="IgxHierarchicalTransactionService" /> we can also use an overload of the <ApiLink type="TransactionService" suffix={false} member="commit" label="commit" /> method which expects primaryKey and childDataKey as arguments.

```typescript
public onCommit(): void {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro';

データソースの状態を保持し、一度に多くのトランザクションをコミットする必要があるコンポーネントを使用する場合、<ApiLink kind="interface" prefixed={false} suffix={false} type="TransactionService" label="Transaction Service" /> を利用できます。

Ignite UI for Angular グリッドコンポーネントの <ApiLink type="TransactionService" suffix={false} /> と <ApiLink type="HierarchicalTransactionService" kind="interface" prefixed={false} /> は、グリッドと統合して、追加設定なしに一括編集機能が使用できます。ただし、その他の Ignite UI for Angular またはカスタムコンポーネントでトランザクションを使用する必要がある場合は、再度 <ApiLink type="TransactionService" suffix={false} /> を使用して、同様の動作を実装できます。
Ignite UI for Angular グリッドコンポーネントの <ApiLink type="TransactionService" suffix={false} /> と <ApiLink kind="interface" type="HierarchicalTransactionService" prefixed={false} suffix={false} label="IgxHierarchicalTransactionService" /> は、グリッドと統合して、追加設定なしに一括編集機能が使用できます。ただし、その他の Ignite UI for Angular またはカスタムコンポーネントでトランザクションを使用する必要がある場合は、再度 <ApiLink type="TransactionService" suffix={false} /> を使用して、同様の動作を実装できます。

## Angular トランザクション サービスの使用方法の例

Expand Down Expand Up @@ -285,7 +285,7 @@ public onCommit(): void {

```

<ApiLink type="HierarchicalTransactionService" kind="interface" prefixed={false} /> を使用している場合は、primaryKey と childDataKey を引数として期待する <ApiLink type="TransactionService" suffix={false} member="commit" label="commit" /> メソッドのオーバー読み込みを使用することもできます。
<ApiLink kind="interface" type="HierarchicalTransactionService" prefixed={false} suffix={false} label="IgxHierarchicalTransactionService" /> を使用している場合は、primaryKey と childDataKey を引数として期待する <ApiLink type="TransactionService" suffix={false} member="commit" label="commit" /> メソッドのオーバー読み込みを使用することもできます。

```typescript
public onCommit(): void {
Expand Down
Loading