Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
16answers
11k views

How can you customize the numbers in an ordered list?

How can I left-align the numbers in an ordered list? 1. an item // skip some items for brevity 9. another item 10. notice the 1 is under the 9, and the item contents also line up Change the ...
12
votes
7answers
2k views

Ordered list showing all zeros in IE9

I have an <ol> (ordered list) and in FF, Safari, Chrome it is rendered correctly. However in IE9 it is showing all zeros. It is not a spacing/padding issue because I am able to see the zeros. ...
12
votes
3answers
5k views

Is it possible to specify a starting number for an ordered list with css?

I have a ordered list where I would like the initial number to be 6. I found that this was supported (now deprecated) in HTML 4.01. In this specification they say that you can specify the starting ...
8
votes
5answers
1k views

Parallel.ForEach Ordered Execution

I am trying to execute parallel fuctions on an list of objects using the new 4.0 Parallel.ForEach function. This is a very long maintenance process. I would like to make it execute in the order of ...
7
votes
4answers
1k views

HTML + CSS: Ordered List without the Period?

I think the answer to this question is no... but does anyone know of a an HTML/CSS way to create an ordered list without a period after the numbers? Or, alternatively, to specify the separator ...
5
votes
4answers
1k views

HTML + CSS: Numbered list with numbers inside of circles

I'm trying to create an ordered list in CSS + HTML that looks like this: I can't for the life of me figure out how to do this. I've tried using list-image but then the numerals don't appear. I tried ...
5
votes
1answer
172 views

Data structure for an ordered set with many defined subsets; retrieve subsets in same order

I'm looking for an efficient way of storing an ordered list/set of items where: The order of items in the master set changes rapidly (subsets maintain the master set's order) Many subsets can be ...
5
votes
3answers
301 views

Best way to create a “reversed” list in Python?

In Python, what is the best way to create a new list whose items are the same as those of some other list, but in reverse order? (I don't want to modify the existing list in place.) Here is one ...
5
votes
5answers
344 views

C: Creation of ordered list by checking 2 values

I'm new to C so be patient with me if you see some really newbie error in my code! As part of a homework, I need to create an ordered list in order to store some data. What I've done so far is to ...
5
votes
7answers
578 views

How to check if a list is ordered?

I am doing some unit tests and I want to know if there's any way to test if a list is ordered by a property of the objects it contains. Right now I am doing it this way but I don't like it, I want a ...
4
votes
5answers
227 views

ordered doubly linked list search

suppose we have doubly linked list ordered by integer value: struct ListItem { int value; ListItem *prev, *next; }; struct List { ListItem *first, *last; int count; }; can we use faster ...
4
votes
3answers
328 views

C++ : Maintaining an Ordered collection of objects

I have the following requirements for a collection of objects: Dynamic size (in theory unlimited, but in practice a couple of thousand should be more than enough) Ordered, but allowing reorder and ...
4
votes
1answer
1k views

Most appropriate data structure for an ordered list in an RDBMS?

I'm storing an ordered list of several million items in a MySQL database. Reasonably often, items need to be added or removed from the list; equally often, the position within the list of an item must ...
4
votes
4answers
8k views

How can I add a list item in order using jQuery?

Does anyone know how to add an item to a list but do it so it's ordered alphabetically using jQuery? I've got the following code that just adds an item from a dropdown to the end of the list: ...
3
votes
1answer
53 views

Problem styling list items

I'm trying to style an ordered list that seemed quite simple but apparently is harder than I thought, what I need to do is to separate every item with a white border below, the problem is the the ...
3
votes
4answers
157 views

Adding parenthasis in HTML ordered list

I am working on an iPhone application in which I am loading HTML content in UIWebView. I want to create a list like this format: (1) item1 (2) item2 (3) item3
3
votes
1answer
85 views

Wrapping a tag inside a tag in TinyMCE

I'm trying to figure out how I can wrap another HTML tag within when a users click on the ordered list button in TinyMCE. Example: <ol> <li>something</li> </ol> Will ...
3
votes
1answer
392 views

How to maintain an ordered table with Core Data (or SQL) with insertions/deletions?

This question is in the context of Core Data, but if I am not mistaken, it applies equally well to a more general SQL case. I want to maintain an ordered table using Core Data, with the possibility ...
3
votes
5answers
589 views

How do I sort a collection of Lists in lexicographic order in Scala?

If A has the Ordered[A] trait, I'd like to be able to have code that works like this val collection: List[List[A]] = ... // construct a list of lists of As val sorted = collection sort { _ < _ } ...
3
votes
2answers
118 views

How to save an order (permutation) in an sql db

I have a tree structure in an sql table like so: CREATE TABLE containers ( container_id serial NOT NULL PRIMARY KEY, parent integer REFERENCES containers (container_id)) Now i want to define an ...
3
votes
2answers
2k views

a C++ hash map that preserves the order of insertion

I have the following code: #include <iostream> #include "boost/unordered_map.hpp" using namespace std; using namespace boost; int main() { typedef unordered_map<int, int> Map; ...
3
votes
2answers
372 views

Storing Ordered Child Documents/Values in CouchDB/JSON?

What is the best way to store ordered documents in CouchDB? Say I have 100 articles and I want to order them by just visibly placing them in an order I like, or I have 10,000 images and I want them ...
3
votes
3answers
2k views

Ordered Lists <OL>, Starting index with XHTML Strict?

Is there a way to start an ordered list from a specific index while following XHTML Strict? Using start=n works well, but has been deprecated… The intended purpose is to resume the index with ...
2
votes
1answer
94 views

Correct way to reordering items in a list (nhibernate)

What is the correct way to reorder a list when using NHibernate? This is my list: private IList<MediaItem> media = new List<MediaItem>(); public virtual IList<MediaItem> ...
2
votes
2answers
391 views

How can I prefix ordered list item numbers with a static string using CSS?

I want this HTML... <ol style="list-style:decimal;"> <li>Apples</li> <li>Oranges</li> </ol> ...to render like this Q1. Apples Q2. Oranges In other words, I ...
2
votes
2answers
661 views

how can i show numbers on an inline ordered list?

I have a list.. <ol> <li>Login</li> <li>Address</li> <li>Shipping</li> </ol> It shows the decimal numbers fine, but when I set the ...
2
votes
1answer
467 views

Adding border-bottom to an li in an ol

Trying to add a border-bottom: 1px solid #ccc to an li in an ol. I want the number of the ol to be inside the border not outside. Right now the border it not below the numbers. I have these classes ...
2
votes
4answers
115 views

How can be printed ordered list from number 6 with html only?

How can be printed ordered list from number 6 with html only (if its not possible how should be done)? Example: 6.home 7.place 8.etc.. 9.etc.. Thanks
2
votes
3answers
5k views

Float image right within li of ol, text left, works in Chrome, not IE/FF

I would like to have an ordered list that has the text on the left and an image for each li within it on the right of the li. So I floated the image to the right and it puts the image correctly on the ...
2
votes
4answers
2k views

Stop text wrapping in lists

I have an ordered list: <ol> <li>They used to bring concerns about their children or their marriages. But increasingly parishioners are also telling Glen VanderKloot, a Lutheran minister ...
1
vote
2answers
37 views

Get the words from a string with jQuery regular expression

The content is brought dynamically so I need to be able to put in a ordered list on the fly.. Currently, it's bringing in my text like this with the white-spaces: <div class="born">BORN ...
1
vote
1answer
56 views

Python OrderedSet with .index() method

Does anyone know about a fast OrderedSet implementation for python that: remembers insertion order has an index() method (like the one lists offer) All implementations I found are missing the ...
1
vote
0answers
34 views

how to find out which set of lists is the most similar to an original one?

I am trying to get numbers out of some ordered lists, for example a list could be 'A B C D E', and the other: 'C B E A D H G F I J K' So I have some trusted data, which is a set of ordered lists each ...
1
vote
1answer
78 views

Replace ordered list number with prefixed value using CSS and HTML

I am trying to create a style sheet to support the display of a legal document with articles, sections, subsections, etc. I would like the outer most ordered list to display "Article n:" instead of ...
1
vote
0answers
58 views

Ordered List in XML in Android?

I am trying to make an ordered list from XML in a textview. This list would be bulleted and properly justified with subheadings. Unfortunately, it seems that the support for this in the xml is ...
1
vote
1answer
105 views

Decrementing an ordered list

I have a ordered list in an html document, you know, like <ol> <li> item one <li> item two </ol> which displays, obviously, as 1. item one 2. item two I want ...
1
vote
5answers
323 views

Ordered List Index

Is there any way to get the number(index) of a li tag in an ordered list. I'm trying to get the number that is shown on the side (the list numbering). I know that the traditional way is to use an id ...
1
vote
1answer
325 views

Style (only) decimal of ordered list

Is there anyway to bold the decimals in an ordered list using CSS only? The CMS we are using is spitting out li's with no nested p/span/header tag so I can't bold the li and reset the nested tag... ...
1
vote
2answers
675 views

Persisting a hierarchical ordered list (flatfile/sql/nosql)

I want to store hierarchical ordered lists. One example would be nested todo lists. Another example would be XML. It would just be a tree where the children are in a order. For simplicity, entries are ...
1
vote
1answer
120 views

Nested OL digit.digit style list for IE7 (and below) - Javascript solution?

This was hinted at in another post, but I need some assistance with displaying a list like this in IE7 1. a. b. 1.0 2.0 2.1 2. I think I am limited to ...
1
vote
4answers
584 views

JPA: Can I force objects to be persisted to the database in the order that the objects were sent to persist()?

I am creating a billing system which manages a Ledger for each customer. Each Ledger has a list of LedgerEntry's which records each customer transaction. As I was testing this, I noticed that if I ...
1
vote
2answers
812 views

Remove decimal from ordered <ol> list via CSS?

I assume the answer is "no," but I thought I'd throw the question out there to all you CSS ninjas, since it has cropped up before, and when you're digging through code that involves a whole team, the ...
1
vote
1answer
205 views

How do you get the numbers of an ordered list to show on the left in IE?

I have a rows of data in div tags that float left and have widths set. They are inside li tags. Everything works fine in chrome and FF, but in IE8 the numbers show up in the middle of my rows, right ...
1
vote
2answers
101 views

Regular expression for matching a variety of types of numbered lists

I'd like to create a (PCRE) regular expression to match all commonly used numbered lists, and I'd like to share my thoughts and gather input on way to do this. I've defined 'lists' as the set of ...
1
vote
1answer
231 views

Number LI's using jQuery

I have an ordered list, but I want to number is manually in a separate span tag than use the default list-style: decimal; <ol> <li><span>1</span> item 1</li> ...
0
votes
4answers
32 views

What is the difference between an ordered list and an array from a theoretical perspective?

Is there any difference, or are they two terms for the same thing?
0
votes
0answers
14 views

Ordered list inner floats not behaving in Chrome

I have an ordered list that displays weirdly in Chrome. I have tried every option I know but nothing seems to fix it. It looks fine in Firefox. ...
0
votes
0answers
36 views

Numbers in a ordered list appear on the right in IE8

The numbers of the ordered list appear on the right only in IE 8. CSS snippet for the ordered list, ol.results { clear:both; margin:0 1em 1em; padding-left:1em; } ol.results ...
0
votes
2answers
58 views

Tabular ordered list

I need to make an ordered list with tabular content that renders something like this: 1. Winner 00:00 2. Runner up 00:00 3. Looser 00:00 Now, I've managed to do this using the ...
0
votes
1answer
51 views

Manipulate the position of the number in an ordered list

I have the following HTML <h1> Dummy title here</h1> <ol> <li> <p>Dummy paragraph here with lots of lines...</p> </li> <li> <p>Another dummy ...

1 2