Column type handsontable not visible for the last rows and for right columns

Good morning
I’ve problem to see the info when I click on the cell defined like ‘handsontable’.
This happen for the cells in the last rows or in the last right columns.

Here is a part of my code:
columns: [
{ data: ‘ID’, type: ‘numeric’, readOnly: true, className: “htCenter”},
{ data: ‘Famiglia’, type: ‘text’ },
{ data: ‘SapCode’, type: ‘text’, className: “htCenter” },
{ data: ‘SapName’, type: ‘text’ },
{ data: ‘ItemCode’, type: ‘text’, className: “htCenter” },
{ data: ‘LogoCE’, type: ‘checkbox’, className: “htCenter” },
{ data: ‘LogoUL’, type: ‘checkbox’, className: “htCenter” },
{ data: ‘LogoATEX’, type: ‘checkbox’, className: “htCenter” },
{ data: ‘Title1’, type: ‘text’ },
{ data: ‘Title2’, type: ‘text’ },

        { data: 'Key01', type: 'dropdown', className: "htCenter", source: ['V'] },

        {
            data: 'Key02', type: 'handsontable', className: "htCenter",
            handsontable: {
                width: 500,
                colHeaders: ['key', 'dex'],
                autoColumnSize: true,
                manualColumnResize: true,
                data: Attributo03,
                columns: [{ data: 'Value' }, { data: 'DexAll' }],
                colWidths: [30, 470],
                getValue: function () {
                    var selection = this.getSelectedLast();     
                    return this.getSourceDataAtRow(selection[0]).Value;
                },
            }
        },

        // colonna rossa di separazione abbinata a chiave 03
        { data: 'Key03', type: 'text', className: "htCenter", renderer: redColumnRender },

Like you can see the menu is cut …

Please may you help me ?
Thanks
Best regards