Select theme:

Material 3
warning

You are viewing the legacy Radzen documentation.

Radzen Blazor Studio has replaced Radzen as the primary RAD tool for Blazor applications.

Radzen Blazor Studio offers a modern UI, enhanced features, and improved performance to streamline your development process.

The latest documentation for Radzen Blazor Studio is available here: https://www.radzen.com/blazor-studio/documentation/

Open Radzen Blazor Studio docs

Progressive Web Apps support (Angular)link

Progressive Web Apps supportlink

Progressive Web Apps support in Radzen Angular applications is enabled out-of-the-box and can be configured using client\src\ngsw-config.json:

image

The config file is written only once and Radzen will not override your changes on subsequent builds. If you delete the file Radzen will generate it.

Runtime data cachinglink

To enable runtime data caching you can add dataGroups in the ngsw-config.json file. For example different strategies for Radzen application with MS SQl Server, MySQL, Oracle or PostgreSQL data-source

Freshness strategy

"dataGroups": [{
      "name": "api-freshness",
      "urls": [
        "/odata"
      ],
      "cacheConfig": {
        "strategy": "freshness",
        "maxSize": 100,
        "maxAge": "3d",
        "timeout": "10s"
      }
    }
  ]

OR

Performance strategy

"dataGroups": [{
      "name": "api-performance",
      "urls": [
        "/odata"
      ],
      "cacheConfig": {
        "strategy": "performance",
        "maxSize": 100,
        "maxAge": "3d"
      }
    }
  ]

Runtime data caching will take effect only when application is deployed (build in production mode).

image

PWA can be installed also if the application is deployed to safe host (https or localhost).

image image

© 2016-2025 Radzen Ltd. All Rights Reserved.
Designed and developed with ❤️ in Radzen Blazor Studio.

Select theme:

Material 3