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 ?