How to remove arrow next to date?

Tags: #<Tag:0x00007f8b1d6c1fd8>

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

https://jsfiddle.net/q3kd9c5r/ that does the job.

2 Likes