Ext.NET
Ext.NET copied to clipboard
absent: ext-loadMask's showMask boolean 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-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
- Associations > HasMany > Nested_Loading
- Getting_Started > Introduction > Component_Overview
- GridPanel > RowExpander > Dynamic_GridPanels
- GridPanel > RowExpander > MultiLevel_GridPanel
- GridPanel > RowExpander > Remote_Mode
- Loaders > Component > Direct_Method
- Loaders > Component > Http_Handler
- Loaders > Component > JSON_WebService
- Loaders > Data > Overview
- Miscellaneous > ToolTips > Overview
- Panel > Basic > Deferred_Loading
- Panel > Basic > IFrame_Communication
- Panel > Basic > Loader
- Panel > BodyMask > Standard_Mask
- Portal > Basic > Deluxe
- TabPanel > Basic > Ajax_Load
- Window > Basic > Load_External_Website
MVC examples matching LoadMask and ShowMask
- Associations > HasMany > Nested_Loading
- GridPanel > RowExpander > Dynamic_GridPanels
- GridPanel > RowExpander > Dynamic_View
- GridPanel > RowExpander > Remote_Mode
- Panel > Basic > Deferred_Loading
- Panel > Basic > IFrame_Communication
- Panel > Basic > Loader
- Panel > BodyMask > Standard_Mask
- TabPanel > Basic > Ajax_Load
- Window > Basic > Load_External_Website