active questions tagged glazedlists - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T02:10:11Z http://stackoverflow.com/feeds/tag/glazedlists http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2308743/editing-jtable-from-restulset-table 0 Editing JTable from RestulSet Table twodayslate http://stackoverflow.com/users/193772 2010-02-22T04:11:15Z 2010-02-23T03:26:30Z <p>Continuing <a href="http://stackoverflow.com/questions/2139919/database-to-glazedlist-jtable-and-then-edit-the-database-through-the-glazedlist-j">this</a> question.</p> <p>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.</p> <p>I am using the <a href="http://www.java2s.com/Code/Java/Swing-JFC/ResultSetTable.htm" rel="nofollow">ResultSet Table</a> code with a MS-Access database and with a few modifications. My code can be found <a href="http://pastebin.ca/1805376" rel="nofollow">here</a>. I run into an error when I <code>rs.updateRow()</code> is called. <a href="http://pastebin.ca/1803039" rel="nofollow"><code>java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver]Error in row</code></a>. </p> <p>I did a google search on this error with <code>updateRow()</code> and not much came up. The only real answer I saw was to use a prepared statement but I am not a pro with SQL commands.</p> <p>Also a plus if you could tell me the best approach in making this become a GlazedList so I can filter easily. Unless you can provide me something that filters regular JTables easily.</p> http://stackoverflow.com/questions/2139919/database-to-glazedlist-jtable-and-then-edit-the-database-through-the-glazedlist-j 2 Database to GlazedList/Jtable and then edit the database through the GlazedList/JTable twodayslate http://stackoverflow.com/users/193772 2010-01-26T14:16:17Z 2010-02-08T04:13:09Z <p>I am able to break this problem down into two questions:</p> <ol> <li>What is the best way to put the contents of a database (MS-Access) into a <a href="http://www.publicobject.com/glazedlists/" rel="nofollow"><code>GlazedList</code></a>/<a href="http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JTable.html" rel="nofollow"><code>JTable</code></a>?</li> <li>How do I make sure any changes made to the <a href="http://www.publicobject.com/glazedlists/" rel="nofollow"><code>GlazedList</code></a>/<a href="http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JTable.html" rel="nofollow"><code>JTable</code></a> are reflected on the database (MS-Access)?</li> </ol> <p>Here are the things I know:</p> <ol> <li>I know how to retrieve/manipulate the information from a database using the <a href="http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=2691&amp;lngWId=2" rel="nofollow">JDBC method</a>.</li> <li>I know that <a href="http://www.publicobject.com/glazedlists/" rel="nofollow"><code>GlazedList</code></a>'s require reflection so I would need to make a class that contains every column/field in the database. This is not very expandable...</li> </ol> <p>What is the best way to go about this problem?</p> <p><strong>edit://</strong> I have managed to create a class generator. It takes the column headings and creates an instance field. This should resolve the #2 <a href="http://pastebin.ca/1770996" rel="nofollow">http://pastebin.ca/1770996</a> - It creates the class but I do not think I used reflection correctly... <strong>edit2://</strong> Edited my code from above so it works... <a href="http://pastebin.ca/1776722" rel="nofollow">http://pastebin.ca/1776722</a></p> http://stackoverflow.com/questions/1958805/java-glazedlists-how-to-update-a-table-row 0 Java glazedlists: how to update a table row Jason S http://stackoverflow.com/users/44330 2009-12-24T15:54:33Z 2009-12-24T16:10:32Z <p>I'm missing something obvious here.</p> <p>I have a <a href="http://sites.google.com/site/glazedlists/" rel="nofollow">glazedlists</a> <code>EventList&lt;X&gt;</code> where <code>X</code> is my custom class. This list contains a bunch of values. When I update one of the values, how do I make sure the GUI updates its display for that row?</p> http://stackoverflow.com/questions/1631788/creating-and-using-multiple-filters-searches-using-jtable-or-glazedlists 0 Creating and using Multiple Filters/Searches using JTable or GlazedLists twodayslate http://stackoverflow.com/users/193772 2009-10-27T15:52:49Z 2009-10-28T02:42:14Z <p>I looked up how to use multiple filters on here with a regular table and the answers all pointed to <a href="http://publicobject.com/glazedlists/" rel="nofollow"><code>GlazedLists</code></a>. However, the answers didn't specify how to use it. I was able to get one filter to work but do not know how to get more than one. For one filter I used:</p> <pre><code> // nameE is a BasicEventList containing classes (name) which // contain the table values TextFilterList filtered = new TextFilterList(nameE); JTextField filterEdit = filtered.getFilterEdit(); // Inside the table value class (name) there is a filter for myName public void getFilterStrings(List baseList) { baseList.add(myName); } </code></pre> <p>Duplicating the code and creating another <a href="http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/JTextField.html" rel="nofollow"><code>JTextField</code></a> does not work. I looked this problem up and it appears <a href="http://publicobject.com/glazedlists/glazedlists-1.7.0/api/ca/odell/glazedlists/matchers/CompositeMatcherEditor.html" rel="nofollow"><code>CompositeMatcherEditor</code></a> may work. The problem is I do not know how to implement this. </p> <p>Also, I am using Eclipse. I downloaded <a href="http://publicobject.com/glazedlists/" rel="nofollow"><code>GlazedLists</code></a> 1.8.0 and dropped it into Eclipse. However, I can't use it. I have red squares all over (except for the source folder)! I even added the jar file. </p> <p>I hope I have explained myself correctly. Please let me know if I need to expand.</p> <p>My Pastebin: <a href="http://pastebin.org/47044" rel="nofollow">Name</a>, <a href="http://pastebin.org/47045" rel="nofollow">Browser</a>, <a href="http://pastebin.org/47046" rel="nofollow">TableFormat</a>, <a href="http://pastebin.org/47047" rel="nofollow">TableModel</a></p> http://stackoverflow.com/questions/656341/keeping-jtable-selection-in-viewport 0 keeping JTable selection in viewport Jason S http://stackoverflow.com/users/44330 2009-03-17T22:53:44Z 2009-07-30T12:01:16Z <p>I'm using GlazedLists to autogenerate an EventTableModel from an EventList, for use with a JTable in a JScrollbarPane.</p> <p>I'm using the EventList as a FIFO, a bunch of elements are added to the end, then a bunch of elements are sometimes removed from the beginning. When elements are removed, the selection works exactly as I expect: even though the index of the selection has changed, the same elements are selected (or at least the ones that are still in the table). It's great.</p> <p>Obviously if the objects change their indices due to deleting items at the beginning, it is impossible to keep the viewport showing a fixed range of objects, and a fixed range of indices. The default behavior seems to be to keep the viewport the same.</p> <p>If I wanted to keep the selected objects at the same place in the viewport, is there a way I can do that? (e.g. set up an event listener on the EventTableModel or the JScrollbarPane or something, and compute the right scrollbar setting so that when I delete items from the beginning, the viewport moves with the objects?)</p> http://stackoverflow.com/questions/1138144/glazedlists-autocomplete-changing-selection-doesnt-work 0 GlazedLists AutoComplete Changing Selection Doesn't Work twolfe18 http://stackoverflow.com/users/136328 2009-07-16T14:46:31Z 2009-07-17T03:58:51Z <p>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 <code>KeyListener</code> on <code>comboBox.getEditor().getEditorComponent()</code> to catch when a user hits enter, so that I can do something based on what item they select in the combo box.</p> <p>I installed it on the JComboBox fine, and filtering works, but when I use the arrow keys to change the selection a call to <code>comboBox.getSelectedItem()</code> returns what was selected before using the arrow keys to change the selection.</p> <p>Also, when this happens (using the arrow keys), a call to <code>comboBox.getSelectedIndex()</code> returns <code>-1</code>.</p> <p>I would assume that I don't have to deal with key events to change the selection myself (that should be a part of GlazedLists' code), so does anyone have any idea if this is a bug or if I am doing something wrong? I googled for a while but didn't find this bug.</p> <p>EDIT: I am fairly sure this is a bug now. I tried running it on Windows and it worked fine, but it seems to choke on OS X. OS X's LnF seems to cause a lot of bugs in GlazedLists.</p> http://stackoverflow.com/questions/698699/how-do-i-build-a-html-table-from-glazed-list 2 How do I build a HTML table from Glazed List? WolfmanDragon http://stackoverflow.com/users/13491 2009-03-30T19:36:47Z 2009-05-14T06:22:58Z <p>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, table, whatever) for simple HTML tables that can be sortable. I have been doing this by rolling my own classes to create HTML tables from either Lists or Maps(Very Large Lists and Maps). No scripting allowed.</p> <p>Is Glazed List overkill for what I am wanting to do? If there is a way, could someone point me in the right direction, perhaps a example or a tutorial.</p>