[jQuery] Re: Tablesorter woes

2007-06-15 Thread Jonathan Freeman
tbody ?



--- Andy Matthews [EMAIL PROTECTED] wrote:

 I've used tableSorter successfully in another project but for some
 reason
 it's defeating me in this one. I've got some code to display, but I
 can't
 put a working version up as it's for an admin section. Here's the
 portions
 of the code that I think are relevant...please let me know if I need to
 add
 additional snippets. Also note that I HAVE gotten this to work, but for
 some
 reason it's intermittent at best. The paths to the jQuery and
 tableSorter JS
 files have been tested and are correct.
  
 I'd love for someone to point out a simple error, but I can't see what
 one
 might be. Thanks in advance.
  
  
 andy
  
 --
  
 HEAD
 link rel=stylesheet
 href=http://testlogin.dealerskins.loc/Styles/dealerskinsbackend.css;
 title=Site Specific Stylesheet /
 script type=text/javascript
 src=http://testlogin.dealerskins.loc/Includes/jquery.js;
 language=javascript/script
 script type=text/javascript
 src=http://testlogin.dealerskins.loc/Includes/swfobject.js;
 language=javascript/script
 script type='text/javascript'

src=http://testlogin.dealerskins.loc/Includes/scripts/AC_RunActiveContent.j
 s/script
 script type=text/javascript
 src=http://testlogin.dealerskins.loc/includes/scripts/tablesorter.js;
 http://testlogin.dealerskins.loc/includes/scripts/tablesorter.js
 /script
 script language=javascript
 !--
  $(document).ready( function() {
   $('#stockNumTable').tableSorter();
  });
 //--
 /script
 
  
 BODY
 --- start table --
 table align=center width=550 cellpadding=0 cellspacing=0
 id=stockNumTable
 thead
  th class=basicbold title=Sort by this columnStocknumber/th
  th class=basicbold title=Sort by this columnModelYear/th
  th class=basicbold title=Sort by this columnMake/th
  th class=basicbold title=Sort by this columnModel/th
  th class=basicbold title=Sort by this columnNumber of Views/th
 /thead
 tr bgcolor=#F5F5F5
   td class=basic#012456/td
   td class=basic width=80 align=right style=padding-right:
 7px;2008/td
   td class=basic width=50 Bentley/td
   td class=basic width=50 Continental/td
   td class=basic align=center
2/td
  /tr
  tr bgcolor=#eaeaea
   td class=basic#012456/td
   td class=basic width=80 align=right style=padding-right:
 7px;2001/td
   td class=basic width=50 Chevy/td
   td class=basic width=50 Coupe/td
   td class=basic align=center
2/td
  /tr
  tr bgcolor=#F5F5F5
   td class=basic#7516298/td
   td class=basic width=80 align=right style=padding-right:
 7px;2005/td
   td class=basic width=50 Honda/td
   td class=basic width=50 Accord/td
   td class=basic align=center
2/td
  /tr
  tr bgcolor=#eaeaea
   td class=basic#7516298/td
   td class=basic width=80 align=right style=padding-right:
 7px;1994/td
   td class=basic width=50 Jeep/td
   td class=basic width=50 Cherokee/td
   td class=basic align=center
2/td
  /tr
  tr bgcolor=#F5F5F5
   td class=basic#7516298/td
   td class=basic width=80 align=right style=padding-right:
 7px;2005/td
   td class=basic width=50 Scion/td
   td class=basic width=50 tK/td
   td class=basic align=center
2/td
  /tr
  tr bgcolor=#eaeaea
   td class=basic#012456/td
   td class=basic width=80 align=right style=padding-right:
 7px;2008/td
   td class=basic width=50 Toyota/td
   td class=basic width=50 Avalon/td
   td class=basic align=center
2/td
  /tr
  tr bgcolor=#F5F5F5
   td class=basic#789456/td
   td class=basic width=80 align=right style=padding-right:
 7px;2006/td
   td class=basic width=50 Chevy/td
   td class=basic width=50 Blazer/td
   td class=basic align=center
1/td
  /tr
  tr bgcolor=#eaeaea
   td class=basic#a478315z/td
   td class=basic width=80 align=right style=padding-right:
 7px;2008/td
   td class=basic width=50 Ford/td
   td class=basic width=50 Focus/td
   td class=basic align=center
1/td
  /tr
  tr bgcolor=#F5F5F5
   td class=basic#123456/td
   td class=basic width=80 align=right style=padding-right:
 7px;2007/td
   td class=basic width=50 Ford/td
   td class=basic width=50 Mustang/td
   td class=basic align=center
1/td
  /tr
 /table
  end table --
  
  
 
  
 Andy Matthews
 Senior ColdFusion Developer
 
 Office:  877.707.5467 x747
 Direct:  615.627.9747
 Fax:  615.467.6249
 [EMAIL PROTECTED]
 www.dealerskins.com http://www.dealerskins.com/ 
  
 



   

Get the Yahoo! toolbar and be alerted to new email wherever you're surfing.
http://new.toolbar.yahoo.com/toolbar/features/mail/index.php

[jQuery] Re: Tablesorter woes

2007-06-15 Thread Jonathan Freeman

Hmmm...

Have a look at your headers. Perhaps you'll need to clarify the structure
a bit more with tr's. Mine works in the following format:

table
 thead
  tr
   th/th
   th/th
   th/th
  /tr
 /thead
 tbody
  tr
   td/td
   td/td
   td/td
  /tr
 /tbody
/table

--- Andy Matthews [EMAIL PROTECTED] wrote:

 
 Tried adding tbody to what's there right now and it didn't work. 
 
 -Original Message-
 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of Jonathan Freeman
 Sent: Friday, June 15, 2007 8:47 AM
 To: jquery-en@googlegroups.com
 Subject: [jQuery] Re: Tablesorter woes
 
 tbody ?
 
 
 
 --- Andy Matthews [EMAIL PROTECTED] wrote:
 
  I've used tableSorter successfully in another project but for some 
  reason it's defeating me in this one. I've got some code to display, 
  but I can't put a working version up as it's for an admin section. 
  Here's the portions of the code that I think are relevant...please let
 
  me know if I need to add additional snippets. Also note that I HAVE 
  gotten this to work, but for some reason it's intermittent at best. 
  The paths to the jQuery and tableSorter JS files have been tested and 
  are correct.
   
  I'd love for someone to point out a simple error, but I can't see what
 
  one might be. Thanks in advance.
   
   
  andy
   
  --
   
  HEAD
  link rel=stylesheet
  href=http://testlogin.dealerskins.loc/Styles/dealerskinsbackend.css;
  title=Site Specific Stylesheet /
  script type=text/javascript
  src=http://testlogin.dealerskins.loc/Includes/jquery.js;
  language=javascript/script
  script type=text/javascript
  src=http://testlogin.dealerskins.loc/Includes/swfobject.js;
  language=javascript/script
  script type='text/javascript'
 

src=http://testlogin.dealerskins.loc/Includes/scripts/AC_RunActiveContent.j
  s/script
  script type=text/javascript
  src=http://testlogin.dealerskins.loc/includes/scripts/tablesorter.js;
  http://testlogin.dealerskins.loc/includes/scripts/tablesorter.js
  /script
  script language=javascript
  !--
   $(document).ready( function() {
$('#stockNumTable').tableSorter();
   });
  //--
  /script
  
   
  BODY
  --- start table -- table align=center 
  width=550 cellpadding=0 cellspacing=0
  id=stockNumTable
  thead
   th class=basicbold title=Sort by this columnStocknumber/th  
  th class=basicbold title=Sort by this columnModelYear/th  th 
  class=basicbold title=Sort by this columnMake/th  th 
  class=basicbold title=Sort by this columnModel/th  th 
  class=basicbold title=Sort by this columnNumber of Views/th 
  /thead tr bgcolor=#F5F5F5
td class=basic#012456/td
td class=basic width=80 align=right style=padding-right:
  7px;2008/td
td class=basic width=50 Bentley/td
td class=basic width=50 Continental/td
td class=basic align=center
 2/td
   /tr
   tr bgcolor=#eaeaea
td class=basic#012456/td
td class=basic width=80 align=right style=padding-right:
  7px;2001/td
td class=basic width=50 Chevy/td
td class=basic width=50 Coupe/td
td class=basic align=center
 2/td
   /tr
   tr bgcolor=#F5F5F5
td class=basic#7516298/td
td class=basic width=80 align=right style=padding-right:
  7px;2005/td
td class=basic width=50 Honda/td
td class=basic width=50 Accord/td
td class=basic align=center
 2/td
   /tr
   tr bgcolor=#eaeaea
td class=basic#7516298/td
td class=basic width=80 align=right style=padding-right:
  7px;1994/td
td class=basic width=50 Jeep/td
td class=basic width=50 Cherokee/td
td class=basic align=center
 2/td
   /tr
   tr bgcolor=#F5F5F5
td class=basic#7516298/td
td class=basic width=80 align=right style=padding-right:
  7px;2005/td
td class=basic width=50 Scion/td
td class=basic width=50 tK/td
td class=basic align=center
 2/td
   /tr
   tr bgcolor=#eaeaea
td class=basic#012456/td
td class=basic width=80 align=right style=padding-right:
  7px;2008/td
td class=basic width=50 Toyota/td
td class=basic width=50 Avalon/td
td class=basic align=center
 2/td
   /tr
   tr bgcolor=#F5F5F5
td class=basic#789456/td
td class=basic width=80 align=right style=padding-right:
  7px;2006/td
td class=basic width=50 Chevy/td
td class=basic width=50 Blazer/td
td class=basic align=center
 1/td
   /tr
   tr bgcolor=#eaeaea
td class=basic#a478315z/td
td class=basic width=80 align=right style=padding-right:
  7px;2008/td
td class=basic width=50 Ford/td
td class=basic width=50 Focus/td
td class=basic align=center
 1/td
   /tr
   tr bgcolor=#F5F5F5
td class=basic#123456/td
td class=basic width=80 align=right style=padding-right:
  7px;2007/td
td class=basic width=50 Ford/td
td class=basic width=50 Mustang/td
td class=basic align=center
 1/td
   /tr
  /table
   end table --
   
   
  
   
  Andy Matthews

[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Jonathan Freeman

Actually, since Safari was introduced 3.5 years ago and Apple ships around
5 million Macs/year now, 18 million Safari uses doesn't sound too far off.
What's really going to be interesting is Apple has just expanded Safari to
two new platforms, Windows and iPhone. 

This should expand Safari market share dramatically.




--- Andy Matthews [EMAIL PROTECTED] wrote:

 I have SERIOUS, SERIOUS doubts that there are 18 million people using
 Safari.
  
 I doubt there are that many people using Macs to be perfectly honest.
 
   _  
 
 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of 
 Sent: Monday, June 11, 2007 1:11 PM
 To: jquery-en@googlegroups.com
 Subject: [jQuery] Re: Macrumors running live udpates of WWDC
 
 
 11:09 am   Safari On WINDOWS  
 11:09 am   18 Million Safari users
 Marketshare has climbed to 4.9%
 IE has 78%, Firefox 15%, others 2%
 We Dream Big  
 
 
 On 6/11/07, Shelane Enos [EMAIL PROTECTED] wrote: 
 
 That's a feature they've previously announced that I'm looking forward
 to.
 
 
 On 6/11/07 10:52 AM, ?ⓐⓚⓔ [EMAIL PROTECTED] wrote:
 
 
 
 10:49 amusing safari to make widgets from web pages
 
 
 Woo hoo!
 
 On 6/11/07, ?ⓐⓚⓔ [EMAIL PROTECTED] wrote:
 
 
 thanks Shelane! I've been tuned in since 10 am!!!
 
 
 On 6/11/07, Shelane Enos  [EMAIL PROTECTED]  mailto:[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]  wrote:
 
 
 
 Macrumors.com  http://Macrumors.com http://Macrumors.com  is running
 a continuous AJAX update of the keynote address
 of WWDC.  No more update in 60 seconds countdown. 
 
 
 
 
 
 
 
 
 
 
 
 
 
 -- 
 Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ 
 



   
Ready
 for the edge of your seat? 
Check out tonight's top picks on Yahoo! TV. 
http://tv.yahoo.com/