Evgeny Filatov
Evgeny Filatov
@akhil018 You didn't specify the size of the dataset when it starts to be unreasonably slow. I think it would be useful. Note, that there is no magic here: Roughly,,...
It flickers for me too. Also, when I click in a view from the drop down list, the list gets collapsed despite `always_open=True` ```python admin.add_view( DropDown( "Main", icon="fa fa-list", views=[...
https://github.com/jowilf/starlette-admin/blob/9e50bc9f02828d1f22c04c63a9c629038c765f86/starlette_admin/templates/macros/views.html#L41 Removing "show" here helps from closing the drop down when it looses focus. It still flickers, but only for the first time after the drop down is opened. UPD:...
(it's a different bug, but has some similarities) Field search filter behaves weirdly: 1. when `model.save_state=True` Add search value, refresh the page - search string keeps the search value, filter...
Not a bug - https://github.com/tabler/tabler/issues/1343 But, the problem is that `responsive_table=False` for `BaseModelView` doesn't work. A naive workaround is to set table options directly: ```python datatables_options = {"dom": "r"} ```...
@dstlny hm.. But according to the documentation, routers allow the user to switch between connections, not between schemas > > ### Define Router > > Define a router is simple,...
Tried to use a Router. It definitely returns a connection name: ``` Traceback (most recent call last): File "application.py", line 76, in init_tortoise await Stores.all().first() File "site-packages/tortoise/queryset.py", line 957, in...
@dstlny > From what i can tell, you literally aren't able to use multiple DB's on a single connection... so you might be shit out of luck for now I'm...