cjolif / dojo-todo-app

Dojo ToDo App
Other
28 stars 15 forks source link

Items in the Date list view are bogus, and not grouped by dates entered #10

Closed ccmitchellusa closed 12 years ago

ccmitchellusa commented 12 years ago

Appears to be non-functional, dummy data. We still want to show this view, which is a sorted/grouped list of reminders spanning multiple reminder lists

edchat commented 12 years ago

We talked about removing the Date view, but we can work on creating a model with all of the todo items for the date view.

ccmitchellusa commented 12 years ago

it would be good to show how date/time fields in a model can be bound to the view controls (esp. when combined with localization)

edchat commented 12 years ago

To work with the Date list ( which merges all items into one view), I think we should change the way we are setting up our data, so that we put all of our items into one list, and then for each specific list we would query the store with that parentId. We could make it work the way we have it with a separate store for each list, but it makes much more sense to work off of one store with all the items since we will need to be able to query all of the items for the Date list. Any objections to changing our data to have all of the items in one store?

ccmitchellusa commented 12 years ago

none here

edchat commented 12 years ago

With my latest updates the data in the Date view are now real, but the view still needs work. It would be best to add groups for items with the same date, but until I can do that I will try to make the font on the date smaller. I also need to avoid having the item wrap lines...