-
-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
enhancementNew feature or requestNew feature or request
Milestone
Description
Disabling Request Isolation
By default, CBWIRE handles each lazy-loaded component request separately. However, if you want to bundle all updates into a single network request, disable the isolation behavior using lazyIsolate=false:
// ./wires/UserActivity.cfc
component extends="cbwire.models.Component" {
lazy = true;
lazyIsolate = false;
// Other component methods...
}
Now, if multiple UserActivity components are on the same page, their updates will be grouped into a single network request when the page loads.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request