I gave my table option "stretchH : ‘all’ ".
and the wrapper has ‘overflow:hidden’.
now the table stretchs when the window size grow up
but when the window size shorten It never shorten again
how can I make the table full responsible.
my code :
let opt = {
data: data || false,
colHeaders: colheader || false,
rowHeaders: rowheader || false,
rowHeights: 26,
colWidths: 5,
stretchH: 'all',
renderAllRows: true,
readOnly: readOnly || false
}
table = new Handsontable(wrapper, option ? Object.assign(opt, option) : opt);