Are there any requirements (e.g. dependencies, initializations, Model-functions, etc.) to do this in the latest build:
Otherwise my model-view-binding-automagic works like a charm.
- //In EJS View
- //...
- <tr <% = data[i] %>>
- <td <%= data[i] %>>
- <%= data.[i].txt %>
- </td>
- </tr>
- // In Controller
- "tr click" : function(el)
- {
- console.log(el.model()); // returns undefined
- }
- "td click" : function(el)
- {
- console.log(el.model()); // returns undefined
- }