JavaScript
  Home arrow JavaScript arrow Page 4 - Sorting the Easy Way
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
Sun Developer Network 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
JAVASCRIPT

Sorting the Easy Way
By: Alf A. Pedersen
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 8
    2004-03-17

    Table of Contents:
  • Sorting the Easy Way
  • The Basic Code
  • We Love INNERHTML!
  • See What We've Done...
  • PHP Sorting

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Sorting the Easy Way - See What We've Done...


    (Page 4 of 5 )

    We have this PHP array $prices that holds the prices of our products.  The key is the product's ID and its value is the price of the product. We sort it numerically, and store its indexes (now ordered by price) in a JS array. If we reverse it, we can store its reverse ordered indexes in another JS array. This is how the JS arrays look:


    var ordPrice=new Array(10,1,9,2,5,4,6,3,7,8);
    var ordPriceInv
    =new Array(8,7,3,6,4,5,2,9,1,10);

    Then we have the JS order function, which accepts one parameter called field. This parameter is the name of the JS array we'll use to reorder the rows of our table. The function obtains the ID of the first product (following the new order), grabs the contents of its row and appends them to the output variable.

    Notice that since the innerHTML property stores only the contents of the TR tags, we must append manually the TR tags to the output variable, and that means setting the ID too. Once we have the HTML code of the new table, we just send it to the innerHTML property of the content div, which displays it immediately.  Now tell me, don't you love innerHTML?  I personally think it's the best thing since sliced bread!

    I Need More!

    Yes! Once you see how fast this code sorts rows in a table you just have to use it with the other columns. So, let's see the final example, a little bit more optimized to make your life easier:


    <?php
     
    //The function that sorts any array and generates the JS output
    function gen_ord_array($name,$variable, $flag)
    {
     $out="var $name=new Array(";
     asort($variable, $flag);
     reset ($variable);
     while (list ($key, $val) = each ($variable))
      $out.= "$key,";
     $out=substr($out,0,-1);
     $out.=");rn";
     

     //Now for the inverse JS array
     $out.="var $name"."Inv=new Array(";
     $variable=array_reverse($variable, TRUE);
     reset ($variable);
     while (list ($key, $val) = each ($variable))
      $out.= "$key,";
     $out=substr($out,0,-1);
     $out.=");rn";
     
     
    return $out;
    }
     
    //Connect to the database
     
    $conn=mysql_connect('localhost','root','') or die ('Sorry, no connection to database available :-(');
     
    //Perform our query
    $query='SELECT * FROM test.products';
     
    if (!$res=mysql_query($query$conn))
    {
     
    die ('Sorry, query error');
    }
     
    //We populate the $output variable with the HTML code to generate the results table
    //Now the headers have links to perform the sorting
    //We'll keep the table header in another variable to save us time 
    //in the JS function
     
    $output_h='<table border="1" cellpadding="5"><tr style="font-weight:bold">'
     
    $output_h.='<td>ID</td>';
     
    $output_h.='<td><a href="#" onClick="order('ordName')">v</a>   NAME 
     
      <a href="#" onClick="order('
    ordNameInv')">^</a></td>';
     
    $output_h.='<td><a href="#" onClick="order('ordPrice')">v</a>   PRICE 
     
      <a href="#" onClick="order('
    ordPriceInv')">^</a></td>';
     
    $output_h.='<td><a href="#" onClick="order('ordCode')">v</a>   CODE 
     
      <a href="#" onClick="order('
    ordCodeInv')">^</a></td>';
     
    $output_h.='<td><a href="#" onClick="order('ordWeight')">v</a>  WEIGHT 
     
      <a href="#" onClick="order('
    ordWeightInv')">^</a></td>';
     
    $output_h.='</tr>';
     
    $output=$output_h;
     
    //We keep the number of results of the query, they will be 
    //used in JavaScript
    $num_results=mysql_num_rows($res);
     
    while ($a=mysql_fetch_row($res))
    {
     
    //Append the table row to our $output variable
     $output.="<tr 
     
    id='line$a[0]'><td>$a[0]</td><td>$a[1]</td><td>$a[2]</td><td>$a[3]</td><td>$a[4]</td></tr>";
     //Add this product to the sort arrays
     $names[$a[0]]=$a[1];
     $prices[$a[0]]=$a[2];
     $codes[$a[0]]=$a[3];
     $weights[$a[0]]=$a[4];
    }
     
    $output.='</table>';
     
    //We now do the sorting of the arrays, and store them in a JS array
    $jsOutput=gen_ord_array('ordName',$names,SORT_STRING);
    $jsOutput.=gen_ord_array('ordPrice',$prices,SORT_NUMERIC);
    $jsOutput.=gen_ord_array('ordCode',$codes,SORT_STRING);
    $jsOutput.=gen_ord_array('ordWeight',$weights,SORT_NUMERIC);
    ? >
    <html>
    <head>
    <script language="
    JavaScript">
    var num_results= <?=$num_results


    ;
    //We output the array definitions
    <?=$jsOutput? >
    //This is the function that performs the actual sorting
    function order (field)
    {
     //This var will store the row number we are grabbing from the table
     var row_number=0;
     
     //We must generate again the table headers
     //Luckily, we already have them in the PHP $output_h variable
     //But we must escape the single quotes!!
     var out='<?=str_replace("'","\'",$output_h)

    ';
     
     //The field variable is the name of the array we want to use to 
     //reorder our table 
     //We travel across it and grab the content of the row that has 
     //that ID, and append it to our out variable
     for (x=0;x<num_results;x++)
     {
      eval ("row_number="+field+"["+x+"];");
     
      eval ("
    out+=\"<tr 
     
    id='line"
    +row_number+"'>\"+document.getElementById('line"+row_number+"').inner
     
    HTML
    +'</tr>';");
     }
     out+='</table>';
     
     //Finally, we set the content of the content div to our new table
     document.getElementById('content').innerHTML=out;
    }
    </script>
     
    </head> 
    <body>
    <div id='content'>
    <?=$output? >
    </div>
    </body> 
    </html>

    More JavaScript Articles
    More By Alf A. Pedersen


     

    JAVASCRIPT ARTICLES

    - Using Click Interceptions with a Database-Dr...
    - Using JavaScript Click Interceptions in an I...
    - Using Click Interceptions with JavaScript
    - QuickSort in Action
    - Quicksort
    - Using Mod_Security to Protect Your Server
    - Detecting and Countering Server Intrusions
    - Securing Your Web Server
    - Building a Secure Web Server
    - Protecting the Server
    - Book Review: Learning the Yahoo! User Interf...
    - Dynamically Generate a Selection List in a R...
    - Intergrate DWR into Your Java Web Application
    - Detect Browser Compatibility with the Reques...
    - Using the EXT JS Date Picker Widget






    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 4 hosted by Hostway
    Stay green...Green IT