Skip to Content (Press Enter)
Training
Training
Online Training
Developer Schools
Boot Camps
Certifications
Tech Talks
Documentation
Documentation
Overview
ODC
O11
Forums
Forge
Get Involved
Get Involved
Home
Jobs
Ideas
Members
Mentorship
User Groups
Platform
Platform
ODC
O11
Platforms
OutSystems.com
Personal Edition
Community
Resources
Support
Search in OutSystems
Log in
Get Started
Community
›
Forge
›
Assets list
›
DebounceBlock - Trigger Mode
Login to follow
DebounceBlock - Trigger Mode (ODC)
Stable version
0.1.2
(Compatible with
ODC
)
Uploaded on
27 October 2025
by
SUNGHAN HWANG
Overview
Documentation
Support
DebounceBlock - Trigger Mode (ODC)
Documentation
0.1.2
🧭
Usage Example
1. Create a
local variable
in your screen:
SearchTrigger : Boolean = False
2. Add an Input widget
On Change
event:
Assign:
SearchTrigger = not SearchTrigger
3. Place the
DebounceBlock – Trigger Mode
on your screen.
Enabled = True
DelayMs = 500
TriggerToggle = SearchTrigger
(Optional) Payload = Input_Search.Value
4. In the block’s
OnDebounced
event handler:
Call your action with payload (if needed)
🧩
Parameters
Enabled(Boolean): Enable/disable debounce logic.
DelayMs(Integer): Delay (ms) before executing the action.
TriggerToggle(Boolean): Toggle variable to start debounce.
Payload(Text, Optional): Optional data to send back to the caller event handler.
Loading
Loading...