Ext.NET
Ext.NET copied to clipboard
absent: ext-button's ToolTips inner block
Found: Ext.NET 7.0.0-preview4_2020-07-21.
The following is Ext.NET 5 syntax:
<ext:Button runat="server">
<ToolTips>
<ext:ToolTip runat="server" />
</ToolTips>
</ext:Button>
In a simple translation for Ext.NET 7:
<ext-button>
<tooltips>
<ext-tooltip />
</tooltips>
</ext-button>
Results in The <tooltips> tag is not allowed byu parent <ext-button> tag helper.
Which with the help of intellisense, we can translate into:
<ext-button>
<tooltip>
<ext-tooltip />
</tooltip>
</ext-button>
Which, in turn, results in The <ext-tooltip> tag is not allowed by parent <tooltip> tag helper., in an issue similar to #1789, #1798 and #1799.
But the plural and camel-casing of ToolTips looks off given the context and Ext JS documentation on Ext.Button. In other words, rather Tooltip than ToolTips, all things considered.
WebForms examples matching ToolTips
- Buttons > Basic > Overview
- Form > Miscellaneous > Registration_Form
- Form > Tag > TagLabel
- GridPanel > Miscellaneous > Submit_to_Handler
- GridPanel > Miscellaneous > Two_Grids
- GridPanel > Miscellaneous > Two_Grids
- GridPanel > MultiHeader > Filter
- Layout > Accordion > Basic_in_CodeBehind
- Layout > Accordion > Basic_in_Markup
- Miscellaneous > ToolTips > Overview
- Miscellaneous > UI > Tip
- TabPanel > Basic > Move_Tabs
- Toolbar > Menu > Flat_Toolbar
- Toolbar > Menu > Overview
- Toolbar > Menu > Toolbar_with_Menus
- TreePanel > Advanced > Filter
- TreePanel > Basic > Refresh_Static_Tree
MVC examples matching ToolTips
For Ext.NET Classic, the <tooltip> inner config requires a Tooltip Component to be configured.
<ext-button>
<tooltip>
<ext-quickTip text="Hello, world" />
</tooltip>
</ext-button>