hi,
i couldnt figure how to call module update query (sql) from parent form.
anyone have any luck with it?
example: subform1.updateQuery.trigger(); (module subformXXX)
i tried to expose the updateQuery as output by name fnUpdateQuery={{updateQuery}}
but when i call subform1.fnUpdateQuery.trigger(), it does not work
Hey @mercstudio! The best/only way to trigger a query inside a module FROM the parent app would be to use this workaround:
- Create a module input (setting on the left side of the module) and set the value to be the parent query or the parent input that you want to use to trigger the module query
- (a) Query JSON with SQL dummy query (b) select * from - this watches for changes to input1 and triggers this query on any changes (c) trigger target module query on success
Then in your parent app, just make a change to whatever you set input1 to (in the module) and you should see the module query get triggered!
Let me know if you're able to get this set up!
