Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
181 views

Creating JTable inside node of JTree

I know that this question is being asked before but I did not get proper solution. I read about outline but that was just opposite of what I want i.e. JTable inside JTree I want to display data in a ...
1
vote
1answer
29 views

How can you do custom drawing but with a mask?

We have a control which we do our own custom drawing in OnRender. However, we would like to use a PNG with transparency as sort of a stencil for various drawing 'passes' if you will. Now we already ...
1
vote
1answer
257 views

JList with Image and text: Where text is coming from an ArrayList<String>

i have a simple example of a JList that is getting it's data from an ArrayList but i want to show an image next to each string in the list. I have written a custom cell renderer (IconListRenderer) ...
0
votes
1answer
283 views

AS3 How to create a custom list item renderer with image(base64 png string) at runtime

I'm a newbie to Flex. I'm trying to create a list with icons. There're a lot of examples but seems all of them are using embedded images. My problem is how can I create the list with icon from base64 ...
0
votes
2answers
2k views

How to register a custom renderer in JSF?

We have numerical values in our database, representing a two-value-state. Of course this would perfectly match a boolean, but oracle has no such datatype. The NUMBER(1,0) type from the database is ...
0
votes
1answer
2k views

Java/Swing: How to draw a simple bar graph in a custom renderer for a JLabel

I would like to dynamically create a minimal transparent bar graph to display over a canvas. I was thinking of using a custom renderer for a JButton or a JLabel; but how do I draw my bar graph in ...