0
votes
4answers
56 views
Problem with JEditor Pane while resizing the frame
Hi ,
i am new to java GUI programming. i am adding a JEditor pane (with HTML text ) inside a JScrollPane and added the scroll pane to a JFrame.The problem is when i re size the frame the JEditor pane …
0
votes
2answers
59 views
broken img tag with JEditorPane / ListCellRenderer
I have this code in a ListCellRenderer which extends JEditorPane. The editor pane doesn't show the image, but instead shows a 'broken icon'. What's wrong with it?
public class TweetCellRenderer …
1
vote
2answers
881 views
JEditorPane inside JScrollPane not resizing as needed
Hai,
I am implementing a Comment box facility in my application which user can resize using mouse. This comment box contains a scrollpane which instead contains a JEditorPane in which user can insert …
0
votes
1answer
98 views
How to trigger a hyperlink using a keystroke in a Swing JEditorPane
Hi all,
I'm trying to fire hyperlinks in a JEditorPane using the "Enter" keystroke. So that the hyperlink (if any) under the caret will fire rather than having to click with the mouse.
Any help …
1
vote
2answers
81 views
Is there a way to attatch a css file to a jEditorPane?
Simple enough question: I have a string containing HTML that is being handed off to a JEditorPane for user consumption.
Can I attach a CSS file (or string containing CSS rules) to allow for more …
0
votes
2answers
402 views
Does JEditorPane have Charset problems when showing HTML?
I have the following code:
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.ScrollPaneConstants;
public class ScratchPad {
public …
1
vote
1answer
78 views
Displaying XHTML in Swing (JEditorPane)
I'm writing a Java application with GUI using Swing. One of the GUI components is a JEditorPane that renders HTML. All the rendering is fine except that it shows in the first line the XML header: ?xml …
0
votes
2answers
280 views
[swing] hyperlinks in JEditorPane in a JTable
I swear... i hope this is the last question I have to ask like this, but I'm about to go crazy.
I've got a JTable using a custom TableCellRenderer which uses a JEditorPane to display html in the …
0
votes
1answer
224 views
displaying links in java’s JTextPane without html
I need to take text from a source as plain text and display it in a JTextPane or JEditorPane. The source text is not HTML but will contain URLs between square brackets which need to be displayed and …
1
vote
2answers
119 views
How to convert from a mouse position to a character position in a JEditorPane in Java Swing
I'm currently trying to solve a problem where I need to find the position in a piece of text in a JEditorPane based on where the mouse was clicked.
Basically, when the user right-clicks over a word …
0
votes
1answer
89 views
Selecting elements in a JEditorPane
I'm creating a Java application where the user can search through a list of objects, which are then displayed in a JEditorPane window using a dynamically generated table whose size varies by the …
2
votes
3answers
218 views
What JEditorPane event should I create a listener for?
Suppose I have a JEditorPane in a JPanel. I want to be able to execute a callback each time the user enters/pastes text in the JEditorPane component. What type of listener should I create?
1
vote
2answers
166 views
scrollPane remains gray randomly when it should display editorPane (html)
For some reason my HTML page is not appearing 100% on screen when it should, it looks like a timing issue to me. If I remove scrollpane and use just EditorPane it works ok.
What kind of code should …
1
vote
2answers
273 views
How do you set the tab size in a JEditorPane?
A JTextArea's tab size can easily be set using setTabSize(int).
Is there a similar way to do it with a JEditorPane?
Right now, text with tabs in my pane looks like:
if (stuff){
more …
3
votes
4answers
752 views
Java Swing custom text JEditorPane
I have a list of Objects (the model) that are constantly appended to (similar to a log file) and I'd like to display as rich text in a JEditorPane (the view). How can I glue them together?
…
