ExtJS 5 table selection model error

It seems that the error is related to inserting partial selections into the grid, since the line below my selection gets zero. I am using ExtJS 5.1.

I copied the following cells (2 rows and 2 columns) -

enter image description here

and pasted them into the ExtJS grid http://dev.sencha.com/ext/5.1.0/examples/kitchensink/#spreadsheet

What I got -

enter image description here

What could be the reason for the additional third line (highlighted in red)? Is there a workaround?

Thanks in Advance :)

+4
source share
1 answer

Replace putCellData()of Ext.grid.plugin.Clipboardand delete the last row data. This will work.

+3

Source: https://habr.com/ru/post/1569973/


All Articles