Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

QuerySelectField ignores changes to data / default in ModelView.create_form #2429

Open
csvance opened this issue May 15, 2024 · 1 comment
Open

Comments

@csvance
Copy link

csvance commented May 15, 2024

Hi, I am trying to set a QuerySelectField to a the currently logged in user in the create interface. Basically I have a "created_by_user_id" column that I would like to automatically set, the default value is dependent by the currently logged in user.

python==3.10.12
Flask==3.0.3
Flask-Admin==1.6.1
Flask-WTF==1.2.1

This works, the change is reflected in the generated HTML:

class ApplicationModelView(ModelView):
  def create_form(self, obj=None)
    form = super().create_form(obj=obj)
    form.text_field.data = "testing"
    return form

This does not work (no change in generated HTML, 1 is still selected by default)

class ApplicationModelView(ModelView):
  def create_form(self, obj=None)
    form = super().create_form(obj=obj)
    form.select_field.data = 2
    return form

I have tried all kinds of workarounds to no avail:

  • calling form.process() after
  • using form.select_field.process_data(2)
  • using form.select_field.default = 2

To me it looks like something is clearly busted here, I had to resort to handling this with Javascript.

@csvance
Copy link
Author

csvance commented May 15, 2024

So I finally got it to work, but its ugly. I had to use the User SQLAlchemy instance and override its eq to check if the id fields were equal. The part where it checks if something should be selected does == between the user object populating the form and the one stored in form.select_field.data. That fails because they are different instances. However changing the comparison operator fixes the problem in this case.

class ApplicationModelView(ModelView):
  def create_form(self, obj=None)
    form = super().create_form(obj=obj)
    form.select_field.data = user_obj
    return form

class User(Base):
  def __eq__(self, other):
    return isinstance(other, type(self)) and self.id == other.id

Use this at your own risk, I have no idea if there are unintended consequences.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant