The ReorderRows function is not working correctly.

Hi
I can't speak English. So I use Google Translate.
Please understand if the explanation is not natural.

I am implementing a function that moves the position of the currently selected row up or down when a button is clicked.
The first selected record moves well.
However, the second selected record is not moved and the position of the first selected record is also changed.
I have attached a gif.
When the second selected record is moved, the first selected record must be in the first row
Any help to me would be appreciated

-My Code-
List selectRecords = await this.gvQuoDtl.GetSelectedRecords();
            if (selectRecords.Count > 0)
            {
                double curIdx = await this.gvQuoDtl.GetRowIndexByPrimaryKey(selectRecords[0].SEQ);
                if (curIdx != 0)
                {
                    await this.gvQuoDtl.ReorderRows(curIdx, curIdx - 1);
                    await this.gvQuoDtl.SelectRow(curIdx - 1);
                }
            }

Attachment: ReorderRows_ed33abac.zip

5 Replies 1 reply marked as answer

RS Renjith Singh Rajendran Syncfusion Team October 19, 2020 01:35 PM UTC

Hi JaeHyeong, 

Greetings from Syncfusion support. 

We have confirmed it as a bug and logged the defect report “ReorderRows method not reordering the selected row properlyfor the same. Thank you for taking the time to report this issue and helping us improve our product. At Syncfusion, we are committed to fixing all validated defects (subject to technological feasibility and Product Development Life Cycle ) and including the defect fix in our upcoming bi-weekly release which is expected to be rolled by the mid of November, 2020. 
    
You can now track the current status of your request, review the proposed resolution timeline, and contact us for any further inquiries through this link.    

Regards, 
Renjith Singh Rajendran 



JJ JaeHyeong Jang October 20, 2020 12:09 AM UTC

Hi

Thank you for answer.
I look forward to the revision.


RS Renjith Singh Rajendran Syncfusion Team October 20, 2020 12:38 PM UTC

Hi JaeHyeong, 

Thanks for your update. 

Please follow up on the provided feedback link on future updates regarding this issue. 

Regards, 
Renjith R 



JJ JaeHyeong Jang December 3, 2020 05:44 AM UTC

Hi.

Hasn't it been processed yet?


RS Renjith Singh Rajendran Syncfusion Team December 4, 2020 09:13 AM UTC

Hi JaeHyeong 
  
We are glad to announce that our Blazor Weekly patch release (v18.3.0.52) has been rolled out successfully and we have included the fix of this issue “ReorderRows method not reordering the selected row properly” in our latest version. So kindly update your NuGet for latest fixes and features 
 
Please find the Nuget package from below, 

 
We thank you for your support and appreciate your patience in waiting for this release. Please get in touch with us if you would require any further assistance.  

Regards, 
Renjith Singh Rajendran 


Marked as answer
Loader.
Up arrow icon