jQWidgets Forums

jQuery UI Widgets Forums Grid grid updatebounddata

This topic contains 3 replies, has 3 voices, and was last updated by  DanT 10 years ago.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
  • grid updatebounddata #50029

    lalinms
    Participant

    good morning,i have a grouping grid, when i add a row via ‘addrow’, and make a updatebounda, the group disappears, the grid show me the raw rows

    var Sec1 = function(vdata2){
    var sourceSec1 ={
    datatype: “json”,
    datafields: [
    { name: ‘field1′,type:’string’},
    { name: ‘field2′,type:’string’}
    ],
    url: ‘phpdocs/GetFields.php’,
    cache: false,
    type: ‘POST’,
    data:{v1:vdata1,v2:vdata2}, // vdata1 its a global variable
    addrow: function (rowid, rowdata, position, commit) {
    var datos = {v1:rowdata.vdata1,v2:rowdata.vdata2};
    $.GetData(‘phpdocs/AddRow.php’,8000,datos,function(data){
    if (data.v1==1){$(‘#GridSec’).jqxGrid(‘updatebounddata’);}else{commit(false);};
    $(‘#GridSec’).jqxGrid(‘clearselection’);
    });
    }
    };
    var dataAdapterSec1 = new $.jqx.dataAdapter(sourceSec1);
    return dataAdapterSec1;
    };
    $(“#GridSec”).jqxGrid({width: ‘100%’,theme: theme,altrows: true,source: Cuadro(vdata2),
    height:$(document).height()-160,showtoolbar: true,toolbarheight: 30,columns: [
    { text: ‘Section’, datafield: ‘field1’, width: ‘10%’ },
    { text: ‘Description’, datafield: ‘field2’, width: ‘10%’ }
    ],groupable: true,groups: [‘field1’],showgroupsheader:false
    });

    in the addrow method

    $(“#SecForm”).on(‘validationSuccess’, function () {
    var datarow ={field1:$(‘#inpt1’).val(),field2:$(‘#inpt2’).val().toUpperCase()};
    $(“#GridSec”).jqxGrid(‘addrow’, null, datarow);
    });

    grid updatebounddata #50044

    Peter Stoev
    Keymaster

    Hi lalinms,

    “updatebounddata” re-binds and re-renders the Grid. That means that sorting, grouping, filtering would be cleared.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    grid updatebounddata #50319

    lalinms
    Participant

    Thanks for your response, as I can fix that?

    grid updatebounddata #69231

    DanT
    Participant

    Same problem here. I need to trigger a jqxGrid(“updatebounddata”, “data”), but it clears my grouping. What I do as a workaround is saving the grouping status before triggering updatebounddata and re-establishing them afterwards. But that’s _painfully_ slow.

    Is there any better way or has anything changed since this topic was opened last year?

    Daniel

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.