Moving

优质
小牛编辑
115浏览
2023-12-01

This page shows how to move rows and columns in Handsontable.

Enabling plugins

To enable move features, use settings manualColumnMove: true and manualRowMove: true

The draggable move handle appears:

  • in the right part of the column header,
  • in the top part of the row header.
var example1 = document.getElementById('example1');
var hot = new Handsontable(example1, {
  data: Handsontable.helper.createSpreadsheetData(200, 20),
  rowHeaders: true,
  colHeaders: true,
  colWidths: 100,
  manualColumnMove: true,
  manualRowMove: true
});
      

Drag and move actions of manualRowMove plugin

There are significant differences between the plugin's dragRows and moveRows API functions. Both of them change the order of rows, but what is important, they rely on other kind of indexes. The differences between them are shown in the diagrams below. Please keep in mind that both of these methods trigger the afterRowMove and beforeRowMove hooks, but only dragRows passes the dropIndex argument to them.

1. The dragRows method with the dropIndex parameter. This argument points to where we are going to drop the moved elements.

dragRows method

2. The moveRows method with the finalIndex parameter. The argument points to where the elements will be placed after the moving action (finalIndex being the index of the first moved element).

moveRows method

Some of actions to be performed by moveRows function aren't possible, i.e. we can't move more than one element to the last position. In this case, the move will be cancelled. The Plugin's isMovePossible API method and the movePossible parameter of beforeRowMove and afterRowMove hooks may be helpful in determining such situations.