All buttons(edit,save,cancel,delete) comes up when clicked title in Grid

Hi,

I have a grid with AllowSorting="true" and AllowEditing="true".
When I'm editing the one of the column, after finished editing before lost focus I clicked a title column which I can sort, then 
Edit, Delete, Save, Cancel button shows up at the same time.

I attached screen shot.

Best Regards,
Yukiko

Attachment: screenshot_2b7dd79f.7z

3 Replies

SS Seeni Sakthi Kumar Seeni Raj Syncfusion Team August 13, 2018 06:27 AM UTC

Hi Yukiko,  
 
Thanks for contacting Syncfusion Support.  
 
We can reproduce the reported problem at our end. We confirmed it as bug “Unboundcolumn is not refreshed properly when we use Sorting,Grouping and other features”. The fix for this issue will be included in the Volume 2 Service Pack 2 2018 Release, which has been scheduled roll out by the end of August 2018.  
 
To workaround this issue, we suggest to call the refreshContent method in the ActionComplete event while the requestType is “save”. 
 
<ej:Grid ID="OrdersGrid" runat="server" AllowSorting="true"> 
    <ClientSideEvents ActionComplete="actionComplete" /> 
       . . . 
              .. . 
</ej:Grid> 
 
<script type="text/javascript"> 
    function actionComplete(args) { 
        if (args.requestType == "sorting") {  
            this.refreshContent(); 
        } 
    } 
</script> 
 
 
 
 
Refer to the following API Reference.  
 
 
Regards,  
Seeni Sakthi Kumar S. 



YI Yukiko Imazu August 13, 2018 05:38 PM UTC

Hi Seeni Sakthi Kumar,

Thank you for your help.

Best Regards,
Yukiko


SS Seeni Sakthi Kumar Seeni Raj Syncfusion Team August 14, 2018 05:30 AM UTC

Hi Yukiko,  
 
Thanks for the update. 
 
Regards,  
Seeni Sakthi Kumar S. 


Loader.
Up arrow icon