[GH #4172] Dropdown not showing all values due of last record due to scroll bar

Tags: #<Tag:0x00007f8b1cf07900> #<Tag:0x00007f8b1cf076f8>

Column having dropdown not showing its values due to scroll bar for the last record or if data has only one record.
You can see its showing 1st record correctly while 3rd not showing last value and lastRecord not showing except TODO.
Can you please suggest ?
3rd%20Record 1st%20record TODO
following are my settings:

Handsontable.GridSettings = {
data: getData(),
colHeaders: getColumns(),
bindRowsWithHeaders: true,
stretchH: ‘all’,
dropdownMenu: true,
filters: true,
hiddenColumns: {
columns: [0],
indicators: true,
copyPasteEnabled: true
},
cells(row, col) {
const cp = { readOnly: false, type: undefined, source: undefined };
if (col > 0 && col < 8) {
cp.readOnly = true;
} else if (col === 8) {
cp.type = ‘dropdown’;
cp.source = [‘TODO’, ‘FIXED’, ‘WONT_FIX’];
}
return cp;
}
}

Hey @smah80

this issue sounds similar to this one
https://github.com/handsontable/handsontable/issues/3828 or/and
https://github.com/handsontable/handsontable/issues/4172

for fixed rows it happens a bit similar to https://github.com/handsontable/handsontable/issues/6045

I recommend tracking this issues but I will also leave myself a note to inform you after the fix,

Thanks

Hi, I’m here to share the good news with anyone interested in this issue. It was solved in Handsontable v12.1.0. Here you can read the full list of changes https://handsontable.com/docs/release-notes/#_12-1-0.