TableSorter « JTable « Java Swing Q&A





1. Using Java Source Code in my own project    stackoverflow.com

I wrote a program in Java 6.0, but it turns out that some of our client only have 5.0. The issues is that lot of features that 6.0 has was not in ...

2. Show elements from jTable that are between two give dates    stackoverflow.com

I've created a jTable in which I create a column which is named "date". After entering 2 different dates in two jTextFields I want to show only the elements fromt the ...

3. TableSorter numeric values sorting    stackoverflow.com

Since I'm using Java 1.4.2, this means that I cannot use Java's implementation of the table sorter. Instead, I've been using the TableSorter.java class from an earlier reply to my previous ...

4. TableSorter problem    coderanch.com

The benefit of this technique is that allows you to use models that are not sortable. TableSorter is a generic sorter that can be applied to any table. If you really want to sort the model, do not use a wrapper for the model . Just use a model that knows how to sort its data. For instance via the Collections.sort(...) ...

5. TableSorter in Netbeans    coderanch.com

6. TableSorter (Can you skip a column?)    coderanch.com

Hello, I'm working with JTables (It's good stuff.) and am using TableSorter to add cool, column-sorting goodness to my application. It works. It's fantastic. I get giddy just thinking about it. My problem lies in the fact that I'd like to have a nifty little column on the left which holds the row number (like any spiffy database/spreadsheet thingie should). I'd ...

7. tablesorter problem    coderanch.com

Hi All, i m working on a jtable which shows live stock quotes. the data is coming from a text file and i have the Obeserver running seperately, connected to my main applet class which notifies the applet whenever any updation occurs on the text file. i've connected the TableSorter with my Tablemodel and set its tableheader and all in the ...

8. TableSorter problem with double    coderanch.com

Hello All, i completed my Jtable based project for the stock market and for the sorting purpose i have used TableSorter which sorts the data through the GetClass method inplemented in the table model. Now my problem is that i have three types of data in my jtable. 1)String (Company Name, Symbol) 2)Double (Ask Price, Bid price) 3)Integer (Bid Volume, Ask ...





10. TableSorter and CellRenderers    coderanch.com

Howdy. I'm currently building a class called NTable which is am extension of JTable. Basically I'm trying to create an all-in-wonder for myself so that I can create and manipulate tables pretty easily without fussing around with the different models and renderers. I'm currently having a problem with sorting and rendering though. Quick walkthrough: I set the foreground color of a ...