[jQuery] JQuery tablesorter plugin + Dynamic Table Data via DWR

2009-12-22 Thread Berns
Hi folks, Using jquery's tablesorting, I've been trying to sort a table that contains data loaded dynamically/programatically using DWR's addrows method. The sorter would sort any column I pick but could only do so in one direction ( i.e. descending order only, not toggable between asc/desc ) a

[jQuery] Tablesorter plugin, sort cache problem

2009-09-09 Thread tono
Hello, I've created dynamic table using tablesorter and the sort function works fine at first. The problem occurs when I want to sort new data. To make it clearer here's the flow: 1. Generate data, display on table 2. Sort works fine 3. Remove all data row, generate new data, display on table 4.

[jQuery] TableSorter plugin - default column sort DESC instead? How?

2009-08-27 Thread Crazy Serb
Ok, I can't figure this out... The default sort (when clicking on any of the headers in the tablesorter table) is ascending. Now, I want to change that to descending for ALL columns, not just the initial sort column (defined in sortList). I've tried editing sortInitialOrder parameter in the .js

[jQuery] Tablesorter plugin - grouping rows and sorting per group?

2009-08-04 Thread Crazy Serb
In using Tablesorter plugin, I have run into an challenging issue. What I am looking to do is group certain rows in a single table into two different groups, have a blank row between them and be able to sort based on columns that apply to both groups of rows but without the rows from one group ac

[jQuery] tablesorter plugin leaks memory in IE6 and IE7

2009-06-15 Thread pob
Hi there, I have a table, 10 cols, 200 rows. Using tablesorter causes a memory leak on every page refresh of almost 2mB. A smaller table causes a proportionately smaller memory leak. Is there way to clear this memory? I've tried setting inner html of the table to '', but it makes no difference. Is

[jQuery] tablesorter plugin help -- getting it to ignore quotation marks

2009-05-21 Thread clorentzen
I'm using the tablesorter plugin, and have run into a small issue I can't figure out how to solve: One of the columns in my table contains titles, some of which are books, others of which are articles or television episodes. The latter two start with a double quote (“)... So, for example, one ce

[jQuery] tablesorter plugin

2009-04-23 Thread Daniel
I am working with tablesorter plugin and pager plugin. I have written code that looks for a class and decides whether or not to display the row based on which checkboxes are selected. Example: if i select the checkbox vehicles, the category id is 4, so jquery looks in the table for any rows with

[jQuery] tablesorter plugin

2009-03-26 Thread David
Hi all, I found this very handy tablesorter plugin (http://tablesorter.com/ docs/#Demo). But i have a problem when i want to put an image in it, the image is trashed and/or does not display properly. Is there a special way to do it with tablesorter ? my code: echo ''; echo ''; echo '';

[jQuery] TableSorter Plugin Question

2009-03-02 Thread chobo2
Hi I am wondering I want to use jquery to add some rows when a person say adds some stuff. I would like to know if I add it like this(through jquery javascript) will the tablesorter be able to figure out how to sort it(ie when some presses the header columns will this new value get stored) or do

[jQuery] TableSorter Plugin Question

2009-03-02 Thread chobo2
Hi I am wondering I want to use jquery to add some rows when a person say adds some stuff. I would like to know if I add it like this(through jquery javascript) will the tablesorter be able to figure out how to sort it(ie when some presses the header columns will this new value get stored) or do

[jQuery] TableSorter plugin is not working in IE7

2009-02-09 Thread Bluesapphire
Hi! Kindly visit following link: http://vibersol.com/sitesdemo/shipping/admin/continent.php Table sorter plugin works fine in FireFox, but in IE7 this plugin doesn't work. Can some one guide me where and how to rectify this problem in my code, so that plugin begin to work in IE7. Thanks in ad

[jQuery] Tablesorter plugin - lazy caching

2009-02-04 Thread petrillodavide
Hello everybody, I'm developing an application in which the users will deal with a big table (600+ rows). One target for the application is that it has to show up as fast as possible; anyway, applying the tablesorter on the table, the initial caching steals more than one second to the process.

[jQuery] Tablesorter plugin

2009-01-29 Thread varun
HI all I have been using a function to create the table... this functions accepts a list and 2 content place holders to put table and pager ... but something is going wrong the pager css doesnot work correctly... some time it overlaps table ... sometimes it comes outside the table.. I am using

[jQuery] Tablesorter plugin: adding alternating colors

2008-12-18 Thread adeveloper
My table has alternating row coloring. It get's messed up after sorting (eg, instead of odd, even, odd I get something like even, even, odd, even, even...etc) I was trying to fix that with Zebra widget but gave up. All I need to do is to call this simple function to http://www.sitepoint.com/artic

[jQuery] Tablesorter Plugin and widgets

2008-10-04 Thread Issac Kelly
I'm working on Christian Bach's tablesorter. I've made a widget that can select rows, and now I want to make a widget that can delete rows, and have a callback. The problem is the callback. The widgets are called like this $.tablesorter.addWidget({ // give the widget a id

[jQuery] tablesorter plugin will not sort dynamically generated table from jquery load(script.php)

2008-08-20 Thread quantspeed
I am experimenting with the jquery tablesorter plugin (outstanding) and am able to make it work flawlessly for tables that are loaded with the initial page. However, if I generate active content, e.g. echo a into a by calling $(#outputdiv).load(script.php) the resulting table will not sort

[jQuery] Tablesorter Plugin: Leave one column untouched

2008-07-25 Thread DavidH
Hi, I'm using the tablesorter plugin. The first column of the table is "Position" (i.e. 1,2,3 etc). When I sort, I'd like this column to stay the same (e.g. if the table is resorted by a criteria, they are still placed with 1 at the top). Is this possibel or will I have to abandon tablesorter and

[jQuery] Tablesorter plugin and zebra striping

2008-06-18 Thread Ken
I have the following in my $(document).ready: $(document).ready(function() { $(".zebra tr:not([th]):even").addClass("even"); $(".zebra tr:not([th]):odd").addClass("odd"); $("table#sorttable").tablesorter(); )}; This allows my table to sort columns by clicking on the column headers and work

[jQuery] Tablesorter plugin and widthFixed property

2008-05-28 Thread [EMAIL PROTECTED]
Hi folks, I'm playing around with the Tablesorter plugin and I'm a little confused about the widthFixed property. I downloaded and included the Dimensions plugin and set widthFixed to true like so: /* Table Sorter */ $("#mytable").tablesorter({ widthFixed: true, widgets: ['zebra'],

[jQuery] Tablesorter plugin problems with zebra stripes

2008-05-19 Thread asle
Hi The tablesorter 2.0 plugin is very nice and works great but I don´t really get how the zebra widget works. I do not get alternate colors on the table. I have a style for ".odd" and ".even" in CSS. I looked at the demos and it seems that the TRs are assigned "odd" and "even" but that does not ha

[jQuery] Tablesorter plugin question

2008-04-17 Thread Mark Quezada
First of all, this is a great plugin, many thanks! I have a bit of a specific implementation that I can't figure out. I have a table working and sorting correctly with the plugin, but because of a design decision, I have to allow the table body to scroll while the table headers remain fixed... an

[jQuery] Tablesorter plugin question

2008-04-17 Thread Mark Quezada
First of all, this is a great plugin, many thanks! I have a bit of a specific implementation that I can't figure out. I have a table working and sorting correctly with the plugin, but because of a design decision, I have to allow the table body to scroll while the table headers remain fixed.

[jQuery] Tablesorter plugin

2008-02-07 Thread Leanan
Anyone had any issues with the latest version of this in IE? I have a page that uses this, and I've made use of the sortStart and sortEnd triggers. For whatever reason, the sortEnd trigger never fires -- so the message box I have show never goes away. Also, the zebra striping isn't working at a

[jQuery] tablesorter plugin - could be a bug

2007-10-02 Thread Web Specialist
Hi guys. I'm testing tablesorter(www.tablesorter.com) plugin to work in a huge table. Tablesorter is a nice tool. But may be I don't know how to sort date column properly. Please look this link *http://tinyurl.com/33rw7p* First column could be sortable but I don't how to do that. Could be a bug?

[jQuery] Tablesorter plugin doesn't work properly with 1.2

2007-09-11 Thread dobosgy
Tablesorter 2.0 plugin doesn't work properly with JQuery 1.2. If I bind a click function to the items in the table, it works well, as far as I try to sort the table. After sorting, the clickable items loose their function. Everything works well with JQuery 1.1.4. Example can be seen here: http:/

[jQuery] tablesorter plugin not working...

2007-09-11 Thread Andy Matthews
I've tried it with multiple versions of jQuery including 1.1.3, 1.1.4, and 1.2, even referencing the jQuery file living on the tablesorter website. In IE nothing happens, no errors, but no worky. In Firefox, I get an error in the tablesorter plugin: r[row] has no properties http://localhost/deale

[jQuery] tablesorter plugin - filesize support

2007-05-11 Thread Gaieges
Hey all, Just thought I'd give back to the community and offer up a simple addition to the great tablesorter plugin by Christian Bach (http:// motherrussia.polyester.se). I needed a simple sorter based on filesize, and it didn't quite work with the generic sorter. Thanks to the great structu