-
-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Description
Always Lazy Loading
To enforce that a CBWIRE component is always lazy-loaded, you can add lazy=true to the component class:
// ./wires/UserActivity.cfc
component extends="cbwire.models.Component" {
lazy = true;
// Other component methods...
}
If you want to override this default lazy-loading behavior, set the lazy parameter to false:
#wire( name="UserActivity", lazy=false )#
Copilot
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request