After sorting the column, while selecting a cell, scroller is not working, scroller is not moving down to cell, In given code i am using addRow fn to focus a cell, after sorting scroller doesn't work but with a fresh table works fine

Tags: #<Tag:0x00007efc6ac13ca8>

var DataLoader = new function(){

this.buildHandsOnTable = function(returnVals, tableName){
	DataLoader.data = $.parseJSON(returnVals);
	DataLoader.tableName  = tableName;
	var dataLoadingTab = document.getElementById("dataLoadingTab");
	var container = document.createElement("div");
	var containerName = "dataLoadingTab-" + tableName;
	container.setAttribute("id", containerName);
	
	if ( dataLoadingTab.childElementCount != 0 ){
		$('#dataLoadingTab').empty();
		DataLoader.tableStack.pop();
	}
	dataLoadingTab.appendChild(container);
	DataLoader.tableStack.push(containerName);
	
	handsOnTable = new Handsontable(container, {
		autoColumnSize: true,
		data: DataLoader.data,
		columns: tableColumns[tableName],
		colWidths: 150,
		rowHeaders: true,
		colHeaders: DataLoader.tableHeaders[tableName],
		minSpareRows: 1,
		columnSorting: true,
		sortIndicator: true,
		
		manualColumnFreeze: true,
		contextMenu: ['remove_row', 'hidden_columns_show', 'hidden_columns_hide', 'hidden_rows_show', 'hidden_rows_hide', 'undo', 'redo', 'alignment'],
		hiddenColumns: {
		      indicators: true,
		      copyPasteEnabled:false
		    },
		hiddenRows: {
			  indicators: true,
			  copyPasteEnabled:false
			},
		manualColumnResize: true,
		licenseKey: '0000',
		filters: true,
		afterGetColHeader: addInput,
		beforeOnCellMouseDown: doNotSelectColumn
	});
};

this.addRow = function() {
	var dataLength = DataLoader.data.length - 1;
	handsOnTable.selectCell(555,7,555,7);
}

};

@aleksandra_budnik fyi

Hi @poke2shashank

Please share a demo (that I will also be able to send to our developers) and a scenario on how to replicate the issue.

ps. I have deleted the licenseKey from this comment as it is prohibited to share it.

http://jsfiddle.net/aqfq4xp1/

follow these steps:

sort any column by clicking any header column then click “select cell 100,1” Button
Scroller is not going down.

If we perform this click on button on fresh table it works fine, scroller goes down and selects the cell.

@aleksandra_budnik
thanks for deleting licence, mistakenly it posted,
Please do the needful i am in urgent need.

Please update your version if possible. This issue doesn’t occur in the latest version 2.0.0. Here is a demo http://jsfiddle.net/ywk481hq/