Ext.NET
Ext.NET copied to clipboard
Partial Views support
Ext.NET forums thread: Migration from legacy code
PartialViews is something that will allow to some degree of consistency the port of WebFroms user controls (ASCX) components to Ext.NET 7, but currently there is no formalization of support to this feature.
This issue is intended to track its implementation and contain basic usage scenario(s).
The <ext-partial> component has been introduced in the Ext.NET Classic 7.1.0 release.
https://ext.net/ext-net-classic-7-1-with-new-partial-and-section/#partial
The <ext-partial> is demonstrated nicely in the Ext.NET.Templates that can be installed using the following commands:
dotnet new -i Ext.NET.Templates # Install dotnet templates
mkdir ExtDemo1 # Make a new folder
cd ExtDemo1 # Move into that new folder
dotnet new extnet # Create a new Ext.NET app
dotnet watch run # Start the new web app
Dynamic loading of partial views is under development right now.