Drag and drop in single click

Tags: #<Tag:0x00007f1360747910>

I want to implement the drag and drop feature of row/ column only on single click. Right now I am only able to do it by double clicking the row.

<HotTable
ref={(ref) => (this.table = ref)}
data={this.data}
colHeaders={true}
rowHeaders={true}
dropdownMenu
filters
minSpareRows={1}
cell={[{ row: 0, col: 0, readOnly: true }]}
language=“zh-CN”
width=“50vw”
height=“50vh”
manualRowMove={true}
selectionMode=“single”
/>

Hi @sushan.sunuwar

This is correct behavior by design (identical to Google Sheets and Excel), you have to select the desired row that you want to move.

We don’t provide any API to change that and hacking this would break other features (as range selection).