Sathurshan
- Total activity 25
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 7
-
Edited How to set border for combo box?
Answeredimport com.intellij.openapi.ui.ComboBox;ComboBox cmbList = new ComboBox(); As you can see the combo boxes has no borders in dracula theme. I set the border explicitly for the combo box but blue co... -
Created Text color in the JTextField not changing according to the theme
Answeredwe are using a table to show the details to the user. Inside the table has two JTextFields. Text color is black while typing on the Text-field. At the moment editor using Dracula theme. black color... -
Edited Sorted list after loaded into the table not in proper order as expected in InteliJ IDE 2020 versions
AnsweredOur plugin uses table to show the results. when click on the table header according to the column which is clicked by user the results on the table get sorted. Sorting the results working perfectly... -
Edited Not able to change button style in InteliJ 2020.1
AnsweredBefore InteliJ Idea version 2020.1 button disable style worked as expected But in InteliJ 2020.1 button disable look isn't working properly. JButton btn = new JButton();btn.setBorder(null);btn.setO... -
Edited Combo box not displays the text properly in intelij idea version 2019.2 and 2019.3 but it works for other versions
AnsweredAfter selecting the text in the combo box popup .The selected text not shows properly For example: the selected text is Select Description but it displays like Sel.....tion it need to be works like... -
Created How to set the dismiss delay for the tooltip
AnsweredWe can enable over own CustomTooltip using TooltipManager but IdeTooltipManager also showing along with the custom tooltip. and we cannot able set the dismiss delay or hide for the tooltip through ...