How to remove arrow next to date?

I have readonly: true and editor: false. The arrow doesn’t do anything, how do I remove this?

You can override its property with:

	.handsontable .htAutocompleteArrow {
	  display: none;
	}

It should no longer appear. Hope this helps!

Totally agree with @CaldeiraG

Handsontable example - JSFiddle - Code Playground that does the job.

2 Likes