Ext.NET
Ext.NET copied to clipboard
absent: ext-componentLoader's 'mode' enum property
Found: Ext.NET 7.0.0-preview4_2020-07-21.
Ext.NET 5 follows the construct below (translated to RazorPages syntax):
<ext-window>
<loader url="https://ext.net/" mode="Frame">
<loadmask showmask="true" msg="Custom Loading Message..." />
</loader>
</ext-window>
Which probably can be ported into Ext.NET 7, partially, with:
<ext-window>
<loader>
<ext-componentLoader url="https://ext.net/" mode="frame">
<loadMask>
<ext-loadMask showmask="true" msg="Custom loading message..." />
</loadMask>
</ext-componentLoader>
</loader>
</ext-window>
Within the ext-componentLoader component though, there's no mode setting. Valid entries from Ext.NET 5 are: Html, Data, Component, Frame, Script. It also is nullable, that is, not emitted only and only if its value is null (which is the case when not specified).
The v5 implementation of ComponentLoader.Mode suggests this is a syntax sugar to the renderer= config.
WebForms examples matching Loader and Mode="
- Associations > HasMany > Lazy_Load
- Associations > HasMany > Lazy_Load
- Combination_Samples > Applications > Feed_Viewer
- DataView > Advanced > Chooser
- GridPanel > Infinite_Scrolling > Tuner
- GridPanel > RowExpander > Dynamic_GridPanels
- GridPanel > RowExpander > Remote_Mode
- Loaders > Component > Direct_Method
- Loaders > Component > Http_Handler
- Loaders > Component > JSON_WebService
- Loaders > Data > Overview
- Miscellaneous > Resizable > Basic
- Panel > Basic > Deferred_Loading
- Panel > Basic > IFrame_Communication
- Panel > Basic > Loader
- Panel > Basic > Loader_Html_Mode
- Panel > BodyMask > Custom_Mask
- Panel > BodyMask > Standard_Mask
- Portal > Basic > Deluxe
- Toolbar > Menu > Dynamic_Items
- TreePanel > Advanced > Image_Organizer
MVC examples matching \.Loader\( and \.Mode\(
- Draw > Basic > Analytics
- Draw > Basic > Pie_Chart
- Draw > Basic > Punch_Chart
- Dynamic > Partial_Rendering > Partial_Content
- GridPanel > RowExpander > Dynamic_GridPanels
- GridPanel > RowExpander > Dynamic_View
- GridPanel > RowExpander > Remote_Mode
- Miscellaneous > Resizable > Basic
- Panel > Basic > Deferred_Loading
- Panel > Basic > IFrame_Communication
- Panel > Basic > Loader
- Panel > BodyMask > Custom_Mask
- Panel > BodyMask > Standard_Mask
- TabPanel > Basic > Ajax_Load
- Window > Basic > Load_External_Website