The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
42 views

How to make a cell behave like it's editable but have it read only?

I have a JTable in which I want the cells to behave the way it behaves when you have the cells editable, but the cells cannot be editable, in other terms, read only. So if I double click on a cell, I ...
0
votes
1answer
28 views

How to get the cell oldvalue in DefaultTableCellRenderer when update the model?

I am learning the swing . I want to change the cell's color when the values has benn changed, eg: if the new value is more than the old value,set this cell's color to GREEN, But i don't know how to ...
0
votes
1answer
38 views

TableModel in Java: how to specify different renderers for different rows?

I'm making a custom TableModel usingAbstractTableModelfor a project, and I need to figure out a way to have a checkbox show up on some rows, but not others. I have already implemented a getColumn ...
-1
votes
0answers
63 views

custom component in jtable cell

I created a component be use of Enter Key for select item . I want to use custom component in cell jtable and use Enter key in jtable. but custom component not work when use enter key in jtable for ...
0
votes
1answer
37 views

ActionEvents and ItemEvents : dealing with events on a dynamic JComboBox

I've got some kind of a problem regarding my code and I would appreciate any insight on this. First, here's some context (on the following code) : The primary objects, which can be selected in the ...
-4
votes
1answer
35 views

Jtable cell value changed on ke pressed event in Java [closed]

As I am a beginer in Java Programming Language, I am making an ERP, I am working with jTable, I have three columns (item quantity, rate, amount) in the manner that i am writing item quantity in a ...
0
votes
2answers
58 views

Listening for KeyEvent in a JTable - how to do it while cell is being edited?

I'm working on a JFrame which has a JTable and a few other elements within it. What I want the user to be able to do is tab through the table (with a set number of rows) and then when the focus is at ...
0
votes
1answer
44 views

Eclipse jface tableviewer - changing celleditor at runtime

I am using a Table Viewer with cell editors... one is a ComboxBox and the other one is a textcell editor... At runtime based on the selection in the combo box i want to change the other cell editor to ...
0
votes
1answer
99 views

Usability features for JComboBox within JTable

I'm trying to build a table which includes JComboBoxes as both the renderer and editor components. This mostly works fine, however there are two things I can't seem to solve. Tabbing between cells ...
0
votes
1answer
65 views

How can I make p:cellEditor conditional in PrimeFaces?

Here is my code that doesn't work: ... <p:column sortBy="#{invoice.customerId}" id="customerId"> <f:facet name="header"><h:outputText value="Customer ID"/></f:facet> ...
0
votes
1answer
58 views

JTable with JButton as cell editor

I used a JButton as render and editor in JTable, with following problems: The JTable row is not selected when JButton clicked. When the JButton is clicked, how to get its location within JTable, in ...
1
vote
1answer
221 views

Primefaces cellEditor passing the entire datatable in ajax submit

I have a datatable in which each row has 24 hour input fields in it. At one point of time there are more than 1000 editable input fields. I noticed that while using p:cellEditor during ajax calls ...
0
votes
0answers
17 views

How to make a jface table cell incrementor

So I am making a jface table, in one of the columns I want to increase or decrease a number with up and down arrow keys. I found exactly what I want to do in the eclipse run configurations. As you can ...
1
vote
1answer
55 views

Changing JTable Cell's Font while editing it

I have set the default font in my JTable as show below myTable.setFont(new java.awt.Font("Verdana", 1, 10)); I wanted to show a bigger font in my JTable,while some data is being typed into the ...
0
votes
1answer
85 views

How to edit row on a Jtable with Table CellEditor

I have a frame with a table that get features from database (feature that correspond to the search). Here's the table : public JTable getTableBornes() { if(TableBornes==null){ ...
0
votes
1answer
80 views

AbstractTableModel and cell editor

The example i have found: http://www.java2s.com/Code/Java/Swing-Components/ButtonTableExample.htm show how to create a JTable with specified column (button). It works properly, but the my problem is, ...
1
vote
2answers
202 views

JTable loses focus when a dialog is shown from a cell editor component

In my main application, the JTable is losing focus when a dialog is shown from a cell editor component. Below is a simple SSCCE I made for you to see the problem. Do these simples experiments: ...
0
votes
0answers
60 views

JButton wont work properly in JTable

I am fairly new to Java and would like to ask for some help please. Any help is appreciated. I am trying to make an export button in my JTable to export results to .csv. The problem I am having is ...
-1
votes
2answers
364 views

Celleditor (JComboBox) in a specific row of a JTable

I don't know how to do to set a jcombobox in a specific row...for now I've this jcombobox for all rows but I want it in only one row: JComboBox cc = new JComboBox(); ...
1
vote
3answers
269 views

JComboBox in JTable

I've a JComboBox in 3rd and 4th column of a JTable but I don't know how to get its items...the problem isn't the method to get items but the cast JComboBox combo=(JComboBox) ...
0
votes
2answers
236 views

JFileChooser within a JTable

all I'm attempting to create a new component to go inside of a JTable. It consists of a JTextfield that when clicked on spawns a JFileChooser so the user can browser the file system and select the ...
0
votes
1answer
156 views

ProgressBar inside JTable

I have a problem that I can't solve using JTable with editor and renderer containing JProgressBar inside. I have a JButton that is use to start a thread that increment the progress bar value. The ...
0
votes
2answers
2k views

Progress Bar Java

I am using JProgressBar to show progress. But, How to show the progressBar as loading from 0 to 100? I got the code from internet and its working except the progressBar is not loading. code ...
0
votes
2answers
547 views

set selected index in JCombobox as cell editor in a jtable at edit starts

I am a beginner in Java Programming. I want to use a JComboBox as a cell editor in a JTable. But I want to set the selected index of JCombobox on the value which is the current value of the cell when ...
0
votes
1answer
37 views

How do CellEditors work?

I have problems in understanding how CellEditors work in Java. I have a JTable with a model (extends AbstractTableModel). The JTable has its CellRenderer and CellEditor. The CellEditor only overrides ...
0
votes
0answers
393 views

Add custom combobox to jTable cell after input

I am trying to edit a jTable column's cells according to user input from outside sources. In particular, when the user creates a new element in a form, I want to send its name as an available choice ...
0
votes
1answer
79 views

data in JTable is not changed

I was playing with JTable today, and i found something that i think "impossible". I can't find what is wrong with this code. I have triple checked the code. Let see if someone here can find whats ...
0
votes
1answer
80 views

JTables with Buttons to delete things

i have several Tables which display things like products which are saved in a database. So to get this products displayed i get a list from the database and give the list to the tablemodel. Now i ...
0
votes
1answer
187 views

JDatechooser inside JTable Cell

I want to add a JDateChooser inside a JTable Cell. I know how to add a textbox, combobox and checkbox. I allow the user to enter data to the table. The user should be able to select a date for every ...
1
vote
1answer
86 views

Getting Updated JTable Values

I'm trying to use a JTable in order to update users in a Java SWING application, currently when I edit a cell the results of the edit can only be obtained if I click a different cell thus firing the ...
0
votes
1answer
324 views

Rendering Toedter's JDateChooser in JTable column

Excuses for asking the same question again. I am under the impression that if I added to the original question, I wouldn't get as many views. As I'm using an MVC pattern, my Swing GUI is in a ...
0
votes
4answers
142 views

Clicking on radiobutton gives old value?

I am quite new to java, so please don't be too harsh :) I have a JTable with a column with 3 JRadioButtons in each cell. The JRadioButtons display correctly, and the correct JRadioButtons are ...
0
votes
2answers
83 views

JButton in JTable doesnt display animation when clicked

Ive don everything using this guide http://www.cordinc.com/blog/2010/01/jbuttons-in-a-jtable.html So one little problem remains. While when i click on the button event is fired and method is ...
2
votes
1answer
168 views

Combining 'Excel-like' behavior and updating the model when focus leaves my JTable

I had a request for JTable functionality that would allow data entry more like in Excel. If the user types in a cell, the previous value is replaced by the new value and one can navigate between rows ...
-1
votes
2answers
304 views

selectedRow gets cleared whenever fireTableCellUpdated is called

I believe this is quite a common problem, when i called the fireTableCellUpdated my selectedRow gets cleared. I tried saving my row by calling this: final int savedRow = mainTable.getSelectedRow(); ...
0
votes
1answer
327 views

how to set same value on java combobox in table cell editor on change event

I have a table and have an combobox on each row in same column index. So the problem is I have I try to set same value on each row when I select an value on combobox. I read previously asked question ...
0
votes
0answers
21 views

Need help displaying and editing large amounts of data in a table cell

This jsFiddle is an example of where I'm at on making a table with in-line editing of row's cells. But I am having a lot of trouble managing very large amounts of data in the far right cell in some ...
0
votes
2answers
360 views

Adding JComboBox to a JTable cell [duplicate]

Possible Duplicate: How to add a JComboBox to a JTable cell? I'm finding it difficult to add JComboBox to one of the cells of a JTable, I tried the code below but it's not working.. How ...
1
vote
1answer
1k views

JTable: How to update cell using custom editor by pop-up input dialog box?

I am learning from this oracle tutorial that uses TableDialogEditDemo.java example class I wrote a custom cell Renderer and Editor for JTable. I register them to this Oracle TableDialogEditDemo.java ...
0
votes
2answers
232 views

JTable cell editor to accept numbers only

I want to add a cell editor in a JTable that accepts numbers only (BigDecimal type to be precise). I have experimented all the proposed code and have read also all the similar questions here. However ...
0
votes
1answer
77 views

how to edit all cells in a row with the cell editor of first cell in the row in the Jtable?

I have a JTable with 6 columns. for column 0 and 1 i have created a comboBox as editor. I want all the cells in the same row be edited when user select an item from combobox of column 0. Does any ...
0
votes
3answers
471 views

How to disable mouse click event on cells of JTable?

I am validating a particular column of JTable. My requirement is that all the cells of that column should allow only alphabets.I have added keylistener to object of Jtable and written some logic as ...
1
vote
1answer
463 views

JTable remove or hide or disable a particular cell?

I am wondering if the following is possible and if it is how to do it. I would like to remove or hide or disable selection of the "empty" cell from my table: The following is the code that sets the ...
2
votes
1answer
195 views

Best Practice for Cell Editing (Single-Click or Double-Click) in Table in Swing

I want to ask some questions regarding editing cell in a table. Currently my practices of doing cell editing in a table is by double-clicking the cell to make the cell editable for text input. For ...
4
votes
3answers
135 views

a bug of JTable.columnMoved method

javax.swing.JTable has a bug, if we sort the table while a null valued cell is editing, and whose column class does not have a constructor with "new Object[] { new String() }" parameter, eg. ...
3
votes
2answers
239 views

validate a table's cell using editors

I have a Password field editor for my JTable. I want to display an error message if the text length is less than 8 bit when the user clicks to edit another field. I have tried focus listeners. But its ...
0
votes
1answer
218 views

How to make Swing jTable cell show Date object in “YY-MM-DD” format in both view and inline edit states?

I'm able to display dates in my custom dateformat (my cell renderer) but when inline editing starts in cell, date format is changed to for example "Tue Feb 14 00:00:00 CET 2012". This is nice if it ...
0
votes
0answers
138 views

Common generic type for JTextField and JComboBox

I want to create a dynamic table based on number of columns and datatype. The problem is that when I want to get element from JTextField and JComboBox generic type list. I have to iterate from ...
0
votes
1answer
185 views

how to manipulate JTable return value on specified column?

I have a JTable that has two columns (editable JTable). When a user types something in the second column, my requirement is as follows: user can only typewrite a number and comma when user type ...
1
vote
2answers
244 views

Jtable with double cell type precision

I have to make one of my columns in JTable which is double type to get only numbers and to round all with precision 2. Not only to show them with this precision but instead to write the number into ...

1 2 3