Hi,
We are facing following issues while implementing copy paste.
1) While selecting any column(s), corresponding header also selected. This is because, below style is applied common to the cell and header. How we can apply separate style while clicking a single column?
.pq-grid-overlay.cell, .pq-head-overlay {
border-width: 2px !important;
border-style: solid;
border-color: #d1d1e0;
background-color: #;
}
2) During copy of multiple cells, if hidden column is there that too copying.
3) When freezed columns are in the grid, first few columns of the row are highlighted while clicking any cell of the row.
Please see the selection model and copy model used:
selectionModel: {
all: false,
column: 'undefined',
mode: 'block',
type: 'cell',
toggle: 'undefined',
//native: true,
onTab: 'nextFocus',
row: false,
},
copyModel: {
on: true,
render: true,
header: true,
zIndex: 1e4
},
Appreciate your help.