473,734 Members | 2,647 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

sorting content of table at client side

Hello,

Fiest of all let me thank this group for so quick in responding to any
postings.
I am using a javascript based utility from a site to sort the columns
of the table. But, for some strange reason it is not working on colmuns
containg checkboxes, text-boxes (or, any user input fileds). For
checkbox column, the values are lost when clicked on the column title
to sort.
I tried a lot to modify but couldnt achive what I wanted.

I have pasted the code of 'SortTable.js' and the HTML file
'SimpleSample.h tml'

Please help me out.

Thanks a ton,
CG

FILES :

1. SortTable.js
//----------------
addEvent(window , "load", sortables_init) ;

var SORT_COLUMN_IND EX;
function sortables_init( ) {
// Find all tables with class sortable and make them sortable
if (!document.getE lementsByTagNam e) return;
tbls = document.getEle mentsByTagName( "table");
for (ti=0;ti<tbls.l ength;ti++) {
thisTbl = tbls[ti];
if (((' '+thisTbl.class Name+' ').indexOf("sor table") != -1) &&
(thisTbl.id)) {
//initTable(thisT bl.id);
ts_makeSortable (thisTbl);
}
}
}

function ts_makeSortable (table) {
if (table.rows && table.rows.leng th > 0) {
var firstRow = table.rows[0];
}
if (!firstRow) return;

// We have a first row: assume it's the header, and make its contents
clickable links
for (var i=0;i<firstRow. cells.length;i+ +) {
var cell = firstRow.cells[i];
var txt = ts_getInnerText (cell);
cell.innerHTML = '<a href="#" class="sorthead er"
onclick="ts_res ortTable(this); return false;">'+txt+' <span
class="sortarro w">&nbsp;&nbsp; &nbsp;</span></a>';
}
}

function ts_getInnerText (el) {
if (typeof el == "string") return el;
if (typeof el == "undefined" ) { return el };
if (el.innerText) return el.innerText; //Not needed but it is faster
var str = "";

var cs = el.childNodes;
var l = cs.length;
for (var i = 0; i < l; i++) {
switch (cs[i].nodeType) {
case 1: //ELEMENT_NODE
str += ts_getInnerText (cs[i]);
break;
case 3: //TEXT_NODE
str += cs[i].nodeValue;
break;
}
}
return str;
}

function ts_resortTable( lnk) {
// get the span
var span;
for (var ci=0;ci<lnk.chi ldNodes.length; ci++) {
if (lnk.childNodes[ci].tagName &&
lnk.childNodes[ci].tagName.toLowe rCase() == 'span') span =
lnk.childNodes[ci];
}
var spantext = ts_getInnerText (span);
var td = lnk.parentNode;
var column = td.cellIndex;
var table = getParent(td,'T ABLE');

// Work out a type for the column
if (table.rows.len gth <= 1) return;
var itm = ts_getInnerText (table.rows[1].cells[column]);
sortfn = ts_sort_caseins ensitive;
if (itm.match(/^\d\d[\/-]\d\d[\/-]\d\d\d\d$/)) sortfn = ts_sort_date;
if (itm.match(/^\d\d[\/-]\d\d[\/-]\d\d$/)) sortfn = ts_sort_date;
if (itm.match(/^[£$]/)) sortfn = ts_sort_currenc y;
if (itm.match(/^[\d\.]+$/)) sortfn = ts_sort_numeric ;
SORT_COLUMN_IND EX = column;
var firstRow = new Array();
var newRows = new Array();
for (i=0;i<table.ro ws[0].length;i++) { firstRow[i] =
table.rows[0][i]; }
for (j=1;j<table.ro ws.length;j++) { newRows[j-1] = table.rows[j]; }

newRows.sort(so rtfn);
//alert(s);
if (span.getAttrib ute("sortdir") == 'down') {
ARROW = '&nbsp;&nbsp;&u arr;';
newRows.reverse ();
span.setAttribu te('sortdir','u p');
} else {
ARROW = '&nbsp;&nbsp;&d arr;';
span.setAttribu te('sortdir','d own');
}

// We appendChild rows that already exist to the tbody, so it moves
them rather than creating new ones
// don't do sortbottom rows
for (i=0;i<newRows. length;i++) {

if (!newRows[i].className || (newRows[i].className &&
(newRows[i].className.inde xOf('sortbottom ') == -1)))
table.tBodies[0].appendChild(ne wRows[i]);
}
// do sortbottom rows only
for (i=0;i<newRows. length;i++) {

if (newRows[i].className &&
(newRows[i].className.inde xOf('sortbottom ') != -1))
table.tBodies[0].appendChild(ne wRows[i]);

}

// Delete any other arrows there may be showing
var allspans = document.getEle mentsByTagName( "span");
for (var ci=0;ci<allspan s.length;ci++) {
if (allspans[ci].className == 'sortarrow') {
if (getParent(alls pans[ci],"table") == getParent(lnk," table")) { //
in the same table as us?
allspans[ci].innerHTML = '&nbsp;&nbsp;&n bsp;';
}
}
}

span.innerHTML = ARROW;
}

function getParent(el, pTagName) {
if (el == null) return null;
else if (el.nodeType == 1 && el.tagName.toLo werCase() ==
pTagName.toLowe rCase()) // Gecko bug, supposed to be uppercase
return el;
else
return getParent(el.pa rentNode, pTagName);
}
function ts_sort_date(a, b) {
// y2k notes: two digit years less than 50 are treated as 20XX,
greater than 50 are treated as 19XX
aa = ts_getInnerText (a.cells[SORT_COLUMN_IND EX]);
bb = ts_getInnerText (b.cells[SORT_COLUMN_IND EX]);
if (aa.length == 10) {
dt1 = aa.substr(6,4)+ aa.substr(3,2)+ aa.substr(0,2);
} else {
yr = aa.substr(6,2);
if (parseInt(yr) < 50) { yr = '20'+yr; } else { yr = '19'+yr; }
dt1 = yr+aa.substr(3, 2)+aa.substr(0, 2);
}
if (bb.length == 10) {
dt2 = bb.substr(6,4)+ bb.substr(3,2)+ bb.substr(0,2);
} else {
yr = bb.substr(6,2);
if (parseInt(yr) < 50) { yr = '20'+yr; } else { yr = '19'+yr; }
dt2 = yr+bb.substr(3, 2)+bb.substr(0, 2);
}
if (dt1==dt2) return 0;
if (dt1<dt2) return -1;
return 1;
}

function ts_sort_currenc y(a,b) {
aa =
ts_getInnerText (a.cells[SORT_COLUMN_IND EX]).replace(/[^0-9.]/g,'');
bb =
ts_getInnerText (b.cells[SORT_COLUMN_IND EX]).replace(/[^0-9.]/g,'');
return parseFloat(aa) - parseFloat(bb);
}

function ts_sort_numeric (a,b) {
aa = parseFloat(ts_g etInnerText(a.c ells[SORT_COLUMN_IND EX]));
if (isNaN(aa)) aa = 0;
bb = parseFloat(ts_g etInnerText(b.c ells[SORT_COLUMN_IND EX]));
if (isNaN(bb)) bb = 0;
return aa-bb;
}

function ts_sort_caseins ensitive(a,b) {
aa = ts_getInnerText (a.cells[SORT_COLUMN_IND EX]).toLowerCase() ;
bb = ts_getInnerText (b.cells[SORT_COLUMN_IND EX]).toLowerCase() ;
if (aa==bb) return 0;
if (aa<bb) return -1;
return 1;
}

function ts_sort_default (a,b) {
aa = ts_getInnerText (a.cells[SORT_COLUMN_IND EX]);
bb = ts_getInnerText (b.cells[SORT_COLUMN_IND EX]);
if (aa==bb) return 0;
if (aa<bb) return -1;
return 1;
}
function addEvent(elm, evType, fn, useCapture)
// addEvent and removeEvent
// cross-browser event handling for IE5+, NS6 and Mozilla
// By Scott Andrew
{
if (elm.addEventLi stener){
elm.addEventLis tener(evType, fn, useCapture);
return true;
} else if (elm.attachEven t){
var r = elm.attachEvent ("on"+evType , fn);
return r;
} else {
alert("Handler could not be removed");
}
}
//-------------------
---------------------------- SimpleSample.ht ml ------------

<html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml">
<IFRAME
STYLE="display: none;position:a bsolute;width:1 49;height:185;z-index=100"

ID="CalFrame" MARGINHEIGHT=0 MARGINWIDTH=0 FRAMEBORDER=0
SCROLLING=NO SRC="Calendar.j sp">
</IFRAME>
<head>
<link rel="StyleSheet " type="text/css"
href="resources/css/Project.css">
<SCRIPT language=JavaSc ript src="SortTable. js"></SCRIPT>
</head>
<body >
<div id="scriptDiv"> </div>


<form name="sPPerProd uctForm" id="newServiceP roductForm" method="POST"
action="/PriceList/goToNewSPPerPro ductAction.do">

<table border=1 class="sortable " id="prodGridTbl ">
<tr class=TABLEROWH EADING>
<th class=TEXTLABEL ><span>Produc t Number</span></th>
<th class=TEXTLABEL ><span>Produc t
Description</span></th>
<th class=TEXTLABEL ><span>Associat e</span></th>
<th class=TEXTLABEL ><span>Name</span></th>
</tr>
<input type="hidden" id="sortTable" value="true">

<input type="hidden"
name="{actionFo rm.serviceProdu ctAssociation[0].productId}"
value="110261"/>
<td><span>C5340 A</span></td>

<td><span>Digit al Camera</span></td>
<td align="center"> <input type="hidden"
name="wlw-checkbox_key:{a ctionForm.servi ceProductAssoci ation[0].isAssociated}O ldValue"
value="false" /><input type="checkbox"
name="wlw-checkbox_key:{a ctionForm.servi ceProductAssoci ation[0].isAssociated}"
checked="true" /></td>
<td><input type=text name="t1" value=""></td>
</tr>
<input type="hidden" id="sortTable" value="true">

<input type="hidden"
name="{actionFo rm.serviceProdu ctAssociation[1].productId}"
value="1229183"/>
<td><span>EC534 AA</span></td>
<td><span>Pavil ion t3131.se</span></td>
<td align="center"> <input type="hidden"
name="wlw-checkbox_key:{a ctionForm.servi ceProductAssoci ation[1].isAssociated}O ldValue"
value="false" /><input type="checkbox"
name="wlw-checkbox_key:{a ctionForm.servi ceProductAssoci ation[1].isAssociated}"
/></td>
<td><input type=text name="t2" value="aaa"></td>

</tr>
<input type="hidden" id="sortTable" value="true">

<input type="hidden"
name="{actionFo rm.serviceProdu ctAssociation[1].productId}"
value="1229183"/>
<td><span>EC534 AA</span></td>

<td><span>Pavil ion t3131.se</span></td>
<td align="center"> <input type="hidden"
name="wlw-checkbox_key:{a ctionForm.servi ceProductAssoci ation[1].isAssociated}O ldValue"
value="false" /><input type="checkbox"
name="wlw-checkbox_key:{a ctionForm.servi ceProductAssoci ation[1].isAssociated}"
checked="true" /></td>
<td><input type=text name="t3" value=""></td>

</tr>

<input type="hidden" id="sortTable" value="true">

<input type="hidden"
name="{actionFo rm.serviceProdu ctAssociation[1].productId}"
value="1229183"/>
<td><span>EC534 AA</span></td>

<td><span>Pavil ion t3131.se</span></td>
<td align="center"> <input type="hidden"
name="wlw-checkbox_key:{a ctionForm.servi ceProductAssoci ation[1].isAssociated}O ldValue"
value="false" /><input type="checkbox"
name="wlw-checkbox_key:{a ctionForm.servi ceProductAssoci ation[1].isAssociated}"
/></td>
<td><input type=text name="t4" value="bbb"></td>

</tr>

</table>

</form>
</body></html>

Oct 28 '05 #1
1 2649
cotton_gear wrote:
Hello,

Fiest of all let me thank this group for so quick in responding to any
postings.
I am using a javascript based utility from a site to sort the columns
of the table. But, for some strange reason it is not working on colmuns
containg checkboxes, text-boxes (or, any user input fileds). For
checkbox column, the values are lost when clicked on the column title
to sort.
I tried a lot to modify but couldnt achive what I wanted.


I think what you want is at:
http://www.eggheadcafe.com/articles/20021022.asp

The Morris stuff rocks.
Good luck.
Ray
Oct 29 '05 #2

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

Similar topics

9
1651
by: SASRS | last post by:
Here is my code. I am trying to see if I can put a %@ LANGUAGE="VBSCRIPT" %> <% FieldA = Request.QueryString("A") FieldB = Request.QueryString("B") FieldC = Request.QueryString("C") response.write("<TABLE ALIGN=CENTER>")
12
5674
by: CJM | last post by:
How can I dynamically sort the results from a Stored Procedure? Or more importantly, what is the fastest and most efficient way? I know I can do the sorting within the recordset in ASP, but AFAIK this is not the most efficient method. Ideally, I'd like to pass a parameter to the SP to indicate sorting field order... How do you guys go about this?
2
1900
by: Alan Searle | last post by:
I find that I can display structured data very nicely using XML with an XSL template. As an extra 'goodie', I would like to give users the ability to sort that data (for example with a button above a particular column). What I need to know now is whether this is possible with XML/XSL? Or do I need to resort to a programming language (maybe JScript?). So far I have worked with the XML and XSL split into separate documents. However, I...
1
2352
by: Jeremy | last post by:
I want my gird to sort only the items on the current page when I click on a column header. I wrote a little test app, but when I sort it pulls in items from other pages and places them on the current page. i.e. If I have: IntegerValue StringValue CurrencyValue 0 Item 0 0 1 Item 1 1.23
1
3528
by: jmdolinger | last post by:
Hi all, I'm a newbie to Atlas (and recently ASP.NET) after coming from a long Java background, also have done quite a bit with an Ajax.NET/ASP.NET 1.1 project, but it was basically all javascript, nothing really having to do with ASP.NET... I'm attempting to put together an application that consists of several GridView controls each bound to some xml data. Each table exists in its own update panel. The two effects I'm going for are:
6
2494
by: bcochofel | last post by:
I'm using xsl to list an xml file that contains something like: sites, tag and weight. I'm listing this in a table with the following titles: | URL | TAG | WEIGHT (each title his a link) What I want is when someone clicks a title chooses the sorting option, if this is the actual sorting option then reverses the order. Can I do this? How?
2
2709
by: Simon | last post by:
Hi, I have a table I am populating with data from a DB, and have it sortable on the client side. When the table exceeds around 300 rows, I start running into problems with rendering and sorting it. I started out using Prototype to help with the sorting, but it appears that this results in a lot of calls to _getElementsByXPath, which are taking up a large percentage of the rendering time. I believe this call is occurring as the DOM is...
4
1253
by: Dan Grigore | last post by:
I am creating a table cell by cell (create the table, add columns, create row, add cells to the row) in which I want to add the capability for users to sort ASC and DESC by column header. Can anyone give me an idea or an example of how can I do this in code ? Thank you. Dan
5
4954
by: jrod11 | last post by:
hi, I found a jquery html table sorting code i have implemented. I am trying to figure out how to edit how many colums there are, but every time i remove code that I think controls how many colums there are, it crashes. There are currently 6 columns, and I only want 4. How do I remove the last two (discount and date)? Here is a link: http://www.jaredmoore.com/tablesorter/docs/salestable.html Here is some jquery js that I think...
0
8946
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8776
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9449
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9310
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9182
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
4550
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4809
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2724
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2180
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.