vote up 4 vote down star
3

I have to maintain a large number of classic ASP pages, many of which have tabular data with no sort capabilities at all. Whatever order the original developer used in the database query is what you're stuck with.

So I want to to tack on some basic sorting to a bunch of these pages, and I'm doing it all client side with javascript. I already have the basic script done to sort a given table on a given column in a given direction, and it works well as long as the table is limited by certain conventions we follow here.

What I want to do for the UI is just indicate sort direction with the caret character ( ^ ) and ... what? Is there a special character that is the direct opposite of a caret? The letter v won't quite cut it. Alternatively, is there another character pairing I can use?

flag

63% accept rate

6 Answers

vote up 19 vote down check

There's ▲ (▲) and ▼ (▼)

link|flag
Nice. Same answer as mine, but better wording. – Mark Ransom Dec 3 '08 at 21:15
Nice reference in the link. – dacracot Dec 3 '08 at 21:18
vote up 4 vote down

I'd use a couple of tiny images. Would look better too.

Alternatively, you can try the Character Map utility that comes with Windows or try looking here.

Another solution I've seen is to use the Wingdings font for symbols. That has a lot fo arrows.

link|flag
vote up 4 vote down

An upside-down circumflex is called a caron, or a háček.

It has an HTML entity in the TADS Latin-2 extension to HTML: ˇ

Or you can use the unicode U+30C.

link|flag
vote up 1 vote down

You might be able to use the black triangles, Unicode values U+25b2 and U+25bc. Or the arrows, U+2191 and U+2193.

link|flag
vote up 1 vote down

There's always a lowercase "v". But seriously, aside from Unicode, all I can find would be \&darr, which looks like ↓.

link|flag
vote up 1 vote down

c# code


    	int i = 0;
    	char c = '↑';
    	i = (int)c;
    	Console.WriteLine(i); // prints 8593

    	int j = 0;
    	char d = '↓';
    	j = (int)d;
    	Console.WriteLine(j); // prints 8595

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.