jQWidgets Forums

Forum Replies Created

Viewing 7 posts - 16 through 22 (of 22 total)
  • Author
    Posts

  • lalit singh
    Participant

    Hi Peter,

    is there any way to get row of selected cell ?

    Regards,

    lalit singh


    lalit singh
    Participant

    Hi Peter,

    Thanks I implemented this. Below is my implementation.

    I am binding cellendedit event to grid and then after performing calculation , setting the value. This is working fine.

    $(“#jqxgrid”).bind(‘cellendedit’, function (event) {

    var args = event.args;
    var columnDataField = args.datafield;
    var rowIndex = args.rowindex;
    var cellValue = args.value;
    var oldValue = args.oldvalue;

    if (columnDataField == “SalesFinal”) {

    var SalesFinalVal = cellValue;
    var updateCAGR = null;

    var SalesInitialVal = $(“#jqxgrid”).jqxGrid(‘getcellvalue’, rowIndex, ‘SalesInitial’);

    if (SalesFinalVal != null && SalesInitialVal) {

    updateCAGR = calculateCAGR(SalesFinalVal, SalesInitialVal);

    $(“#jqxgrid”).jqxGrid(‘setcellvalue’, rowIndex, ‘CAGRPercentageFinal’, updateCAGR);

    }

    }
    }

    I hope this is the only way , I can use it. If is there any way around , please let me.

    Regards,

    Lalit Singh

    in reply to: Jqxgrid Jqxgrid #48387

    lalit singh
    Participant

    Hi Peter,

    I observed, i was missing columntype: ‘numberinput’ on my columns. Finally i added. Now Its working.

    Thanks for your reponse.

    Regards,

    Lalit Singh

    in reply to: Jqxgrid Jqxgrid #48296

    lalit singh
    Participant

    Hi Peter,

    Thanks for your reply.

    I want to achieve below display

    Account Cluster Sub-Segment Data owner Sales GM% Sales
    MCBRIDE INT’L EUR CWE AntiP/Deo JBLU – – –
    MCBRIDE INT’L EUR CEE Surface Care JBLU 13,555 50 13,455
    MCBRIDE INT’L NEA CCN Air Care JBLU 6,808 50 6,708
    MCBRIDE INT’L EUR CWE Oral Care (BC) JBLU – –
    742,060 741,760

    you can notice the value 742,060 (there is no text before “sum” or “;”)
    , there is no text but only value on row summary. can we achieve this ?

    regards,

    lalit singh

    in reply to: Jqxgrid Jqxgrid #48263

    lalit singh
    Participant

    Hi Peter,

    I agree what you replied. This was useful link. Here in link , still the word “sum”,”min”,”max” is displaying.

    i want only value to be diplayed say for ex : 4956.00 for particular aggregate on status bar. no custom text, just number.

    is it possible ?

    Regards,

    lalit singh

    in reply to: Get grid data on row select Get grid data on row select #47303

    lalit singh
    Participant

    Hi Peter,
    Thanks for your reply.

    I am talking about getting rowdata from grid, synchronization i will do it once i am able to get parameter. my question was how to get the rowdata.

    Regards,
    Lalit Singh

    in reply to: Grid with redmond css Grid with redmond css #47060

    lalit singh
    Participant

    Hi Peter Stoev,

    Thanks for your valuable information. Its working now.

    Regards,

    lalit singh

Viewing 7 posts - 16 through 22 (of 22 total)