Awesome widget! Great work! It replaces the use of Post-It Software Notes which i have been using for a long time.
Suggested enhancements (in no particular order): 1. Mapping addresses to Google Maps 2. Time and Alarm Functions for items in the list (A Must!) 3. Using Skype to call numbers on the list 4. Ability to provide Hyperlinks to webpages (Another Must!) 5. Opening mail client to send emails to email address in the list 6. Prioritization of tasks (Color coding, Flags, etc.) (Another Must!) 7. Shortcut keys to add list, item 8. Enable users to size the window for viewing all items of the list at the same time without the scroll bar.
- Store position of big and small windows independently, otherwise small one is useful. Also, minimize/restore with doubleclick on title bar. - Add up/down for task sorting. - Maybe, add colouring of tasks or even lists? - If text is broken into several lines, make sure the text is aligned to left without the checkbox, i.e. the div has text-indent: -X, where X is width of checkbox + width of the space.
Excellent. Keep all items in one list, or multiple lists for really busy people. I like the minimize to compact mode. Can that be made so that the maxized and minimized versions align right rather than align left? The natural place for the widget is to sit at the end of my page bar, looking like just a special tab.
It is possible to enter bad strings that will break the widget. Your "safe" function which is supposed to remove HTML injections will only reduce the first instance of '&','<' and '>'. Later instances will be left untouched. As an example, enter for one of the to-do items the string: <><sub>asdasdf.
Suggested enhancements (in no particular order):
1. Mapping addresses to Google Maps
2. Time and Alarm Functions for items in the list (A Must!)
3. Using Skype to call numbers on the list
4. Ability to provide Hyperlinks to webpages (Another Must!)
5. Opening mail client to send emails to email address in the list
6. Prioritization of tasks (Color coding, Flags, etc.) (Another Must!)
7. Shortcut keys to add list, item
8. Enable users to size the window for viewing all items of the list at the same time without the scroll bar.
Great work nonetheless!
By prady16, # Jul 25, 2006 9:36:19 PM
By NoobSaibot, # Jul 21, 2006 11:24:16 PM
- Store position of big and small windows independently, otherwise small one is useful. Also, minimize/restore with doubleclick on title bar.
- Add up/down for task sorting.
- Maybe, add colouring of tasks or even lists?
- If text is broken into several lines, make sure the text is aligned to left without the checkbox, i.e. the div has text-indent: -X, where X is width of checkbox + width of the space.
By ilyabirman, # Jul 20, 2006 4:52:47 PM
Unfortunately, I have a wish, too.
Entering notes to the tasks would be perfect, if it isn't too much trouble.
By dafalias, # Jul 20, 2006 2:27:15 PM
By Pesala, # Jul 19, 2006 0:05:14 AM
By Ramunas, # Jul 18, 2006 9:34:14 PM
By padule, # Jul 17, 2006 4:28:23 PM
Your "safe" function which is supposed to remove HTML injections will only reduce the first instance of '&','<' and '>'. Later instances will be left untouched. As an example, enter for one of the to-do items the string: <><sub>asdasdf.
To fix this bug you can use this function:
function safe (str) { str = str.replace(/&/g, '&amp;'); str = str.replace(/</g, '&lt;'); str = str.replace(/>/g, '&gt;'); return str; }By Benjamin Joffe, # Jul 17, 2006 4:21:28 PM
looks really nice. And yeahhh, a multiple computer synchronization would be quite perfect - that's what I have ever looked for :-)
cu.
By Schwenx, # Jul 17, 2006 3:49:26 PM
add priorities and it will be nearly perfect.
also, i would make tasks little smaller in height.
By padule, # Jul 17, 2006 10:03:41 AM