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

absent: ext-gridView component

Open fabriciomurta opened this issue 5 years ago • 0 comments

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

  1. Combination_Samples > Applications > Feed_Viewer
  2. DragDrop > Grid > Cell_to_Cell
  3. DragDrop > Grid > Grid_to_FormPanel
  4. DragDrop > Grid > Grid_to_Grid
  5. DragDrop > Grid > Grid_to_Tree
  6. DragDrop > Grid > Rows_Reordering
  7. Form > DropDownField > Overview
  8. Form > Triggers > Trigger_with_Dialog_Editor
  9. Getting_Started > Introduction > Component_Overview
  10. GridPanel > ArrayGrid > ArrayWithPaging
  11. GridPanel > ArrayGrid > DirectEvent_Creation
  12. GridPanel > ArrayGrid > ForceFit
  13. GridPanel > ArrayGrid > Keep_Page_on_Refresh
  14. GridPanel > ArrayGrid > Remote_Load
  15. GridPanel > ColumnModel > Ajax_Configuration
  16. GridPanel > ColumnModel > Change_Models
  17. GridPanel > ColumnModel > Column_Variations
  18. GridPanel > ColumnModel > Reconfigure
  19. GridPanel > Commands > Group_Command
  20. GridPanel > Commands > Image_Command
  21. GridPanel > DataSource_Controls > LinqDataSource
  22. GridPanel > DataSource_Controls > ObjectDataSource
  23. GridPanel > DataSource_Controls > SqlDataSource
  24. GridPanel > Infinite_Scrolling > Buffered_Scrolling
  25. GridPanel > Infinite_Scrolling > Forum_topics
  26. GridPanel > Infinite_Scrolling > Remote_Filter
  27. GridPanel > Layout > FitLayout
  28. GridPanel > List_View > Overview
  29. GridPanel > Locking_Grid > GroupingSummary
  30. GridPanel > Locking_Grid > GroupingSummary_with_group_headers
  31. GridPanel > Locking_Grid > Infinite_Scrolling
  32. GridPanel > Miscellaneous > Add_Mode
  33. GridPanel > Miscellaneous > Custom_UI
  34. GridPanel > Miscellaneous > Details_Window_Remote
  35. GridPanel > Miscellaneous > Export_Data_PostBack
  36. GridPanel > Miscellaneous > Grid_TotalRow
  37. GridPanel > Miscellaneous > Grouping
  38. GridPanel > Miscellaneous > Grouping_TotalRow
  39. GridPanel > Miscellaneous > JSONP_Proxy
  40. GridPanel > Miscellaneous > Marking_Records
  41. GridPanel > Paging_and_Sorting > DirectMethod
  42. GridPanel > Paging_and_Sorting > Local_Paging_with_Remote_Data
  43. GridPanel > Paging_and_Sorting > Page
  44. GridPanel > Paging_and_Sorting > XML_WebService
  45. GridPanel > Plugins > GroupingSummary
  46. GridPanel > Plugins > GroupPaging
  47. GridPanel > Plugins > Remote_GroupSummary
  48. GridPanel > Plugins > Selection_Memory
  49. GridPanel > Plugins > Summary
  50. GridPanel > RowExpander > Local_Mode
  51. GridPanel > RowExpander > MultiLevel_GridPanel
  52. Keys > Panel_Keys > Grid_Rows_Delete
  53. Kitchen_Sink > GridPanels > Grouped_GridPanel
  54. Miscellaneous > Mouse_Distance_Sensor > Basic
  55. Miscellaneous > ToolTips > GridPanel_Cell_Tooltip
  56. Miscellaneous > ToolTips > GridPanel_Row_Tooltip
  57. TabPanel > Basic > Move_Component

MVC examples matching GridView

  1. Actions > Grid
  2. DragDrop > Grid > Cell_to_Cell
  3. DragDrop > Grid > Grid_to_FormPanel
  4. Getting > Started > Component_Overview
  5. GridPanel > ArrayGrid > DirectEvent_Creation
  6. GridPanel > ArrayGrid > ArrayWithPaging
  7. GridPanel > ArrayGrid > Remote_Load
  8. GridPanel > ColumnModel > Column_Variations
  9. GridPanel > Commands > Image_Command
  10. GridPanel > Infinite_Scrolling > Buffered_Scrolling
  11. GridPanel > Infinite_Scrolling > Forum_topics
  12. GridPanel > Infinite_Scrolling > Overview
  13. GridPanel > Infinite_Scrolling > Remote_Filter
  14. GridPanel > Miscellaneous > Marking_Records
  15. GridPanel > Paging_and_Sorting > Local_Paging_with_Remote_Data
  16. GridPanel > Plugins > GroupingSummary
  17. GridPanel > Spreadsheet > Overview
  18. GridPanel > Spreadsheet > Submit
  19. Kitchen > Sink_GridPanels > Grouped
  20. Miscellaneous > Mouse_Distance_Sensor > Basic

fabriciomurta avatar Jul 23 '20 21:07 fabriciomurta