| Thread | Last Post | Replies |
|
| CustomRenderer for enum | 16 Aug 2007 15:59 GMT | 2 |
hi everyone , I'm trying to create a customRenderer extending JComboBox to display the different element of any enum. At this point I created something that recognizes the enum and put the JComboBox in the right Column but they are all empty. here is the code
|
| GroupLayout problem, jbutton not aligned (leading not working) | 16 Aug 2007 11:09 GMT | 10 |
I have a JPanel subclass with swing components on it. I don't manage to put the button at the left of the panel. Why ? Here is a simplified version of the source code: =========================== >8 =====
|
| where to use setAutoCreateRowSorter(false) in JTable | 16 Aug 2007 01:30 GMT | 1 |
Hi, all, I have a customized JTable and I use the Java 6.0 feature: table.setAutoCreateRowSorter(true) to enable auto sorting on rows.
|
| Question: Gui Looks Different | 15 Aug 2007 17:44 GMT | 5 |
I am a fairly new java developer, so the answer to my question may be obvious to the veterans, but it is not obvious to me, so here goes. I have an application that has several progress bars and other guid widgets in it. On the system (a desktop with CRT) where the code was
|
| JSpinner in hex | 15 Aug 2007 17:39 GMT | 3 |
I have written a HexFormat derived from java.text.Format that behaves like a simplified DecimalFormat, however I don't see a simple way to hook it up to a JSpinner to display values in hex. Is there a trick, or must I write my own NumberEditor cloning a lot of code?
|
| Copying JPanel components to another JPanel | 15 Aug 2007 15:15 GMT | 4 |
I want to copy the contents of a jPanel to another JPanel, then I want to empty the original JPanel. I unsuccessfully tried the following: jPanel1 = new JPanel();
|
| Focus Traversal -- CTRL + (SHIFT) + TAB | 15 Aug 2007 13:03 GMT | 3 |
how can i catch the CTRL + TAB Event in Focustraversal Policy ? In my Application i have 4 Panels, each of them act as a Focus-Cycle Root. These 4 Panels are Childs of a another Panel, i set the Parent-Panel
|
| hooking up arrays of Listeners | 15 Aug 2007 03:57 GMT | 1 |
I have doubly dimensioned arrays of widgets. I would like to set the up with ChangeListeners -- each individual e.g. rgbSlider[0][0].addChangeListener( new ChangeListener() { /**
|
| Passing value from Struts tag in JSP to Action class | 14 Aug 2007 12:43 GMT | 1 |
I am populating JSP page with rows retrieved from the database and represented as a List of Beans in forEach loop: <c:forEach var="list" items="${OperationsForm.OperationsList}"> ...
|
| Swing GUI API's and custom java.util.Observable MVC | 11 Aug 2007 19:06 GMT | 2 |
I'm currently wading through figuring out what to use for using MVC my application. I really need to explain the setup I currently use so you get a clue what I'm talking about and what I'm looking for (it's hard to describe my motivation without it). What follows is not hard to
|
| please help me in creating a form using Swing. | 11 Aug 2007 08:48 GMT | 2 |
I am creating a form using swing through coding (not using netbeans). Now in the form I have one JComboBox of Country and other of State. Now I want it in such a way that when I
|
| Interaction between JFrame and InternalFrame | 09 Aug 2007 22:40 GMT | 2 |
I want to create a multi-document application.I have a JFrame which should contain other JInternalFrames, which are invoked using a menu. The internal frame should occupy the whole area of the JFrame other than the space needed for the JFrame's title, menubar and tool
|
| How to add size grip (grippie) to window in swing? | 09 Aug 2007 11:57 GMT | 1 |
Does anyone have an idea how to show in swing on JFrame or JDialog windows size grip? I'm thinking about such grater in right down corner of resizable window, which is common in Windows operating systems. I did usability
|
| Scrunched JTables | 08 Aug 2007 22:33 GMT | 2 |
Is there a method buried in there somewhere to give a little extra space between JTable cells. The text in each cell is crammed right against the separator, or do I have to write custom CellRenderers?
|
| Accessing Form properties from JSP | 08 Aug 2007 14:01 GMT | 1 |
I need to access some Struts Form properties (data) from the JSP page in order to populate it from the scriplet. Is there a way to do it ? TIA,
|