Merge branch 'master' of github.com:datacontroller/dcdocs.github.io

This commit is contained in:
munja 2022-03-07 20:54:35 +00:00
commit 1616b3d933

View File

@ -177,4 +177,10 @@ data work.dynamic_extended_values(keep=display_index extra_col_name display_type
output;
end;
run;
```
```
## Technical Notes
When first clicking on a 'dynamic dropdown' cell, the frontend will first hash the entire row, and store the subsequent response from SAS against this hash in an internal lookup table. In this way, the lookup table can be subsequently referenced to vastly improve performance (by avoiding unnecessary server requests).
The lookup event will occur immediately upon clicking on the (dynamic dropdown) cell. If the row has not changed since the previous click, the response will be instant. If any value in the row HAS changed, and that particular combination of values has not previously been requested (in the same browser session), then a request to SAS will need to take place before the dropdown values are shown.