Mapping the result from a service to a grid (etc) is implemented nicely.
My app is going to be 100% off-line (exceptional huh!).
The main things in there are going to be two variables (either arrays-of-similar-objects or objects-that-contain-several-similar-objects).
Is there a way to use service like mapping on such structures?
That way, a new version of the app with only updated variables would be all that is needed to extend the functionality.
Now, I have to put every item manually in predefined grids. When there is a new item (= new app version), I'd have to change all the grids, instead of just one variable... (And how do I loop over a grid? looping over an array or the objects in an object is easy)
I have the feeling that "Create New Service" / "Generic (custom JavaScript implementation)" is the start of the right path to the solution (possibly involving using the "Echo" system always) but I can not find any example about that. What does the event look like to call such a service? What needs to be in the "Generic JavaScript" code apart from my variable?