2015-06-29
3.0.0
João Melo
9.0.1.3
All
All
[Overview]
This component is intended to avoid excessive requests from client to server, and unecessary database queries, on an autocomplete field when the target Entity has lots of records (hundreds or thousands) but is not changed frequently.
[Detail]
This component is intended to avoid excessive requests from client to server, and unecessary database queries, on an autocomplete field when the target Entity has lots of records (hundreds or thousands) but is not changed frequently.
A simple combobox? not a good idea...
A field with a button that triggers a popup to list and select records? old school...
A common autocomplete field that downloads the entire list of records on every pageload? let the web flow...
Important tip:
Load a localStorage object with a JSon like this: [{'id':'123', 'value':'qwe'}, ...]
I created a TestPage that treats this in Preparation. Ideally you could do this during the Login process, only if the entity's records and the localStorage's array are in different versions.