ejGrid with horizontal splitter

When we use ejGrid along with horizontal slider like this:


and trying to use ejGrid scrollbar to scroll down a list we get this error:

 

When scrolling down/up using scrolling wheel we don’t get any errors.


1 Reply

SE Sathyanarayanamoorthy Eswararao Syncfusion Team April 18, 2018 04:50 PM UTC

Hi AC, 

Thanks for contacting Syncfusion support. 

We have analyzed your query and we are unable to reproduce the mentioned issue on our end. We have prepared a sample with the same requirement which can be downloaded from the below location. 


Refer the below code example. 

  
<ej-grid id="Grid" [dataSource]="gridData" [allowPaging]="true" [allowFiltering]="true" [filterSettings]="filterType" [allowScrolling]="true" [scrollSettings]="scroll" > 
    <e-columns> 
                      ….. 
 
    </e-columns> 
</ej-grid> 
 
[ts file]   
export class GridComponent { 
    public gridData; 
    public filterType; 
    public scroll; 
    constructor() 
    { 
         //The datasource "window.gridData" is referred from 'http://js.syncfusion.com/demos/web/scripts/jsondata.min.js' 
         this.gridData = window.gridData; 
         this.filterType={filterType:"excel"}; 
         this.scroll = {height : 400}; 
     } 
   
} 
 

If you still face the issue please share the following details. 

  1. Code example of the Grid in html page and Ts page.
  2. Essential Studio versions.
  3. If possible please try to reproduce the mentioned issue in attached sample.

Regards, 
Sathyanarayanamoorthy 


Loader.
Up arrow icon