Kbase P124643: highlightWidget API called within rowDisplay override hightlights widgets outside of SmartDataBrowse
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  28/06/2007 |
|
Status: Unverified
FACT(s) (Environment):
OpenEdge 10.x
Dynamics
All Supported Operating Systems
SYMPTOM(s):
Dynamic SmartDataBrowser has custom super procedure
Custom super procedure has rowDisplay override procedure
rowDisplay override calls highlightWidget API to highlight cell in browse
Container with the Dynamic SmartDataBrowser gets initialized
Fields in other objects than Dynamic SmartDataBrowser are highlighted
CAUSE:
This is a known issue being investigated by Development
FIX:
Workaround:
Ensure the rowDisplay procedure does not do anything if the SDB is not being displayed yet. This can be achieved by adding the following line to the start of the procedure:
IF NOT SELF:VISIBLE THEN RETURN NO-APPLY.