Ext.NET icon indicating copy to clipboard operation
Ext.NET copied to clipboard

Partial Views support

Open fabriciomurta opened this issue 5 years ago • 1 comments

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).

fabriciomurta avatar Jul 25 '20 17:07 fabriciomurta

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.

geoffreymcgill avatar Oct 28 '20 22:10 geoffreymcgill