absent: ext-gridView component
Found: Ext.NET 7.0.0-preview4_2020-07-21.
In Ext.NET 5, a grid panel in which the view had custom config could be expressed like this:
<ext:GridPanel runat="server">
<View>
<ext:GridView runat="server" />
</View>
</ext:GridPanel>
This input is not valid in Ext.NET 7:
<ext-gridPanel>
<view>
<ext-gridView />
</view>
</ext-gridPanel>
Which suggests the valid one would be:
<ext-gridPanel>
<view>
<ext-tableView />
</view>
</ext-gridPanel>
Which, in turn, is congruent with the client-side documentation for Ext.grid.Panel.view.
Yet, the ext:GridView name in Ext.NET 5 was just conserved between the ExtJS 5.0.1 and Ext JS 5.1.0 migration; as there were no compatibility issue nor replacement notice. Even though the compatibility still exists as an alias, it should be a good idea to let it go for the new version.
In Ext JS 5.1.0 the Ext.view.Table was merged with the Ext.grid.View:
Until then, Ext.grid.View was a standalone component, although it just extended the Ext.view.Table one. This change was not reported in the 5.0.1 - 5.1.0 change log.
Examples using the old GridView reference:
WebForms examples matching GridView
- Combination_Samples > Applications > Feed_Viewer
- DragDrop > Grid > Cell_to_Cell
- DragDrop > Grid > Grid_to_FormPanel
- DragDrop > Grid > Grid_to_Grid
- DragDrop > Grid > Grid_to_Tree
- DragDrop > Grid > Rows_Reordering
- Form > DropDownField > Overview
- Form > Triggers > Trigger_with_Dialog_Editor
- Getting_Started > Introduction > Component_Overview
- GridPanel > ArrayGrid > ArrayWithPaging
- GridPanel > ArrayGrid > DirectEvent_Creation
- GridPanel > ArrayGrid > ForceFit
- GridPanel > ArrayGrid > Keep_Page_on_Refresh
- GridPanel > ArrayGrid > Remote_Load
- GridPanel > ColumnModel > Ajax_Configuration
- GridPanel > ColumnModel > Change_Models
- GridPanel > ColumnModel > Column_Variations
- GridPanel > ColumnModel > Reconfigure
- GridPanel > Commands > Group_Command
- GridPanel > Commands > Image_Command
- GridPanel > DataSource_Controls > LinqDataSource
- GridPanel > DataSource_Controls > ObjectDataSource
- GridPanel > DataSource_Controls > SqlDataSource
- GridPanel > Infinite_Scrolling > Buffered_Scrolling
- GridPanel > Infinite_Scrolling > Forum_topics
- GridPanel > Infinite_Scrolling > Remote_Filter
- GridPanel > Layout > FitLayout
- GridPanel > List_View > Overview
- GridPanel > Locking_Grid > GroupingSummary
- GridPanel > Locking_Grid > GroupingSummary_with_group_headers
- GridPanel > Locking_Grid > Infinite_Scrolling
- GridPanel > Miscellaneous > Add_Mode
- GridPanel > Miscellaneous > Custom_UI
- GridPanel > Miscellaneous > Details_Window_Remote
- GridPanel > Miscellaneous > Export_Data_PostBack
- GridPanel > Miscellaneous > Grid_TotalRow
- GridPanel > Miscellaneous > Grouping
- GridPanel > Miscellaneous > Grouping_TotalRow
- GridPanel > Miscellaneous > JSONP_Proxy
- GridPanel > Miscellaneous > Marking_Records
- GridPanel > Paging_and_Sorting > DirectMethod
- GridPanel > Paging_and_Sorting > Local_Paging_with_Remote_Data
- GridPanel > Paging_and_Sorting > Page
- GridPanel > Paging_and_Sorting > XML_WebService
- GridPanel > Plugins > GroupingSummary
- GridPanel > Plugins > GroupPaging
- GridPanel > Plugins > Remote_GroupSummary
- GridPanel > Plugins > Selection_Memory
- GridPanel > Plugins > Summary
- GridPanel > RowExpander > Local_Mode
- GridPanel > RowExpander > MultiLevel_GridPanel
- Keys > Panel_Keys > Grid_Rows_Delete
- Kitchen_Sink > GridPanels > Grouped_GridPanel
- Miscellaneous > Mouse_Distance_Sensor > Basic
- Miscellaneous > ToolTips > GridPanel_Cell_Tooltip
- Miscellaneous > ToolTips > GridPanel_Row_Tooltip
- TabPanel > Basic > Move_Component
MVC examples matching GridView
- Actions > Grid
- DragDrop > Grid > Cell_to_Cell
- DragDrop > Grid > Grid_to_FormPanel
- Getting > Started > Component_Overview
- GridPanel > ArrayGrid > DirectEvent_Creation
- GridPanel > ArrayGrid > ArrayWithPaging
- GridPanel > ArrayGrid > Remote_Load
- GridPanel > ColumnModel > Column_Variations
- GridPanel > Commands > Image_Command
- GridPanel > Infinite_Scrolling > Buffered_Scrolling
- GridPanel > Infinite_Scrolling > Forum_topics
- GridPanel > Infinite_Scrolling > Overview
- GridPanel > Infinite_Scrolling > Remote_Filter
- GridPanel > Miscellaneous > Marking_Records
- GridPanel > Paging_and_Sorting > Local_Paging_with_Remote_Data
- GridPanel > Plugins > GroupingSummary
- GridPanel > Spreadsheet > Overview
- GridPanel > Spreadsheet > Submit
- Kitchen > Sink_GridPanels > Grouped
- Miscellaneous > Mouse_Distance_Sensor > Basic