Joe Moses

Results 6 comments of Joe Moses

Thanks @bodograumann that helps. `bindFirestoreRef` is something that is injected into the context by `firestoreAction`, so its not a parameter to `mymodule.bindTodos()` In regular actions, the first param is the...

Here is an action without the decorator which might work if the context was available (`this.context`) in the action. ```ts @Action bindTodos () { return (firestoreAction(({ bindFirestoreRef }) => {...

Did you get this figured out, or do you still need some help?

You probably need to stop event propagation. If you used a jQuery event handler, you could call `event.stopPropagation()`. Otherwise, check out [how to stop event propagation with inline onclick attribute](http://stackoverflow.com/questions/387736/how-to-stop-event-propagation-with-inline-onclick-attribute).

URL encode the desired `{` and `}` into `%7B` and `%7D` `[Get("/api/orders/{request.OrderId}/files/%7B{request.FileId}%7D")]`

The `sort` and `sort_by:'prop'` filters seem to be for rendering a single concatenated value, not for looping and rendering each item with additional markup. Here are a few examples. ```...