Vivek Agarwal
Results
2
comments of
Vivek Agarwal
@icarusxxy This modification in table/Cell.py worked for me, though it's not perfect, but I'd rather have some text than ``. ``` @property def text(self): '''Text contained in this cell.''' if...
Having a ref on Autocomplete and this callback solved the issue for me ``` onOpenChange={(isOpen) => { if (isOpen) { setTimeout(() => ref.current.focus(), 50); } }} ```