Jocelin Hounon

Results 58 comments of Jocelin Hounon

> Interesting: the search query get_search_query(request, term) does receive a Request as parameter. Unfortunately the 2 above do not. Indeed adding a request to those methods will solve the issue,...

Thank you, @hasansezertasan, for your help. @OzodbekUSTECH, take a look at https://jowilf.github.io/starlette-admin/deployment/ and https://www.uvicorn.org/deployment/#running-behind-nginx Related #143, #280

I previously answered this question in #200. So In my opinion we already have a way to do it, it's not really necessary to have two ways to do the...

> I think inheriting from a strict type like StringField is not a good idea Agree

> Implementing EndpointLinkRowAction and LinkRowAction from Flask Admin, in column level will be easier with this one. I'm not sure I understand. Please, can you clarify it?

> Let's say that I want to add # at the begining of each ID Field, no calculations or any logic. Just add # at the begining of each ID...

> because those were removed at https://github.com/jowilf/starlette-admin/pull/425. They(`Username` and `Password`) had already been translated.

Yes, I tried to make it easier to override File class for a custom logic. But you need to specify `upload_type` when declaring your FileField. ```py Column(FileField(upload_type=MyCustomFileClass)) ``` I can...

Hello @rafnixg, Thank you for your contribution. I will take advantage of this PR to setup docs preview with vercel or netlify before merge it. But I'm also thinking about...

How about we wrap the calls to `get_list_query` and `get_count` functions inside a try-catch block? In the try block, we can pass the request and to maintain backward compatibility, we...