diff --git a/en/components/grids_templates/search.md b/en/components/grids_templates/search.md index 5e0f622963..d374dab872 100644 --- a/en/components/grids_templates/search.md +++ b/en/components/grids_templates/search.md @@ -165,17 +165,17 @@ The methods from above return a **number** value (the number of times the @@igCo Let's also display the position of the current occurrence, along with the total results count! We can do this by using the grid's `lastSearchInfo` property. This property is automatically updated when using the **find** methods. -- The `@@igObjectRef.lastSearchInfo.matchInfoCache.length` value will give us the total results count. +- The `@@igObjectRef.lastSearchInfo.matchCount` value will give us the total results count. - The `@@igObjectRef.lastSearchInfo.activeMatchIndex` value will give us the index position of the current occurrence (match). ```html -
- - {{ @@igObjectRef.lastSearchInfo.activeMatchIndex + 1 }} of {{ @@igObjectRef.lastSearchInfo.matchInfoCache.length }} results +
+ + {{ @@igObjectRef.lastSearchInfo.activeMatchIndex + 1 }} of {{ @@igObjectRef.lastSearchInfo.matchCount }} results - + No results
@@ -322,11 +322,11 @@ On the right in our input group, let's create three separate containers with the -
- - {{ @@igObjectRef.lastSearchInfo.activeMatchIndex + 1 }} of {{ @@igObjectRef.lastSearchInfo.matchInfoCache.length }} results +
+ + {{ @@igObjectRef.lastSearchInfo.activeMatchIndex + 1 }} of {{ @@igObjectRef.lastSearchInfo.matchCount }} results - + No results
diff --git a/jp/components/grids_templates/search.md b/jp/components/grids_templates/search.md index fffb49b421..0f977bc6ed 100644 --- a/jp/components/grids_templates/search.md +++ b/jp/components/grids_templates/search.md @@ -161,17 +161,17 @@ public exactMatch: boolean = false; 検索で見つかった現在の場所と総個数を示します。グリッドの `lastSearchInfo` プロパティを使用します。このプロパティは、**find** メソッド使用時に自動的に更新されます。 -- `@@igObjectRef.lastSearchInfo.matchInfoCache.length` 値は検索で見つかった個数です。 +- `@@igObjectRef.lastSearchInfo.matchCount` 値は検索で見つかった個数です。 - `@@igObjectRef.lastSearchInfo.activeMatchIndex` 値は、現在の一致 (出現) のインデックス位置です。 ```html -
- - {{ @@igObjectRef.lastSearchInfo.activeMatchIndex + 1 }} of {{ @@igObjectRef.lastSearchInfo.matchInfoCache.length }} results +
+ + {{ @@igObjectRef.lastSearchInfo.activeMatchIndex + 1 }} of {{ @@igObjectRef.lastSearchInfo.matchCount }} results - + No results
@@ -317,11 +317,11 @@ public clearSearch() { -
- - {{ @@igObjectRef.lastSearchInfo.activeMatchIndex + 1 }} of {{ @@igObjectRef.lastSearchInfo.matchInfoCache.length }} results +
+ + {{ @@igObjectRef.lastSearchInfo.activeMatchIndex + 1 }} of {{ @@igObjectRef.lastSearchInfo.matchCount }} results - + No results
diff --git a/kr/components/grids_templates/search.md b/kr/components/grids_templates/search.md index 8302506671..5915e970a8 100644 --- a/kr/components/grids_templates/search.md +++ b/kr/components/grids_templates/search.md @@ -145,17 +145,17 @@ public exactMatch: boolean = false; #### 결과 수 표시 총 결과 수와 함께 현재 검색 위치를 표시합니다! 그리드의 `lastSearchInfo` 속성을 사용하여 이것을 실행할 수 있습니다. 이 속성은 **find** 메소드를 사용할 때 자동으로 업데이트됩니다. -- `@@igObjectRef.lastSearchInfo.matchInfoCache.length` 값은 총 결과 수입니다. +- `@@igObjectRef.lastSearchInfo.matchCount` 값은 총 결과 수입니다. - `@@igObjectRef.lastSearchInfo.activeMatchIndex` 값은 현재 검색(일치)의 인덱스 위치입니다. ```html -
- - {{ @@igObjectRef.lastSearchInfo.activeMatchIndex + 1 }} of {{ @@igObjectRef.lastSearchInfo.matchInfoCache.length }} results +
+ + {{ @@igObjectRef.lastSearchInfo.activeMatchIndex + 1 }} of {{ @@igObjectRef.lastSearchInfo.matchCount }} results - + No results
@@ -294,11 +294,11 @@ public clearSearch() { -
- - {{ @@igObjectRef.lastSearchInfo.activeMatchIndex + 1 }} of {{ @@igObjectRef.lastSearchInfo.matchInfoCache.length }} results +
+ + {{ @@igObjectRef.lastSearchInfo.activeMatchIndex + 1 }} of {{ @@igObjectRef.lastSearchInfo.matchCount }} results - + No results