-
Notifications
You must be signed in to change notification settings - Fork 7
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
[QUESTION] Filter values change #81
Comments
Hi, Best regards |
Hi Guanji, I’m not sure to correctly understand your problem so i’ll try to sum up If it’s the case, i think you can try to : 1- Change queryMode in children combobox in order to load local data : queryMode : 'local' 2- Try to use MemoryProxy in the children store (many examples in SITools) in order to add data manually proxy : {
type : 'memory',
reader : {
type :'json',
root : 'dataset.columnModel',
idProperty : 'id'
}
}
} 3- Use store.add() or store.loadData() methods, to add new records according to the store’s model. Let me in touch if i have answered to your question. Best Regards, |
Hi Guanji, We wrote an example for you, let me know if it helps you : |
Hi Bastien,
Best regards, |
Hello,
I want to get some technical help from you as I have met some difficulties.
The existed function :
In query form, we have parent filter and children filter, the children filter values are changed and shown according to the selected value(s) in parent filter by executing an SQL command in the backend.
The expected function :
I want to change and show the children filter values according to the selected values in parent filter not by executing the SQL but by the pre-saved value list or store in js controller.
What I have done for it:
Can you give me some instruction about how to do the rest, please?
Thank you for your help.
regards,
Guanji
The text was updated successfully, but these errors were encountered: