Tagged Questions
11
votes
2answers
220 views
Is UI data binding in Java more trouble than it is worth?
I've spent some time recently learning and attempting to use various Java data-binding tools such as JGoodies, GlazedLists, JSR-295, etc. The problems that I've been trying to solve are not that ...
3
votes
2answers
458 views
How do I build a HTML table from Glazed List?
Lat week I downloaded the Glazed List library into eclipse. I have been looking through the tutorials and it seems that everything is designed to run jTable or SWT. I am need a backing list(Map, ...
2
votes
3answers
73 views
How to convert list of objects to list of interfaces?
I have some class that works with interfaces:
here is interface
public interface Orderable
{
int getOrder()
void setOrder()
}
here is worker class:
public class Worker
{
private ...
2
votes
3answers
654 views
Is Glazedlists dead?
I've tried to download Glazedlists and virtually all useful links are dead (404 or go to empty/meaningless locations). I've googled about it and no mention of the project being abandoned, so I feel ...
2
votes
1answer
831 views
Database to GlazedList/Jtable and then edit the database through the GlazedList/JTable
I am able to break this problem down into two questions:
What is the best way to put the contents of a database (MS-Access) into a GlazedList/JTable?
How do I make sure any changes made to the ...
1
vote
1answer
57 views
Glazed Lists EventTableModel class stroked in NetBeans
I try to use Glazed List to create dinamically changed TableModel. All works fine, but class name EventTableModel is written strikethrough text (I use NetBeans IDE). I watch class implementation - no ...
1
vote
3answers
333 views
How to render a checkbox?
I'm using Glazed lists, in a jTable where I have a column which is boolean.
By default the jTable renders a checkbox where the column is type Boolean.Class.
Using Glazed lists i cannot get the ...
0
votes
2answers
108 views
Background color in Glazed List and Nimbus
I use a autocomplete feature for comboboxes from Glazed Lists. It's pretty usefull. I also use nibus L&F. But it ignores JCombobox.setBackground(Color). Is there any way to force backgroundcolor ...
0
votes
2answers
101 views
Views sorting and filtering: GlazedList sorting and filtering + JTable vs Glazed event list+JXTable
I want to create user views (tables) with sorting and filtering capabilities. I use EventList (Glazed Lists) as source for EventTableModel. There are also Sorted List and some filtering items in ...
0
votes
1answer
53 views
Glazed Lists SortedList update when source object order property changed
I have some object with orderProperty
class Car
{
private int order;
// getter and setter implementation
}
Then I create EventList:
EventList<Car> cars=new ...
0
votes
2answers
141 views
How to sort glazed TreeList?
I have a pretty weird question - how to sort glazed TreeList? I am using it in SWT NatTable, and when my data provider is set to GlazedListsDataProvider with TreeList inside it, sorting works in a ...
0
votes
1answer
47 views
glazedlists: how to create a transformed list that has the original list items + associated derived items
I have an EventList list1 of parent items.
I want to make a one-way-transform this into a TreeList in the following manner:
Some of the parent items have child items, and I need to create an ...
0
votes
1answer
243 views
Out-of-table column sorting with Glazed Lists and a JXTable
I'm using Glazed Lists to sort and filter a JXTable.
How can I sort on out-of-table values? That is, I would like to be able to format column values in my own way, yet sort on raw values.
My current ...
0
votes
1answer
211 views
GlazedLists and JTable with multiple sources
I have 3 ArrayLists and a JTable.
I would like to be able to add/edit/remove elements from the selected (from one of the 3) ArrayList by selecting the elements in the JTable and for example clicking ...
0
votes
2answers
528 views
Editing JTable from RestulSet Table
Continuing this question.
My problem is that I can not edit my JTable. I get an exception and the Object value instead of what I should be seeing.
I am using the ResultSet Table code with a ...
0
votes
2answers
282 views
Java glazedlists: how to update a table row
I'm missing something obvious here.
I have a glazedlists EventList<X> where X is my custom class. This list contains a bunch of values. When I update one of the values, how do I make sure the ...
0
votes
1answer
1k views
Creating and using Multiple Filters/Searches using JTable or GlazedLists
I looked up how to use multiple filters on here with a regular table and the answers all pointed to GlazedLists. However, the answers didn't specify how to use it. I was able to get one filter to ...
0
votes
1answer
249 views
GlazedLists AutoComplete Changing Selection Doesn't Work
I am using the GlazedLists (1.8) library in my project, and I have been having trouble getting autocomplete working properly on my combo boxes. I installed a KeyListener on ...
0
votes
2answers
988 views
keeping JTable selection in viewport
I'm using GlazedLists to autogenerate an EventTableModel from an EventList, for use with a JTable in a JScrollbarPane.
I'm using the EventList as a FIFO, a bunch of elements are added to the end, ...