There is a column with IsPrimaryKey property in the grid, not the one i'm having poblems with, but a hidden ID column..EditSettings(
edit =>
{
edit.AllowAdding()
.AllowDeleting()
.AllowEditing()
.EditMode(EditMode.Normal);
}
)
Those are my only edit settings, i have no template, i'm using the default controls for the grid.
None of the setCellValue or selectedItemIndex properties is set.
On looking at the example indicated, it has basically the same properties on the columns
I'm using Syncfusion.EJ.MVC.dll, v14.1500.0.46 version (for clarification).
EDIT:
-Found out that the
.ClientSideEvents( eve =>
{
eve .ActionComplete("querycell")
The querycell function on javascript was messing with tha values os the fields related.
The problem was solved, and i'm sorry for wasting your time with this problam,
Thanks for the assistence.