ce icon indicating copy to clipboard operation
ce copied to clipboard

Drag corner positioned wrongly

Open jcdiprose opened this issue 2 years ago • 1 comments

I have inherited a project where the drag handle on the spreadsheet is displayed in the wrong position.

There is custom padding added to the spreadsheet td cells though removing this doesn't fix the issue.

The further along in columns and rows that you select, the more skewed the drag handle jexcel_corner becomes

I'm using it with React and using these settings.

      data: rows,
      columns: head,
      pagination: 1000,
      tableOverflow: 'auto',
      defaultColWidth: defaultColWidth,
      search: true,
      editable: false,
      allowExport: true,
      csvFileName: 'sample',
      contextMenu: () => '',
      rowResize: false,

Screenshots that demonstrate the issue..

Screenshot from 2022-09-03 13-13-00 Screenshot from 2022-09-03 13-13-12

jcdiprose avatar Sep 03 '22 12:09 jcdiprose

Hi,

In your CSS do you use transform: scale ? or equiv ?

If it's true, you need reset your "zoom" for Jspreadsheet Element.

GBonnaire avatar Sep 06 '22 14:09 GBonnaire