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

absent: ext-loadMask's showMask boolean 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-loadMask component though, there's no showMask boolean setting.

The v5 implementation of LoadMask.ShowMask suggests this is a setting specific to Ext.NET as there's no corresponding setting on the client-side implementation of Ext.LoadMask.

WebForms examples matching LoadMask and ShowMask

  1. Associations > HasMany > Nested_Loading
  2. Getting_Started > Introduction > Component_Overview
  3. GridPanel > RowExpander > Dynamic_GridPanels
  4. GridPanel > RowExpander > MultiLevel_GridPanel
  5. GridPanel > RowExpander > Remote_Mode
  6. Loaders > Component > Direct_Method
  7. Loaders > Component > Http_Handler
  8. Loaders > Component > JSON_WebService
  9. Loaders > Data > Overview
  10. Miscellaneous > ToolTips > Overview
  11. Panel > Basic > Deferred_Loading
  12. Panel > Basic > IFrame_Communication
  13. Panel > Basic > Loader
  14. Panel > BodyMask > Standard_Mask
  15. Portal > Basic > Deluxe
  16. TabPanel > Basic > Ajax_Load
  17. Window > Basic > Load_External_Website

MVC examples matching LoadMask and ShowMask

  1. Associations > HasMany > Nested_Loading
  2. GridPanel > RowExpander > Dynamic_GridPanels
  3. GridPanel > RowExpander > Dynamic_View
  4. GridPanel > RowExpander > Remote_Mode
  5. Panel > Basic > Deferred_Loading
  6. Panel > Basic > IFrame_Communication
  7. Panel > Basic > Loader
  8. Panel > BodyMask > Standard_Mask
  9. TabPanel > Basic > Ajax_Load
  10. Window > Basic > Load_External_Website

fabriciomurta avatar Jul 23 '20 18:07 fabriciomurta