We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@and3rson I think it would be great if
widgets = { 'user': SearchableSelect(model='users.User', search_field='email', many=False, limit=10), }
will be
widgets = { 'user': SearchableSelect(model='users.User', search_field=['email', 'first_name', 'last_name'], many=False, limit=10), }
If you agree I will make it.
The text was updated successfully, but these errors were encountered:
@shalakhin That's a great idea! We can definitely have it. Also, don't forget to keep it backward-compatible with single string.
Sorry, something went wrong.
@shalakhin seems like this can be done within the scope #10, I'll probably close this issue in favor of #10.
shalakhin
No branches or pull requests
@and3rson I think it would be great if
will be
If you agree I will make it.
The text was updated successfully, but these errors were encountered: