473,394 Members | 1,734 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Please help

Hi,

I am very new to Javascript, and have some problems with the code for
sorting. My question is in the following web page:

www.pinyinology.com/sort1.html

Thanks for help.

Juli Zhang

Jul 23 '05 #1
4 1193
du*******@yahoo.com wrote:
I am very new to Javascript, and have some problems with the code for
sorting. My question is in the following web page: [...]


Untested quickhack for IDs matching /\D+-\d+/:

function sortByID(a, b) {
var A = a["ID"].toLowerCase().replace(/\d/g,""),
B = b["ID"].toLowerCase().replace(/\d/g,""),
C = a["ID"].replace(/\D/g,""),
D = b["ID"].replace(/\D/g,"");
if (A < B) return -1;
else if (A > B) return 1;
else if (C - D < 0) return -1;
else if (C - D > 0) return 1;
else return 0;
}

In addition to that, you should test if a function exists that
is named like the value you get from the location's search before
you call it:

var sortCriteria = location.search.substring(1);
if (sortCriteria && typeof window[sortCriteria] == "function")
kidney.sort(window[sortCriteria]);

ciao, dhgm
Jul 23 '05 #2
Dear Dietmar Meier:

Thank you very, very much. The code works perfectly. It is now
sorting correctly:

www.pinyinology.com/sort2.html

Juli Zhang

Jul 23 '05 #3
du*******@yahoo.com wrote:
The code works perfectly. It is now sorting correctly: [...]


There's still an error in the other function, sortByPinyin().

Replace

var A = a["Pinyin"].toString.toLowerCase();
var B = b["Pinyin"].toString.toLowerCase();

with

var A = a["Pinyin"].toString().toLowerCase();
var B = b["Pinyin"].toString().toLowerCase();

or, since all these values are of type "string" already, simply

var A = a["Pinyin"].toLowerCase();
var B = b["Pinyin"].toLowerCase();

in lines 134 and 135.

ciao, dhgm
Jul 23 '05 #4

Dietmar Meier wrote:
du*******@yahoo.com wrote:
The code works perfectly. It is now sorting correctly: [...]


There's still an error in the other function, sortByPinyin().

Replace

var A = a["Pinyin"].toString.toLowerCase();
var B = b["Pinyin"].toString.toLowerCase();

with

var A = a["Pinyin"].toString().toLowerCase();
var B = b["Pinyin"].toString().toLowerCase();

or, since all these values are of type "string" already, simply

var A = a["Pinyin"].toLowerCase();
var B = b["Pinyin"].toLowerCase();

in lines 134 and 135.

ciao, dhgm


Errors corrected accordingly. Now it is in:

www.pinyinology.com/sortable/sort2.html

Thanks again for expertise and kindness.

Sincerely,
Juli Zhang

Jul 23 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Kurt Watson | last post by:
I’m having a different kind of problem with Hotmail when I sign in it says, "Web Browser Software Limitations Your Current Software Will Limit Your Ability to Use Hotmail You are using a web...
7
by: x muzuo | last post by:
Hi guys, I have got a prob of javascript form validation which just doesnt work with my ASP code. Can any one help me out please. Here is the code: {////<<head> <title>IIBO Submit Page</title>...
7
by: tyler_durden | last post by:
thanks a lot for all your help..I'm really appreciated... with all the help I've been getting in forums I've been able to continue my program and it's almost done, but I'm having a big problem that...
23
by: Jason | last post by:
Hi, I was wondering if any could point me to an example or give me ideas on how to dynamically create a form based on a database table? So, I would have a table designed to tell my application...
13
by: Joner | last post by:
Hello, I'm having trouble with a little programme of mine where I connect to an access database. It seems to connect fine, and disconnect fine, but then after it won't reconnect, I get the error...
1
by: David Van D | last post by:
Hi there, A few weeks until I begin my journey towards a degree in Computer Science at Canterbury University in New Zealand, Anyway the course tutors are going to be teaching us JAVA wth bluej...
1
PEB
by: PEB | last post by:
POSTING GUIDELINES Please follow these guidelines when posting questions Post your question in a relevant forum Do NOT PM questions to individual experts - This is not fair on them and...
0
by: 2Barter.net | last post by:
newsmail@reuters.uk.ed10.net Fwd: Money for New Orleans, AL & GA Inbox Reply Reply to all Forward Print Add 2Barter.net to Contacts list Delete this message Report phishing Show original
6
by: jenipriya | last post by:
Hi all... its very urgent.. please........i m a beginner in oracle.... Anyone please help me wit dese codes i hv tried... and correct the errors... The table structures i hav Employee (EmpID,...
5
by: tabani | last post by:
I wrote the program and its not giving me correct answer can any one help me with that please and specify my mistake please it will be highly appreciable... The error arrives from option 'a' it asks...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.