I would like to ask You how to add item to collection but beetween other items. For example. I have a todoItem { name: todoItem2, date: 2012-11-24}, and I want to add it beetween other items in collection (beetween todoItem1 and todoItem3 not after todoItem3).
Now I add items looks like:
items.push(form_Data);
this.collection.add(new itemM(form_Data));
Is any simple way to do that?