Hasan Sezer Taşan
Hasan Sezer Taşan
> Where can I find details/tips? Searching the docs... I believe docs doesn't tell much about these, we've talked about the documentation with @jowilf. The documentation requires more explanation for...
I'll check it if I can come up with a solution, keep in mind, that I'm not strong at JavaScript.
I added my modifications below: https://github.com/jowilf/starlette-admin/blob/769a85ffdcc3fbf0b2e9dff235678e88fa4128b4/starlette_admin/statics/js/actions.js#L42-L68 as ```javascript initActionModal() { let self = this; $("#modal-action").on("show.bs.modal", function (event) { let button = $(event.relatedTarget); // Button that triggered the modal let confirmation...
> Do you think that should be enabled by default? I believe not, but we should definitely document this one.
I mean, it doesn't look like a Starlette Admin issue. I'm using DO Droplet with Docker containers and it works great! WTYT @jowilf?
@jowilf What do you think about this? I think it's not necessary to come up with a Field for this one. I was tinkering `BaseField` and I think we can...
> 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...
> [parse_obj](https://jowilf.github.io/starlette-admin/api/fields/#starlette_admin.fields.BaseField.parse_obj) should only be used to extract the value of a field from a model instance. Also, I forgot this, but you can simply add the `@property decorator` in...
Syntax proposal: ```python class UserView(ModelView): fields = [ "id", "last_name", "first_name", FormattedField( func=lambda request, obj: f"{obj.first_name} {obj.last_name}", field=TextField, name="full_name", # Passes to IntegerField label="Full Name", # Passes to IntegerField #...
Let's take a look at this PR. What do we need? > `column_formatter` feature from Flask Admin. What does `column_formatter` do? > It's simply a function that returns some value...