jQuery UI Widgets Forums Grid Copy-Paste Grid data

Tagged: ,

This topic contains 2 replies, has 2 voices, and was last updated by  SpaceQuester 12 years, 6 months ago.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
  • Copy-Paste Grid data #11529

    SpaceQuester
    Member

    Hi, All

    How can I copy several columns and rows in Grid and Copy it in buffer? Is there any property about it?

    This my code example:

                var source_jqx_grid =
    {
    datatype: "json",
    datafields: [
    { name: 'real_name' },
    { name: 'sum_score' }
    ],
    url: 'json_index.php?indicator=get_top_ar_violaters&team=' + _team + '&year=' + _year + '&quarter= ' + _quarter
    };
    var dataAdapter_jqx_grid = new $.jqx.dataAdapter(source_jqx_grid, {
    downloadComplete: function (data, status, xhr) { },
    loadComplete: function (data) { },
    loadError: function (xhr, status, error) { }
    });
    $("#jqxGrid").jqxGrid(
    {
    width: 700,
    autoheight: true,
    //height: 276,
    source: dataAdapter_jqx_grid,
    selectionmode: 'none',
    enablehover: false,
    columns: [
    { text: 'Employee Name', datafield: 'real_name', width: 350 },
    { text: 'Quarter AR top score', datafield: 'sum_score', width: 350 }
    ]
    });
    Copy-Paste Grid data #11531

    Peter Stoev
    Keymaster

    Hi SpaceQuester,

    Copy, Paste and Cut are still not supported. You can get the rows by using the getrows and use the other Grid API functions to get the selection.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    Copy-Paste Grid data #11543

    SpaceQuester
    Member

    Will it be in 2013 Q1 due roadmap?

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

You must be logged in to reply to this topic.