Hi,
I'm building an ASP.NET MVC 4 application, and using the dxDataGrid control to display and manipulate my data. The CRUD operations are implemented on the server side.
I have a problem with the Update operation, bellow is the js code I use to get the data from the row being edited, to post it to the server.
JavaScriptupdate: function (key, values) {
var params = $.extend({}, values);
params[dbImpl.key] = key;
var url = '/MyController/Update/';
return dbImpl._sendRequest('PUT', url, params);
Suppose the object is of type Employee and have 3 properies (FirstName, LastName, Tel), and the user edit only the 'Tel' property. On the server side, the object posted 'employee' has only the value of 'Tel' property, the two other properties are NULL ! (even thought the employee has a FirstName and a LastName).
Is this the default behaviour of the dxDataGrid ? Not getting the values of properties not edited. Or I'm missing something ?!
Thanks in advance