WalaWiki content from p1k3.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
1.5 KiB

  1. WareLogging. Ok, so I probably swore undying hatred for this entire technology a time or two. Things occasionally change. And hey, it's not all that bad a ''language'', when you get down to it.
  2. Dumping some stuff here as I look for interface elements to steal:
  3. * QuirksMode: A good explanation of [http://www.quirksmode.org/js/events_tradmod.html the js event handling model].
  4. * http://ajaxian.com/resources/ - resource list
  5. * [http://www.barelyfitz.com/projects/filterlist/ filter select list by regex]
  6. * [http://www.barelyfitz.com/projects/tabber/ tabs example]
  7. * [http://openrecord.org/ openrecord]
  8. * [http://openrico.org/rico/demos.page?demo=rico_drag_and_drop_custom_draggable openrico drag & drop]
  9. * [http://www.aypwip.org/webnote/ nice little floaty note things]
  10. <[Brennen]> Basic problem: Two long lists. Let's say @given is around a hundred items, and @new is closer to 300. Many elements of @new need to be mapped to elements of @given. For our purposes, a single element of @new will always map to either one or no elements of @given.
  11. You get some matching for free - elements with exactly matching names, for example, will be matched before a human looks at the data. Unfortunately for our human, however, this still leaves a bunch of elements to check.
  12. What's a better UI for this than a hundred listboxes, each containing 300 list items?
  13. Looking at DojoToolkit for drag-and-drop stuff...
  14. <[Brennen]> Eventually cobbled together my own widget with a lot of clicking. Will write it up eventually.