Forum Discussion
_anomDiebolt_
11 years agoQrew Elite
>Is there any way to get around this limit?
Use script and you will not hit these arbitrary limits.
Use script and you will not hit these arbitrary limits.
_anomDiebolt_
9 years agoQrew Elite
Ask a new question and include a description of exactly what behavior you want irrespective of the limitation on the number of derived fields.
In a nutshell we would use jQuery to detect various events you want to respond to and in reaction to these events emulate in code the user clicking of the section to toggle the visibility:
$("#sect_s1Header span.sectionTitle").click();
This approach is the least invasive of the QuickBase code since we are not directly manipulating the visibility of DOM elements but rather emulating user input.
This approach can detect a much wider set of events then are hardcoded into the QuickBase form rules.
In a nutshell we would use jQuery to detect various events you want to respond to and in reaction to these events emulate in code the user clicking of the section to toggle the visibility:
$("#sect_s1Header span.sectionTitle").click();
This approach is the least invasive of the QuickBase code since we are not directly manipulating the visibility of DOM elements but rather emulating user input.
This approach can detect a much wider set of events then are hardcoded into the QuickBase form rules.