spreadjs中的combobox
解决了低版本spreadjs自带combobox,当cell处于页面最底部时,combobox下拉选项只能向下展开,导致下拉选项被遮挡的问题,重写之后,当下拉选项展示高度超出之后,自动向上展开,调用方式如下: import CustomComboboxCellType from '@/spread/format-cells/custom-combobox-cell-type' var cellTypes = new NotaxComboboxCellType(this.voucherIsQrCode) var colInfos = [ { name: 'property', displayName: 'property', size: 200, cellType: cellTypes }, ......] this.sheet.bindColumns(colInfos)