Skip to content

Commit 90b4359

Browse files
committed
feat(tree-grid): hiding search for TreeGrid #2530
1 parent ead5940 commit 90b4359

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid.component.ts

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,39 @@ export class IgxTreeGridComponent extends IgxGridBaseComponent {
289289
return false;
290290
}
291291

292+
/**
293+
* @hidden
294+
*/
295+
protected restoreHighlight(): void {
296+
}
297+
298+
/**
299+
* @hidden
300+
*/
301+
public refreshSearch(updateActiveInfo?: boolean): number {
302+
return 0;
303+
}
304+
305+
/**
306+
* @hidden
307+
*/
308+
public findNext(text: string, caseSensitive?: boolean, exactMatch?: boolean): number {
309+
return 0;
310+
}
311+
312+
/**
313+
* @hidden
314+
*/
315+
public findPrev(text: string, caseSensitive?: boolean, exactMatch?: boolean): number {
316+
return 0;
317+
}
318+
319+
/**
320+
* @hidden
321+
*/
322+
public clearSearch() {
323+
}
324+
292325
/**
293326
* @hidden
294327
*/

0 commit comments

Comments
 (0)