3
votes
7answers
125 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 …
2
votes
2answers
163 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;
…
2
votes
2answers
40 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 …
0
votes
1answer
59 views
HTML Horizontal Ordered Lists with Numbering
I'm using an ordered list in order to get numbering, which works perfectly fine when the list is vertical. However, once I make it horizontal, the numbering disappears.
The display attribute in the …
1
vote
1answer
65 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
3answers
666 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:
…
1
vote
3answers
790 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 …
3
votes
3answers
522 views
Is it possible to specify a starting number for an ordered list with css?
Hello, 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 …
3
votes
1answer
186 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 …
2
votes
4answers
603 views
Stop text wrapping in lists
Hi,
I have a list:
They used to bring concerns about their children or their marriages. But increasingly parishioners are also telling Glen VanderKloot, a Lutheran minister in Springfield, Ill., …
3
votes
3answers
526 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 …
