Change Default Group Caption based on condition in Angular Grid
The caption template for the boolean 'Verified' column has been changed based on the condition in the following demo:
dataBound (args) { var captionTemplate = document.getElementsByClassName('e-groupcaption'); for (var i = 0; i < captionTemplate.length; i++) { if (captionTemplate[i].innerText == 'false') { var node = document.createElement('span'); node.className = 'e-icons e-search'; node.width = '50px'; node.height = '50px'; node.style.position = 'absolute'; node.style.marginLeft = '5px'; node.style.paddingTop = '3px'; captionTemplate[i].appendChild(node); } else { var element = document.createElement('span'); element.className = 'e-icons e-upload'; element.width = '50px'; element.height = '50px'; element.style.position = 'absolute'; element.style.marginLeft = '5px'; element.style.paddingTop = '3px'; captionTemplate[i].appendChild(element); } } }
Output
Refer to the working sample for additional details and implementation: Angular Sample
Conclusion
We hope you enjoyed learning about how to Change Default Group Caption based on condition in Angular Grid.
You can refer to our Angular feature tour page to learn about its other groundbreaking feature representations and documentation, and how to quickly get started with configuration specifications. You can also explore our Angular grid example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to explore our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, BoldDesk Support, or feedback portal. We are always happy to assist you!