http://jsfiddle.net/ACzaJ/7/ This fiddle has the following problems:
When you click: 'clear completed button' you will get the error:
Uncaught Error: assertion failed: Target <Ember.View:ember116> does not have action clearCompletedTodos And this line generates that error: <button {{action clearCompletedTodos target="Todos.todosController" }} > Clear Completed Todos </button>I am experimenting with two different submit functions, comment one out per time to try the other:
2a. When i click 'add' button, when using the first submit function by commenting out the second one, no new todo is added and no error is theown. That is nothing happends.
2b. When i comment out the first submit function and use the second submit function, clicking add, throws the error below:
Uncaught TypeError: Cannot call method 'createTodo' of null.
How can i make this todo app, run and add and clear todos. Thanks
UPDATE
Question 1 is now resolved by @pauldechov. But question 2a and 2b is unresolved. The jsfiddle link has been updated too. Thanks @pauldechov.
UPDATE 2
The solution provided by Peter here later had issues and Peter resolved the new issues here:
Previously working emberjs1.0-pre form on jsfiddle returns "error": "Please use POST request"