Hi,
I am trying to add a horizontal scroll bar to a mobile grid I created using your library (ejmGrid). I managed to scroll vertically without any problems which allowed me to see new rows in my grid.
I would like to also include a horizontal scroll to allow me to view more columns in the grid (in case the mobile screen is too small for the whole grid). However, whenever I enable the horizontal scroll property it does not seem to make any difference.
This is my code:
.........
this._associateControlPanel.ejmScrollPanel({
targetWidth: 200,
enableHrScroll: true
});
this._associateControl.ejmGrid({
dataSource: finalvalue,
allowColumnSelector: true,
allowPaging: true,
pageSettings: {pageSize: 17},
allowFiltering: true ,
allowSorting: true ,
scrollSettings: { height: heightDevice},
allowScrolling: true ,
// Configure Columns for Mobile grid
columns: [
{ field: "code", headerText: "Code", width: 75},
{ field: "name", headerText: "Name", width: 75},
{ field: "type", headerText: "Type", width: 75 },
{ field: "process", headerText: "Process", width: 75 },
{ field: "priority", headerText: "Priority", width: 35}
]});
..........