Ticket Q90007
Visible to All Users
Duplicate

We have closed this ticket because another page addresses its subject:

ASPxGridView - The GetSelectedRowCount method returns a wrong value if a selected row was deleted

GetSelectedFieldValues Info

created 17 years ago

Hi
There's something I can't understand about ASPxGridView.GetSelectedFieldValues () method and ASPxClientGridView.GetSelectedRowCount() method

  1. start the project and load default aspx
  2. Place a breakpoint at line 36 of default.aspx.cs (List<object>keyValues = … )
  3. expand one of the rows in the master grid ( categories )
  4. select one row in the detail grid ( products )
  5. press 'Delete Selected Rows' button ( the alert says we have one row selected )
  6. look at keyValues in ASPXGridView2_CustomCallback : Count = 1
  7. select another row in the detail grid
  8. press 'Delete Selected Rows' button ( the alert says we have two rows selected …why ?? )
  9. look at keyValues in ASPXGridView2_CustomCallback : Count = 2 ( why ??? )
    thanks in advance
                   Andrea
Comments (3)
DevExpress Support Team 17 years ago

    Hi,
    Thank you for the report. This is a bug in the ASPxGridView - the information returned by the GetSelectedRowCount is wrong, and I have created a new bug report for this issue:
    ASPxGridView - The GetSelectedRowCount method returns a wrong value if a selected row was deleted
    Also, I would like to notify you that your approach is not quite correct. To properly access a detail gridView instance, set its ClientInstanceName to a dynamic value:
                        <dxwgv:ASPxGridView ID="ASPxGridView2" ClientInstanceName='<%# "gridView" + Container.VisibleIndex.ToString() %>' runat="server" AutoGenerateColumns="False"
    define the onclick event as shown below:
                        <input id="Button1" type="button" value="Delete Selected Rows" onclick="OnButtonClick('<%# Container.VisibleIndex%>')" />
    and finally use the following code within the OnButtonClick event handler:

    JavaScript
    function OnButtonClick(rowIndex) { var gridView = eval('window.gridView' + rowIndex); var count = gridView.GetSelectedRowCount(); alert(' number of rows selected : ' + count); gridView.PerformCallback(); }

    This is necessary because all the detail GridViews will have the same client instance name and thus you will not be able to distinguish between them.
    Thanks,
    Plato

      in my detail row, i have a page that contains the grid, so using Container.VisibleIndex returns a compilation error saying that apage control doesnt have a visible index, what can i do to solve that?

      DevExpress Support Team 12 years ago

        Hi Maha,
        To be able to help you, we need to know the aspx markup and the code you are using. Would you please create a new Support Center ticket and post the code there? We will do our best to help you.

        Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

        Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.