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

absent: ext-componentLoader's 'mode' enum property

Open fabriciomurta opened this issue 5 years ago • 0 comments

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="

  1. Associations > HasMany > Lazy_Load
  2. Associations > HasMany > Lazy_Load
  3. Combination_Samples > Applications > Feed_Viewer
  4. DataView > Advanced > Chooser
  5. GridPanel > Infinite_Scrolling > Tuner
  6. GridPanel > RowExpander > Dynamic_GridPanels
  7. GridPanel > RowExpander > Remote_Mode
  8. Loaders > Component > Direct_Method
  9. Loaders > Component > Http_Handler
  10. Loaders > Component > JSON_WebService
  11. Loaders > Data > Overview
  12. Miscellaneous > Resizable > Basic
  13. Panel > Basic > Deferred_Loading
  14. Panel > Basic > IFrame_Communication
  15. Panel > Basic > Loader
  16. Panel > Basic > Loader_Html_Mode
  17. Panel > BodyMask > Custom_Mask
  18. Panel > BodyMask > Standard_Mask
  19. Portal > Basic > Deluxe
  20. Toolbar > Menu > Dynamic_Items
  21. TreePanel > Advanced > Image_Organizer

MVC examples matching \.Loader\( and \.Mode\(

  1. Draw > Basic > Analytics
  2. Draw > Basic > Pie_Chart
  3. Draw > Basic > Punch_Chart
  4. Dynamic > Partial_Rendering > Partial_Content
  5. GridPanel > RowExpander > Dynamic_GridPanels
  6. GridPanel > RowExpander > Dynamic_View
  7. GridPanel > RowExpander > Remote_Mode
  8. Miscellaneous > Resizable > Basic
  9. Panel > Basic > Deferred_Loading
  10. Panel > Basic > IFrame_Communication
  11. Panel > Basic > Loader
  12. Panel > BodyMask > Custom_Mask
  13. Panel > BodyMask > Standard_Mask
  14. TabPanel > Basic > Ajax_Load
  15. Window > Basic > Load_External_Website

fabriciomurta avatar Jul 23 '20 18:07 fabriciomurta