diff --git a/_listview.html b/_listview.html index 016cf536..bcbf463e 100644 --- a/_listview.html +++ b/_listview.html @@ -169,6 +169,49 @@ +

Same as above with OL numbering:

+
    +
  1. This morning 3
  2. +
  3. +

    Todd Parker

    +

    You've been invited to a meeting at Filament Group in Boston, MA

    +

    Hey Scott, if you're available at 10am tomorrow, we've got a meeting with the jQuery team.

    +

    6:24AM

    +
  4. +
  5. +

    Todd Parker

    +

    You've been invited to a meeting at Filament Group in Boston, MA

    +

    Hey Scott, if you're available at 10am tomorrow, we've got a meeting with the jQuery team.

    +

    6:24AM

    +
  6. +
  7. +

    Todd Parker

    +

    You've been invited to a meeting at Filament Group in Boston, MA

    +

    Hey Scott, if you're available at 10am tomorrow, we've got a meeting with the jQuery team.

    +

    6:24AM

    +
  8. +
  9. This afternoon 1
  10. +
  11. +

    Todd Parker

    +

    Meeting reminder

    +

    Hey Scott, if you're available at 10am tomorrow, we've got a meeting with the jQuery team.

    +

    1:15PM

    +
  12. +
  13. +

    Todd Parker

    +

    Meeting reminder

    +

    Hey Scott, if you're available at 10am tomorrow, we've got a meeting with the jQuery team.

    +

    1:15PM

    +
  14. +
  15. This evening 1
  16. +
  17. +

    Todd Parker

    +

    Just checking

    +

    Hey Scott, if you're available at 10am tomorrow, we've got a meeting with the jQuery team.

    +

    7:46PM

    +
  18. +
+

Basic Listview w/ thumbnails:

diff --git a/css/structure.css b/css/structure.css index 211e86d0..93d8c7ff 100644 --- a/css/structure.css +++ b/css/structure.css @@ -184,7 +184,8 @@ div.ui-checkbox, div.ui-radio { position:relative; margin: .2em 0 .5em; } .ui-listview, .ui-li { list-style:none; padding:0; zoom: 1; } .ui-li { display: block; margin:0; position: relative; overflow: hidden; text-align: left; border-width: 0; border-top-width: 1px; } .ui-li-grouping { padding: .5em 15px; font-size: 13px; font-weight: bold; counter-reset: listnumbering; } -ol.ui-listview .ui-link-inherit:before { font-size: .8em; display: inline-block; padding-right: .3em; font-weight: normal;counter-increment: listnumbering; content: counter(listnumbering) ". "; } +ol.ui-listview .ui-link-inherit:before, .ui-li-dec { font-size: .8em; display: inline-block; padding-right: .3em; font-weight: normal;counter-increment: listnumbering; content: counter(listnumbering) ". "; } +ol.ui-listview .ui-li-jsnumbering:before { content: "" !important; } /* to avoid chance of duplication */ .ui-listview-inset .ui-li { border-right-width: 1px; border-left-width: 1px; } .ui-li:last-child { border-bottom-width: 1px; } .ui-li .ui-btn-inner { display: block; position: relative; padding: .5em 65px .5em 15px; } diff --git a/js/jQuery.listview.js b/js/jQuery.listview.js index 5dfcd1bb..13e60f3d 100644 --- a/js/jQuery.listview.js +++ b/js/jQuery.listview.js @@ -158,13 +158,22 @@ $.fn.listview = function( options ) { .find( "p,ul,dl" ) .addClass( "ui-li-desc" ); - /* auto-numbering for OL elements - we could add a $.support.cssBefore test - // to see if this JS generated numbering is necessary... - if($this.is('ol')){ - $this.find('li').each(function( i ){ - $(this).find('.ui-link-inherit:first').prepend(''); + // JS fallback for auto-numbering for OL elements + if( !$.support.cssPseudoElement && $this.is('ol') ){ + var counter = 1; + $this.find('li').each(function(){ + if( $(this).is('.ui-li-grouping') ){ + //reset counter when a grouping heading is encountered + counter = 1; + } + else { + $(this) + .find('.ui-link-inherit:first') + .addClass('ui-li-jsnumbering') + .prepend('' + counter++ + '. '); + } }); - } */ + } //tapping the whole LI triggers ajaxClick on the first link $this.find( "li:has(a)" ).live( "tap", function() {