Jun 05, 2023, 9:22 PM
.Net core command equivalent code
I am not able to find an example equivalent to below code in Ext.net 7.
<ext:Column ID="AddTestData" runat="server" Text="Enter Test Data" Flex="2" MinWidth="60"
Filterable="false">
<Commands>
<ext:ImageCommand CommandName="Show Test Data Entry" Icon="Add" ToolTip-Text="Show Test Data Entry" Disabled="true" />
</Commands>
<Listeners>
<Command Fn="onCommand" />
</Listeners>
<PrepareCommand Fn="toggleEnterTestData" />
</ext:Column>