Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
102 views

Why do cell renderers often extend JLabel?

I noticed this is common. For example DefaultListCellRenderer, DefaultTableCellRenderer, and DefaultTreeCellRenderer all use it. Also a lot of the custom cell renderers I see online use this as well. ...
6
votes
2answers
2k views

Java Swing - JList custom cell rendering - capturing actions

Any time I make a custom cell renderer for a JList, any elements I add to it don't ever respond to actions. For instance, If I have the cell renderer return a JPanel with elements on it, one of which ...
2
votes
1answer
101 views

Expanded JTree Rendering

When the tree is expanded and I tried to rename the tree node not all the name displayed only about 4 5 letters and the others as (...) but if the tree is collapsed, every thing is OK. The following ...
2
votes
2answers
737 views

JTable change cell colors using TableCellRenderer

I am using a JTable in my GUI application as a grid to represent positions for a game. I want the cells of the table that represent a certain position of an object to have a certain color, and on some ...
2
votes
1answer
629 views

Custom TableCellRenderer not working (table row rendering)

I'm trying to render an specific row of my jtable (it should have a different background color and it should have bold characters). I found several questions regarding how to implement a custom ...
2
votes
2answers
242 views

Java Swing: Set member which is displayed in JListBox

Is there a comparable mechanism to the .NET "set DisplayMember" for the JListBox Swing component? Overriding the toString() method is not sufficient because I also want to be able to change the ...
1
vote
2answers
115 views

Jtree getTreeCellRendererComponent execute several times

i've got a problem with a custom TreeCellRenderer. the overridable method getTreeCellRendererComponent is executed about 4 time when i click on a node. Does anybody have an idea about this? Thanks by ...
1
vote
0answers
185 views

cellRenderer single cell height

How do you change the height of a single cell. override protected function drawLayout():void { textField.width = this.width; height = 64; textField.height = height; ...
1
vote
2answers
276 views

How to set icon in a column of JTable?

I am able to set the column's header but not able to set icon in all the rows of first column of JTable. public class iconRenderer extends DefaultTableCellRenderer{ public Component ...
1
vote
1answer
230 views

How to set the color of a single cell in a pygtk treeview?

I have a pygtk treeview with a couple of columns. During runtime i add constantly new rows. Each cell contains a string. Normaly, i would use a gtk.CellRenderer for each row, but i want to set the ...
1
vote
1answer
809 views

Rendering a component into an ExtJS grid

I want to render a split button into a column in a grid to perform actions on each row. I can't seem to figure out how to build a custom cell renderer that will accomplish this. Each cell will have ...
1
vote
1answer
471 views

gtk: set cellrenderertext foreground color when a row is highlighted

When I have a gtk.CellRendererText, I can associate its foreground color with one of the tree store's columns, and set the foreground-set attribute to True, to change the color of the text in that ...
1
vote
1answer
286 views

Java - Changing JTable renderer per class

I was hoping someone could explain something to me as I found my solution, but I don't understand why it works. I wanted to set a default renderer by Class type to a whole table, not knowing at ...
1
vote
1answer
396 views

PyGTK: Doubleclick on CellRenderer

In my PyGTK application I currently use 'editable' to make cells editable. But since my cell contents sometimes are really really large I want to ask the user for changes in a new window when he ...
1
vote
2answers
60 views

Creating a table with an initial element selected

I want to create a table which displays in each row a set of data, in addition to a radio button for possible selection. This can be achieved easily by using a simple table model class which extends ...
1
vote
5answers
903 views

Swing: TableCellRenderer that uses boldface for some of the cells

Simple question, but I can't seem to find the answer anywhere online. How do you use a custom TableCellRenderer to render some of the table cells in boldface? I know how to use TableCellRenderer to ...
1
vote
1answer
179 views

GObject Subclassing in Ruby for custom CellRenderer in GtkTreeView

I am trying to implement a customized CellRenderer in Ruby/GTK, and I've already found this suggestion: GObject subclassing in Ruby However, when I try the following: class CellRendererCustom < ...
1
vote
2answers
483 views

Have something loaded only when JList item is visibile

i'm implementing a Jlist populated with a lot of elements. Each element corresponds to a image so i'd like to show a resized preview of them inside each row of the list. I've implemented a custom ...
1
vote
0answers
385 views

Pygtk cellrender combox + progress bar in a treeview

So the issue is if the combobox of the row is open (pop'd up) and I update the progress bar value self.store.set(iter, 2, self.core.progress ) Then the combo box immediately closes, if the update ...
0
votes
2answers
32 views

Check Box Node Tree , Custom Renderer

I have a custom checkbox node tree . The structure is like this . You can notice that the subtree is drawn from the check box node tree. And what i need is , The sub tree must be drawn under ...
0
votes
1answer
35 views

Changing the icon of particular node in jtree dynamically based on its index

My problem is like this: I have a tree with root and 4 leafnodes. I need to change icon of a particular node (say 2nd leaf node). My algorithm is like this: step 1: Find index of the required node ...
0
votes
1answer
35 views

Change the color of one or more nodes in Jtree dynamically

I have created Jtree with Root node and 4Subnodes. My problem is like this: I need to change the foreground and background color of a particular node dynamically. How can i do it? Help me with ...
0
votes
2answers
75 views

Cell renderer class for a JComboBox in a JTable without parameters in the constructor

I am creating a cell renderer for a JComboBox in a JTable. The constructor of this class should take no parameter. I have the following basic code for the getTableCellRendererComponent method: ...
0
votes
1answer
115 views

How to set JComboBox in specified cell of JTable

I have a problem. I have been trying to set JComboBox in JTable cell, but only cell with specified parameters (not all cells in column). I've customized DefaultTableCellRenderer and I'm trying to ...
0
votes
0answers
247 views

JTable row color change based on a column value- on pop up click [closed]

Possible Duplicate: JTable row color change based on a column value- on pop up click My jtable is loaded with data and this is where I call my Pop up functionality on jTable. ...
0
votes
1answer
498 views

Flash Datagrid change cell color depending upon updated data

I have a datagrid in my Flash app whose data keeps updating quite frequently. On every update, I need to change the cell color of only those cells whose data has changed. That too, if the updated ...
0
votes
1answer
535 views

As3 fl.controls.List adding button to list item

I want to add a SimpleButton to a list item in a list component. I am getting the CellRenderer for the list item I want and using the addChild method to add the simple button. The button appears in ...
0
votes
1answer
80 views

Getting Error #1009 with CellRenderers

I've been getting... User exception thrown: TypeError: Error #1009: Cannot access a property or method of a null object reference. at fl.controls::CheckBox/drawLayout() at ...
0
votes
2answers
118 views

Access gtk.TreeIter inside render() Function of gtk.CellRenderer — pygtk

I am trying to code the following: Two Columns. One contains a itemId, the other one contains a typeId. I want to render the itemId only when the typeId equals a specific value. class ...
0
votes
1answer
385 views

How to make the jList selectable inside a jTable

How to make the jList selectable and jScrollPane scrollable inside a jTable. This is my table code : private JTable getCalendarTable() { if (calendarTable == null) { calendarTable = new ...
0
votes
1answer
145 views

How to truncate a text in a custom GtkCellRenderer?

I trying to create custom GtkCellRenderer with some text. And I want this text truncated, when a size of GtkCellRenderer is smaller than size of text. For example: How can I do this? Is this some ...