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 } ] });