Hi,
I am trying to replicate the same experience that Excel provides, please see below.
The text is overflowing from Cell A to cell B.
Clicking anywhere within the Cell B boundary even on the overflowing text will select Cell B.
One of our products was designed in such a way that the first N columns will be shrunk and allowed to overflow up to column N + 1. To facilitate this behavior, we have set wordWrap in settings to be false, and added the following CSS to allow overflow:
.handsontable td {
overflow: visible !important;
}
This text starts from Column A, and spans up until Column D. The text itself covers Column B and C completely, so even if I select Columns B or C within their own boundary, the selection will always go to Column A, making Cell B2 and C2 impossible to select.
When selecting Columns B or C within their own boundary, selection always goes to Column A.
Not sure if this is technically possible in the browser? Appreciate any suggestions, thank you.