Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8823817
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T06:27:12+00:00 2026-06-14T06:27:12+00:00

I am Use jqGrid. $(#list).jqgrid(){ …. editurl:editMedicineGridData.html, onCellSelect : function(rowid, iCol, cellcontent) { $(‘#prescribedDate’).val(jQuery(#madicineGrid).jqGrid(‘getCell’,rowid,

  • 0

I am Use jqGrid.

$("#list").jqgrid(){
    ....
    editurl:"editMedicineGridData.html",
    onCellSelect : function(rowid, iCol, cellcontent) {
        $('#prescribedDate').val(jQuery("#madicineGrid").jqGrid('getCell',rowid, 'PrescriptionDate'));
    },
    gridComplete: function(){ 
        var grid = $("#madicineGrid"),
            sum = grid.jqGrid('getCol','totalAmount', false, 'sum');
        $('#totalMedicineCharge').html(sum);
    },
    ondblClickRow: function (rowid,name,val,iRow,iCol) {
        $(this).jqGrid('editRow', rowid, true, null, null, null, {}, function (rowid) {
        });
    },
    afterSaveCell : function(rowid,name,val,iRow,iCol) {
        if(name == 'SaleQuantity') {
            var Qval = jQuery("#madicineGrid").jqGrid('getCell',rowid,iCol+1);
            var Aval = jQuery("#madicineGrid").jqGrid('getCell',rowid,iCol);
            jQuery("#madicineGrid").jqGrid('setRowData',rowid,{totalAmount: parseFloat(Aval) * parseFloat(Qval)});
        }
        var grid = $("#madicineGrid"),
            sum = grid.jqGrid('getCol','totalAmount', false, 'sum');
       $('#totalMedicineCharge').html(sum);
    } 
});

so I want Update my data and Change it.
My Problem is that when I use Double Click row event i cant call afterSaveCell Event and When I use afterSaveCell Event Dosen`t Update my data.
I want Both.so What’s Solutions.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T06:27:13+00:00Added an answer on June 14, 2026 at 6:27 am

    I wrote you before in the answer on your previous answer that you can’t mix inline editing with cell editing. The callback afterSaveCell will be called only if you use cell editing. So you should use aftersavefunc callback of editRow to recalculate contain of the totalAmount column based on new value from two other columns. For example if you have columns amount and quantity and need recalculate totalAmount based on the new values from the columns you can do the following:

    ondblClickRow: function (rowid,name,val,iRow,iCol) {
        $(this).jqGrid("editRow", rowid, {
            keys: true,
            aftersavefunc: function (rowid) {
                $(this).jqGrid("setCell", rowid, "totalAmount",
                    parseFloat($(this).jqGrid("getCell", rowid, "amount")) *
                    parseFloat($(this).jqGrid("getCell", rowid, "quantity")));
            }
        });
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to read the editurl from one jqgrid for use in a DND
Here is client Side code: jQuery(document).ready(function(){ jQuery(#list).jqGrid({ url:'example.php', datatype: 'xml', mtype: 'GET', colNames:['Inv No','Date',
I'm trying to use jqgrid and I got this error: $('#list').jqgrid is not a
I've implemented a jqgrid with inline edit: var lastSel; jQuery(document).ready(function () { jQuery(#list).jqGrid({ url:
I use jqGrid grid table plugin for my HTML files. How can I internationalize
I am trying to use jqgrid inline edit function. But I got the whole
how to use serializeRowData option with editRow method in jqgrid to post a json
i'm trying to use jQuery multiselect plugin in a form editing jqGrid (add form).
So I have a jqgrid, and I use custom formatters to format the collumns,
i'm starter in jqgrid, i write this code for create and fill jqgrid(i'm use

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.