JXTable and primary key – how to.

Posted by admin | Posted in General Programming | Posted on 07-12-2009

0

swinglabs
Today I will describe in a few words and a couple lines of code how to get the id of the row in JXTable. When working with data coming from database we don’t really want to display the primary key of the object but to hide it. This can cause a small problem once we want to find out for example which item was clicked, ok we can easily find out which row it was but its not always easy to find out which actual object it was especially when using JXTable sorting capabilities.
The whole trick is to get the the corresponding object from the model and not from the view.
Here is a short code snippet to do just that, hope that helps everyone who uses great JXTable component to display some data.

private int getObjectID(JXTable table) {
        int rowx = table.getSelectedRow();
        int resultx = 0;
        if (rowx < 0) {
            return 0;
        }
        resultx = table.convertRowIndexToModel(rowx);
        int id = (Integer) table.getModel().getValueAt(resultx, 0);
        return id;
    }

This works of course assuming that your object index is set as first column in your model (position 0).

Small Web Design Inspiration Set

Posted by admin | Posted in Graphics And Design | Posted on 01-12-2009

0

flickr
This is a small set of links I’ve found pointing to some collections of web page screenshots which you can use for your web design inspiration. I have found it very usefull and I hope you will find it usefull too. If you know some more which are not listed here please share using comments section.

  1. Patrick Haney
  2. Patrick Haney’s Group Pool
  3. Design inspiration via LittleSnapper by Elliot
  4. Web Design Patterns by FactoryJoe
  5. 50 Websites (and More) for Your Design Inspiration from Vandelay Design
  6. 30 More Portfolio Sites for Your Design Inspiration from Designm.ag
  7. Interface Design Inspiration – 36 Clean Comment Form designs
  8. 40 Textured Websites for Design Inspiration from Designm.ag

Have fun!

15+22 jQuery Image Slideshow/Slider Tutorials and Plugins for Your Next Projects

Posted by admin | Posted in Graphics And Design, Java Script | Posted on 01-12-2009

0

jquery_slideshows23


15+22 jQuery Image Slideshow/Slider Tutorials and Plugins for Your Next Projects