New to Kendo UI for Angular? Start a free 30-day trial
DetailTemplateShowIfFn
Updated on Feb 5, 2026
Uses a predicate to control conditional rendering for the DetailTemplateDirective. Allows you to show or hide detail rows based on your logic. (See example).
typescript
public myCondition(dataItem: any, index: number) { return dataItem.CategoryID % 2 === 0; }
Selector
``