[FIXED] [#264] Can't select row in Grouping Grid

  1. #1

    [FIXED] [#264] Can't select row in Grouping Grid

    Expand Group 2 and try to select a row. Nothing happens. Expand group 1, and you can select a row. It seems that when you have group 2 expanded, the click is registered to the row in group 1. Weird. This was working before I got latest yesterday from SVN.

    
    
    <script runat="server">
        Protected Sub Page_Load(sender As Object, e As EventArgs) Handles Me.Load
            Dim list As New List(Of Object)
            For index = 1 To 25
                list.Add(New With {.Id = index, .Name = "Name " + index.ToString(), .Description = "Description " + index.ToString(), .Grouping = "Group 1"})
            Next
            For index = 26 To 50
                list.Add(New With {.Id = index, .Name = "Name " + index.ToString(), .Description = "Description " + index.ToString(), .Grouping = "Group 2"})
            Next
            
            Me.Store1.DataSource = list
            Me.Store1.DataBind
        End Sub
    </script>
    <html>
    <head id="Head1" runat="server">
    </head>
    <body>
        <form runat="server">
        <ext:ResourceManager ID="ResourceManager1" runat="server" />
        <ext:GridPanel ID="GridPanel1" runat="server" Collapsible="true" Width="600" Height="350"
            Title="Plants" Frame="true">
            <Store>
                <ext:Store ID="Store1" runat="server" GroupField="Grouping">
                    <Model>
                        <ext:Model ID="Model1" runat="server">
                            <Fields>
                                <ext:ModelField Name="Id" />
                                <ext:ModelField Name="Name" />
                                <ext:ModelField Name="Description" />
                                <ext:ModelField Name="Grouping" />
                            </Fields>
                        </ext:Model>
                    </Model>
                </ext:Store>
            </Store>
            <ColumnModel ID="ColumnModel1" runat="server">
                <Columns>
                    <ext:Column ID="Column1" runat="server" Text="Name" DataIndex="Name" Flex="1" />
                    <ext:Column ID="Column2" runat="server" Text="Description" DataIndex="Description"
                        Width="130" />
                </Columns>
            </ColumnModel>
            <Features>
                <ext:Grouping ID="Grouping1" runat="server" HideGroupedHeader="true" StartCollapsed="true"
                    GroupHeaderTplString='{columnName}: {name} ({rows.length} Item{[values.rows.length > 1 ? "s" : ""]})' />
            </Features>
        </ext:GridPanel>
        </form>
    </body>
    </html>
    Last edited by fabricio.murta; Sep 15, 2017 at 5:42 PM.
  2. #2
    Just noticed this is a dup of another reported bug. Feel free to post. Let's hope Sencha fixes this soon...sounds pretty serious.
  3. #3
    Hello!

    We close this thread, but we will update it when Sencha fixes this bug.

    Here is the issue to track: https://github.com/extnet/Ext.NET/issues/264
  4. #4
    Hello!

    We have just tested this in current Ext.NET (4.4.0) and this issue no longer happens, so the github issue will be closed, probably this was fixed at some point and was not properly updated.
    Fabrício Murta
    Developer & Support Expert

Similar Threads

  1. Replies: 7
    Last Post: Mar 25, 2014, 6:21 AM
  2. Replies: 1
    Last Post: Jan 17, 2014, 3:43 PM
  3. Replies: 1
    Last Post: Nov 28, 2012, 2:46 AM
  4. [FIXED] [1.2] Grouping store error
    By softmachine2011 in forum Bugs
    Replies: 2
    Last Post: Sep 21, 2011, 11:37 AM
  5. [FIXED] [V0.6] GridPanel Grouping
    By Timothy in forum Bugs
    Replies: 2
    Last Post: Sep 06, 2008, 4:14 PM

Posting Permissions