I have a jlabel show content, then I add a hyperlink include on content. Using tag . I have a issue how to user can click this hyperlink, the mouseclick listener work. Here is my code:
String languages="<html> Deutsch, English (All), English (United Kingdom), Bahasa Indonesia, Italiano <a href=\"\"> edit</a> </html>";
GUIConstants.ELM_ALIGN_RIGHT), 240, 0));*/
JLabel lblLanguage= new JLabel();
lblLanguage.setFont((new Font("Arial", Font.PLAIN, 12)));
lblLanguage.setText(languages);
I wan if user click edit link, the popup will show. Otherwise, click the text on content, it's not working. Thanks