Hello –
My company has paid version of jqGrid using 5.2.0. We are using a grid and the horizontal scrollbar renders and works fine on desktop using Chrome, IE and Firefox.
On iPad -> Safari we have noticed the horizontal scrollbar doesn’t render though you can swipe left / right to see the content.
What do we need to do to get this rendering?
Thanks!
+++
Here is JS options used to create one of the grids
$(“#list”).jqGrid({
url: “../Services/AJAXServices.asmx/GetVSCs”,
datatype: “json”,
data: {},
mtype: ‘POST’,
colNames: dataCols,
colModel: cols,
ajaxGridOptions: { contentType: ‘application/json; charset=utf-8’ },
contentType: “application/json; charset=utf-8”,
autowidth: true,
shrinkToFit: false,
height: 160,
viewrecords: true,
gridview: true,
autoencode: true,
caption: “Contracts”,
loadonce: true,
deselectAfterSort: false,
loadui: ‘enable’,
jsonReader: {
root: “d.rows”, //array containing actual data
page: “d.page”, //current page
total: “d.total”, //total pages for the query
records: “d.records”, //total number of records
repeatitems: false,
id: “d.VscCode” //index of the column with the PK in it
},
HTML snippet. Note we are using Bootstrap 3 and this is contained within
<h5 id=”h5AdditionalOptions” class=”additionalOptionsHeader” runat=”server” visible=”false”>Additional Options</h5>
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top