You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my running use-case of using a dynamic-tag to dynamically include subcomponents of type template/renderer/widget, I've run into a new problem. I assume resources are client aggregated for widgets based on walking through references.
In this second case, is there some way for me to make sure that the compiled subcomponent is included in the client bundles? I need it's template.marko.js and renderer.js so that I could potentially rerender it's parent on the client.
I could use w-preserve to prevent rerendering in these cases, but given that the tags are dynamic, it's a bit harder to tell which ones should be preserved (unless there would be a way to put w-preserve on a non-widget).
The text was updated successfully, but these errors were encountered:
In my running use-case of using a
dynamic-tag
to dynamically include subcomponents of type template/renderer/widget, I've run into a new problem. I assume resources are client aggregated for widgets based on walking through references.Such as:
But my code actually looks like:
In this second case, is there some way for me to make sure that the compiled subcomponent is included in the client bundles? I need it's
template.marko.js
andrenderer.js
so that I could potentially rerender it's parent on the client.I could use
w-preserve
to prevent rerendering in these cases, but given that the tags are dynamic, it's a bit harder to tell which ones should be preserved (unless there would be a way to putw-preserve
on a non-widget).The text was updated successfully, but these errors were encountered: