Grid.UpdateCell of Grid is not working on All system

Hi Team

In Grid I have created one popup like this

<GridColumn Field=@nameof(Inspection.Icolumn5) AutoFit="true">
            <Template>
                @{
                    var rec = (context as Inspection);
                    if (rec.RecType.Trim() == "HEAD")
                    {
                        @rec.Icolumn5
                    }
                    else
                    {
                        <SfButton @onclick="@(()=> OpenCol5PopUp(@rec.PriInspectionId))">@buttonMsg</SfButton>
                    }
                }

            </Template>
        </GridColumn>


On popup there is Save button Event

  private void SaveTitle(int Id,string msg)
    {

        double colId = Convert.ToDouble(ColId);
        if (msg=="None")
        {
            msg = " ";
        }

        this.Grid.UpdateCell(colId-1, "Icolumn7", msg);
        this.Grid.UpdateCell(colId-1, "Icolumn5", colId.ToString());
        this.IsVisibleTable = false;
        this.IsVisibleCol6Table = false;
    }

Here i m updating GridCell, It is working fine on My system, But not on my Client System. What could be there problem. 

Note: I  also tested will latest version of Blazor snfussion control and Chrome browser. 
         Version 88.0.4324.104 (Official Build) (64-bit)

I am not able to get root cause. 
Could you please let me know what could be the problem ?





1 Reply

VN Vignesh Natarajan Syncfusion Team January 25, 2021 09:10 AM UTC

Hi Chandradev,  
 
Thanks for contacting Syncfusion support.  
 
Query: “Here i m updating GridCell, It is working fine on My system, But not on my Client System. What could be there problem.  
 
From your query we understand that you are facing issue while updating the cell value using UpdateCell method. But we need some more information about the reported issue. So kindly share the following details.  
 
  1. You have mentioned that you are facing in specific machine (Client). Are you mentioning that updated value (in your machine) is not refreshed in your client machine
  2. (i.e.) Value updated in your machine is note reflected in your client machine while using CRUD?
  3. Is there any script error in browser console. If yes share the screenshot of the issue.
  4. Or UpdateCell method is not working properly in client machine. 
  5. Share the video demonstration of the reported issue with replication procedure.
 
Above requested details will be helpful for us to validate the reported issue at our end and provide solution as early as possible.    
 
Regards, 
Vignesh Natarajan 


Loader.
Up arrow icon