I am using jscolor and I want to change the body background accoring to the selected color during color selection. What part of jscolor should I edit?
http://jscolor.com/try.php
Onchange event
use the following code you can change body background color.
<p>Change background:
<input class="color"
onchange="document.getElementsByTagName('BODY')[0].style.backgroundColor = '#'+this.color">
</p>
Related
I want to change the style of scrollbar of CComboBox. I can only change the selected item and background of dropbox, but haven't found any way to change the default style of scrollbar.
And is there any way to get the index of the current item shown on dropbox, so that I can draw my own scrollbar?
I am using JideTabbedPane and i have the close button displayed using the following:
myTabbedPane.setShowCloseButtonOnTab(true);
The problem is my tabbedpane's theme is a dark color and the "X" close button is an "X" which is black in color. The color of my tabs are set using the "ColorProvider", but i don't see anything in the documentation mentioning changing the color of the close button.
That property set in BasicJideTabbedPaneUI :
protected Color _closeButtonSelectedColor;
protected Color _closeButtonColor;
If you want change color of this button you should set new Color via UIDefaults or modify existing code in https://www.javatips.net/api/jide-oss-master/src/com/jidesoft/swing/JideTabbedPane.java
I do have a dark themed tableau dashboard where the fonts will be white in color. whenever I try to edit the text in textbox, the editor pops with white as its background color (font color is also white so I cant see the text). Is there any option that I can change the background color of the text editor ?
Can you post a screenshot? When I change the color I get the same matching color in the text boxes:
I've searched online, but I can't find the answer, so I am not sure if it is possible. Is it possible to hide the text in a text box, not the actual text box?
Thanks.
Your question is vague; I will assume you mean the HTML Textbox. And when you say hide, I assume you want it non-visible only as opposed to (for example) moving the value of the textbox to something like <input type ="hidden">.
Yes, you can do this with CSS
Just set the color to the same as the textbox background.
So, assuming your textbox background colour is white,
<input type="text" class="whiteText" />
and your CSS is simply
.whiteText
{
color:#fff;
}
i have this working example
now i want to be able to edit the QLineEdit and highlight items that are not in the dropdown listview,(eg. red background color) , and add auto complete feature. from my understanding, the only viable way is making a custom widget, with a QTextEdit and a listView ( since qlineedit can't display html ?)
edit: eg I have India,China in the lineEdit, but i only want China's bg color to be red since it's not in the dropdown items list
is there an easier way other than this? thanks !
the code is here: http://pastebin.com/WGrj3ud5
and here : http://www.barishcb.com/?p=426
For the auto-completion, you need to add a QCompleter to your QlineEdit
For the red background, you can dynamically change the style sheet of the QLineEdit:
# in case of item not in the dropdown listview:
self.lineEdit.setStyleSheet("background-color: rgb(255, 0, 0);")
# otherwise:
self.lineEdit.setStyleSheet("")