Show dropdown options on top

Tags: #<Tag:0x00007efc64762520> #<Tag:0x00007efc647623e0>

I want to display my dropdown options on top instead of bottom. Could you please help me?

Untitled2

Untitled

Try the following as I was able to make it happen on my side:

.css

.handsontable.listbox  {
    top: -100px !important;
   overflow: visible;
}
.handsontable .htAutocomplete .htAutocompleteArrow {
   transform: rotate(180deg);
 
}

You might need the following as the top rows might show hidden options

.handsontable {
  overflow: visible !important;
}

@noajm

We appreciate the proposed solution! @sajjadraihan217, please let us know if that helps with your case.

@noajm & @adrian.szymanski , Thanks for the solution. It is working fine.