jQWidgets Forums

Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts

  • pedro10
    Participant

    Thanks Peter

    in reply to: jqxGrid scroll errors jqxGrid scroll errors #112706

    pedro10
    Participant

    Hi Peter,

    Do you have a direct email? I’d like to send a URL to you if possible to show the error.

    Thanks

    in reply to: jqxGrid scroll errors jqxGrid scroll errors #112691

    pedro10
    Participant

    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


    pedro10
    Participant

    Hi 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

    in reply to: jqxGrid scroll errors jqxGrid scroll errors #112680

    pedro10
    Participant

    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

    in reply to: jqxGrid scroll errors jqxGrid scroll errors #112639

    pedro10
    Participant

    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


    pedro10
    Participant

    Thanks for your reply.

Viewing 7 posts - 1 through 7 (of 7 total)