How to add Data in Column wise Because i created Dynamic column through the using of following code and i need to enter the data in column wise. So help me.
$('body').on('click','#addstandardvoyage1',function(e)
{
var $grid=$("#poolrules_tab_main");
var CM = $grid.pqGrid("option", "colModel");
CM.push({title:'Dynamic Column',align:'center', width:280});
var DM = $grid.pqGrid("option", "dataModel");
var data = DM.data;
var $frm = $("#poolrules_tab_main");
$grid.pqGrid ( "refresh" );
$grid.pqGrid( "refreshDataFromDataModel");
$("#poolrules_tab_main").pqGrid(obj);
});