-
i have a cal structure (cal > schedule > agenda > event) and wants to show it in columns. Simplified snippet:
PS: has Fore an 'index-changed' event (as betterforms)? I tried 'path-mutated' but it does not work for that purpose. regards |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 4 replies
-
@pherk thanks for the report. It would however be nice if you could provide a complete page as otherwise we need to prepare mockup data first to investigate it. We will however look into it. |
Beta Was this translation helpful? Give feedback.
-
To be more precise this has to do with the fact that Fore does not track pure UI dependencies - here the repeat refs are dependant but that isn't picked up by the Dependency Graph with handles only pure data dependencies established via fx-binds. You can however update the other repeat with explicitly refreshing the other repeat - we'll prepare the right snippet to make that work.... |
Beta Was this translation helpful? Give feedback.
-
I think the main issue here is that the index function specifically has no way to be reran. I'd say that because of this, an index change in a repeat should always cause a full update. Annoying, but I'd choose the performance hit over these strange bugs |
Beta Was this translation helpful? Give feedback.
-
thank you both for your insights /inputs. |
Beta Was this translation helpful? Give feedback.
thank you both for your insights /inputs.
I have grep'ed after the specific events for fx-repeat in source and saw their params (btw not yet in Fore Documentation - Events#Repeat Events ).
Luckily I now have three solutions..