CoreUI for Angular v5.6.20 - Angular 21.2.3 Security Update
We are pleased to announce the release of CoreUI for Angular v5.6.20. This important security update brings full support for Angular 21.2.3, includes critical security patches for the hono package vulnerability (GHSA-v8w9-8mx6-g223), and comprehensive dependency updates to ensure your Angular applications run securely with the latest framework improvements.
CoreUI PRO for Angular v5.6.20 - Angular 21.2.3 Security Update
We are pleased to announce the release of CoreUI PRO for Angular v5.6.20. This important security update brings full support for Angular 21.2.3, includes critical security patches for the hono package vulnerability (GHSA-v8w9-8mx6-g223), and comprehensive dependency updates to ensure your enterprise Angular applications run securely with the latest framework improvements.
How to export table data in Angular
Exporting table data to CSV or JSON lets users take data out of web applications for further processing. As the creator of CoreUI with over 10 years of Angular experience since 2014, I’ve implemented data export for reporting dashboards where users need to analyze data in Excel or share it with colleagues. The standard approach builds the file content as a string, creates a Blob, and triggers a download via a temporary anchor element. This works without any server-side code or third-party libraries.
How to filter tables in Angular
Filtering tables lets users find records quickly without scrolling through entire datasets.
As the creator of CoreUI with over 10 years of Angular experience since 2014, I’ve implemented table filtering for enterprise dashboards managing thousands of records.
The most effective approach uses a reactive search input bound with [(ngModel)] and a getter that filters the display data.
This provides instant, responsive filtering with no extra libraries.
How to sort tables in Angular
Sortable tables help users find data quickly by ordering rows based on any column. As the creator of CoreUI with over 10 years of Angular experience since 2014, I’ve built sortable data tables for enterprise dashboards handling thousands of rows. The most effective approach tracks sort column and direction in component state, uses a getter to return sorted data, and shows directional indicators on column headers. This provides intuitive sorting without external libraries.
CoreUI for Angular v5.6.19 - ESLint 10 Update
We are pleased to announce the release of CoreUI for Angular v5.6.19. This maintenance update brings support for ESLint 10, updates to the latest Angular 21.2.1 tooling, and comprehensive development dependency updates to enhance your Angular development experience.
CoreUI PRO for Angular v5.6.19 - ESLint 10 & Tooling Updates
We are pleased to announce the release of CoreUI PRO for Angular v5.6.19. This maintenance update brings support for ESLint 10, updates to the latest Angular 21.2.1 CLI and build tools, and comprehensive development dependency updates to enhance your enterprise Angular development experience.
How to paginate tables in Angular
Pagination is essential for displaying large datasets in manageable chunks, improving performance and user experience. As the creator of CoreUI with over 10 years of Angular experience since 2014, I’ve implemented pagination for tables handling millions of records in enterprise applications. The most effective approach uses component state to track current page and page size, with computed properties to slice data for display. This provides smooth navigation through large datasets.
How to create a table in Angular
Creating data tables is essential for displaying structured information in Angular applications. As the creator of CoreUI with over 10 years of Angular experience since 2014, I’ve built table components for everything from simple lists to complex enterprise data grids with thousands of rows. The most effective approach uses Angular’s structural directives for rendering, pipes for data transformation, and component state for interactive features like sorting and filtering. This pattern provides a professional, performant table interface.
CoreUI for Angular v5.6.18 - Angular 21.2.1 Update
We are pleased to announce the release of CoreUI for Angular v5.6.18. This maintenance update brings full support for Angular 21.2.1, includes important security patches, and comprehensive dependency updates to ensure your Angular applications run with the latest framework improvements and security fixes.