jQWidgets Forums
Forum Replies Created
-
Author
-
August 18, 2020 at 11:35 am in reply to: Adding jqWidgets V10 to a project Adding jqWidgets V10 to a project #112713
Thanks Peter
Hi Peter,
Do you have a direct email? I’d like to send a URL to you if possible to show the error.
Thanks
Hi Peter,
This is reproduceable on all apps i’m creating using only jQWidgets. I’ve tried online examples and they work fine on jsfiddle and using Desktop Chrome, but always get errors when running on an Android device using Chrome or as an apk. I’m thinking it could be an NSBasic issue. I’ll double check with them again.
Thanks
August 16, 2020 at 4:27 am in reply to: Adding jqWidgets V10 to a project Adding jqWidgets V10 to a project #112690Hi Peter,
The code i used for this is below. The app consists of only a button and jqxGrid.
Button1.onclick = function() { gedata = []; //get grid data for (i = (0); i <= 100; i ++) { row = []; for (j = (0); j <= 10; j ++) { row["col" + j] = i; } gedata[i] = row; } //get data field array and columns to display datafieldsArray = []; columnsArray = []; gridcolsindex = 0; for (k = (0); k <= 10; k ++) { datafieldsArray[gridcolsindex] = {name: "col" + k , type: "text"}; columnsArray[gridcolsindex] = {text: "Col" + k, datafield: "col" + k, cellsalign: 'center', align: 'center', width: "10%"}; gridcolsindex = gridcolsindex + 1; } var source = { localdata: gedata, datafields: datafieldsArray, datatype: "array" }; var adapter = new $.jqx.dataAdapter(source); $("#Grid1").jqxGrid({ //width: 800, theme: 'energyblue', //columnsheight: 25, rowsheight: 30, source: adapter, sortable: True, //selectionmode: 'singlecell', columns: columnsArray }); }
Thanks
Hi Peter,
The error is more noticeable when pressing/releasing/ shifting the vertical scrollbar. You may need to play with it a bit to show the error.
I’ve kept trying on other devices and the error keeps showing.Thanks
Hi Peter,
I initially tested using version 9.1.4 then tested with version 10.0.2, and i get the same error for both versions.
It only happens when running it on an Android or Apple device.Thanks
March 12, 2019 at 11:08 am in reply to: JqxGrid cellclassname cell colours JqxGrid cellclassname cell colours #104309Thanks for your reply.
-
AuthorPosts