hi, i have used jqxgrid in my app , jqxcontext menu appears on desktop but i does not appears on tablet on tapping , here is my code , can any one help me what changes should i make to make it work
gridParentElem.jqxGrid({
columns: columns,
source: source,
// Changes—–commented code to hide 1st column from search result table .
// nested grid configuration
/*rowdetails: true,
rowdetailstemplate: {
rowdetails: “<div></div>”,
rowdetailsheight: 34,
rowdetailshidden: true
},
initrowdetails: nestedGrid.initRelatedClasses,*/
altrows: false,
columnsheight: this.getConfig(‘columnsheight’),
columnsresize: true,
columnsreorder: false,
enableanimations: false,
enablehover: false,// don’t highlight the row under the mouse pointer
filterable: true,
groupable: true,
pageable: false,
selectionmode: ‘none’,
enablebrowserselection : true,
showgroupsheader: this.getConfig(‘showgroupsheader’),
rowsheight: 34,
width: ‘100%’,
touchmode: true,
height : ‘100%’,
// enable multiple column sorting
sortable: {
mode: “multiple”,
allowUnsort: true
},
//autoheight: true,
// editable: true,
//selectionmode: ‘none’,
ready : function() {
self.jqxGridObject = this;
}
}