1. Reproduce the issue in the above sample.
2. Share the grid rendering code that you have used in your application.
The provided information will help to analyze the issue and provide you the solution as early as possible.
Regards,
Gowthami V.
$("#Grid").ejGrid({ dataSource: window.gridData, allowPaging: true, scrollSettings: { height: 300, width: 360 }, allowKeyboardNavigation: true, dataBound: function(args){ this.element.find(".e-hscrollbar").ejScrollBar({ smallChange: 120 });//on each step 120px will be moved so you can view the columns completely. }, columns: [ { field: "OrderID", width: 120 }, //each column must be same width as ejScrollBar's width; // so on each step you can capture the entire column and not partial . . . . . { field: "ShipCountry", headerText: "Ship Country", width: 120 }, ] |