Openbravo Issue Tracking System - POS2
View Issue Details
0047785POS2Corepublic2021-09-30 14:442021-10-05 18:12
guilleaer 
jarmendariz 
normalminorhave not tried
closedfixed 
5
 
TAP 
No
No
0047785: JIRA-2356 - Allow to configure the debounce time for filters
Allow to configure the debounce time for filters.

I think that this configuration should not be available from backoffice (it is something very internal) but allowed by code (overwriting value) (not common case)
N/A
No tags attached.
blocks feature request 0047784 closed jarmendariz JIRA-2356 - Allow to configure the debounce time for grid filters 
Issue History
2021-09-30 14:44guilleaerTypefeature request => backport
2021-09-30 14:44guilleaerTarget Version => TAP
2021-09-30 14:44guilleaerStatusscheduled => acknowledged
2021-09-30 14:45guilleaerSummaryAllow to configure the debounce time for filters => JIRA-2356 - Allow to configure the debounce time for filters
2021-10-04 09:22guilleaerStatusacknowledged => scheduled
2021-10-04 09:22guilleaerAssigned Toplatform => jarmendariz
2021-10-05 14:07guilleaerNote Added: 0132169
2021-10-05 14:07guilleaerNote Edited: 0132169bug_revision_view_page.php?bugnote_id=0132169#r23148
2021-10-05 18:04AugustoMauchStatusscheduled => resolved
2021-10-05 18:04AugustoMauchResolutionopen => fixed
2021-10-05 18:04AugustoMauchStatusresolved => closed
2021-10-05 18:12AugustoMauchNote Added: 0132174

Notes
(0132169)
guilleaer   
2021-10-05 14:07   
https://gitlab.com/obcustomers/AGAP/org.openbravo.core2/-/merge_requests/59 [^]
https://gitlab.com/obcustomers/AGAP/org.openbravo.pos2/-/merge_requests/112 [^]
https://gitlab.com/obcustomers/AGAP/org.openbravo.retail.giftcards/-/merge_requests/10 [^]

(0132174)
AugustoMauch   
2021-10-05 18:12   
To overwrite the debounce time configuration:
- Create a JSON config file that contains the property with the updated value. I.e. to set a value of 1000 ms:

{
  "debounceTimeMillis": 1000
}

- In the ob-init.js of the customization module, import the JSON config file and use it to overwrite the configuration:
  Registry.overwriteConfiguration('OBC2_FilterBar', CustomFilterBarConfig);