Skip to content

Commit

Permalink
fix: 🐛 overlay api should not be debounced in BUI
Browse files Browse the repository at this point in the history
  • Loading branch information
hyyan committed Nov 23, 2020
1 parent 1eb7d30 commit b1fdb59
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions BBjGridExWidget.bbj
Expand Up @@ -3723,23 +3723,23 @@ class public BBjGridExWidget extends BBjWidget implements GxColumnsManagerInterf
rem * <br><b><small>#API</small></b>
rem */
method public void showLoadingOverlay()
#getExecutor().execute("$wnd.gw_showLoadingOverlay('" + #getRootId() + "')")
#getExecutor().execute("$wnd.gw_showLoadingOverlay('" + #getRootId() + "')", 0)
methodend
rem /**
rem * Show 'no rows' overlay
rem *
rem * <br><b><small>#API</small></b>
rem */
method public void showNoRowsOverlay()
#getExecutor().execute("$wnd.gw_showNoRowsOverlay('" + #getRootId() + "')")
#getExecutor().execute("$wnd.gw_showNoRowsOverlay('" + #getRootId() + "')", 0)
methodend
rem /**
rem * Clear all overlays
rem *
rem * <br><b><small>#API</small></b>
rem */
method public void hideOverlay()
#getExecutor().execute("$wnd.gw_hideOverlay('" + #getRootId() + "')")
#getExecutor().execute("$wnd.gw_hideOverlay('" + #getRootId() + "')", 0)
methodend
rem /**
rem * Destroy the grid
Expand Down

0 comments on commit b1fdb59

Please sign in to comment.