-
-
Notifications
You must be signed in to change notification settings - Fork 505
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
Async loading of fields #175
Comments
To continue on that: I basically need a way to dynamically add rule fields to the configuration. To my understanding the rule operators and rule values can be customized via the configuration. Is it currently supported/possible to override/replace the select with i.e. an auto complete? |
Update: I overwrote the |
might be a late replay. but my fix was to create a new component widget that i return in the factory.
and internally in that component i call the api and fetch the data only set the value inside the component. the most elegant way without modifying any thing internally in the tool also without the need to reset the state for the config to load all the data. |
This comment has been minimized.
This comment has been minimized.
Hello there! Any updates here? I have to create a dynamic filter constructor and this feature with asynchronous configuration can help me wery well |
I have MetaData entries stored on my server. MetaData identifies a value in the database, it's doesn't contain the value itself. A MetaData object holds a DataType, i.e. StringDataType, IntegerDataType.
I want my user to be able to create a query based on a MetaData entry. The available operators shall be based on the DataType.
As far as I understand this is perfectly doable with
react-awesome-query-builder
as long as I know the list of available MetaData objects beforehand.In my use case there are a lot. I want my user to be able to do the following:
Is this doable with this library?
The text was updated successfully, but these errors were encountered: