I have a new project created in visual studio 2010 with syncfusion asp net classic objects.
I copied from sample the grid edit in row sample and also the c code, but when i run i can see all the behavor ok, but if i change something or try to debug c code simply the serverevents does never get triggered.
protected void EditEvents_ServerEditRow(object sender, GridEventArgs e)
{
EditAction(e.EventType, e.Arguments["data"]);
}
protected void EditEvents_ServerAddRow(object sender, GridEventArgs e)
{
EditAction(e.EventType, e.Arguments["data"]);
}
protected void EditEvents_ServerDeleteRow(object sender, GridEventArgs e)
{
EditAction(e.EventType, e.Arguments["data"]);
}
I tried just to place a breakpoint to stop process on enter of each function and if simply does not trigger in none of them.
I test the same project in 2015 an worked fine... maybe im missing some reference or i don know.
I already checek all with documentation and all is ok!
Im attaching the full project, the default file is the only one with code modified.
Hope you can help...
Attachment:
C_visual_studio_2010_project_30b7e791.zip