Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having a problem with inline edit of date picker elements within a JQGrid. The inline edit and subsequent update to the data base happens but on reload the date values are not the actual ones. For example : initial value : 26/04/1987, edited value : 26/08/1987. The edited value goes into the database but what is diaplayed on the grid is some random value.

Here's my datepicker code in thecol model of the grid:

{ name: 'TaskStartDate', label: 'Task Start Date', width: 150, editable: true,  
  jsonmap: 'cell.TaskEndDate', formatter: 'date', edittype: 'text', 
    editoptions: { dataInit: function (elem) { $(elem).datepicker(); } } 
},

{ name: 'TaskEndDate', label: 'Task End Date', width: 150, 
  jsonmap: 'cell.TaskStartDate', editable: true, formatter: 'date', edittype: 'text', 
      editoptions: { dataInit: function (elem) { $(elem).datepicker(); } } 
},

{ name: 'Comments', label: 'Task Comments', width: 150, jsonmap: 'cell.Comments', 
  editable: true, edittype: "textarea" 
},

There is not problem when i update the 'Comments' co;lumn and reload the grid.

I also have the on select row even in the col model

onSelectRow: function (edRowID) {
    var data = jQuery("#AssignmentsGrid").getRowData(edRowID);
    if (data.editable = true) {
        jQuery('#AssignmentsGrid')
        .jqGrid("editRow", edRowID, true, '', '', '', '',reload);
    }
}

UpdateAssignment(AssignmentID, TaskStartDate, TaskEndDate, Comments) {
    var updPost = {};
    var gridEdit = $("#AssignmentsGrid");
    var selrowId = gridEdit.getGridParam('selrow');
    updPost.AssignmentID = AssignmentID;
    updPost.TaskStartDate = $('#' + selrowId + '_TaskStartDate').val();
    updPost.TaskEndDate = $('#' + selrowId + '_TaskEndDate').val();
    updPost.Comments = $('#' + selrowId + '_Comments').val();
    $.ajax({
        url: 'ResourceManagementService.asmx/UpdateAssignment', 
        contentType: "application/json; charset=utf-8", 
        dataType: "json", 
        data: JSON.stringify(updPost), 
        type: "POST", 
        async: false, 
        success: function (data, textStatus, xhr) {
                     jQuery("#AssignmentsGrid").saveRow("selrowId", false);
                     alert('Updated successfully');
                     $("#AssignmentsGrid").trigger("reloadGrid");
                 }
    });
}
share|improve this question
0% accept rate, don't expect any help before you accept some answers. – SatelliteSD Aug 27 '12 at 9:32

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.