Select theme:
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 docsProgressive Web Apps support in Radzen Angular applications is enabled out-of-the-box and can be configured using client\src\ngsw-config.json
:
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.
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).
PWA can be installed also if the application is deployed to safe host (https or localhost).
Radzen is free to use. You can also test the premium features for 15 days.
Start FreeSelect theme: