2,105 questions
0
votes
0
answers
7
views
Use different font color and sizes in a placeholder expression
I have a text field for which I need the value to have two different font colors (based on field value) and two different font sizes. I created a text box and added two placeholders in the text box. ...
1
vote
1
answer
64
views
On Firefox, the placeholder does not reappear after a reset when it has been filled by autofill
After sending the form (in javascript and ajax) I execute a script that resets the form with a loop (node as input element).
node.value = ""
The problem is that if the inputs have been auto-...
0
votes
0
answers
21
views
Update placeholder text in "Additional Comments" field in SC Task table in ServiceNow
How to change the placeholder text in the 'Additional Comments (Customer Visible)' field? I have tried updating the out-of-the-box script for 'Modify Comments Label,' but it updates both the label and ...
0
votes
0
answers
14
views
How to add the mediaelement.js player control bar to my custom html code
I have an embedded youtube video on the homepage with a mediaelement.js Wordpress media player controls bar on top of the youtube video. Only I wish to have a placeholder on this video so youtube load ...
0
votes
0
answers
10
views
how to setup one concept for template member method with boost::type_erasure?
I have one class as below
struct AA
{
template <class U>
bool is_flag()
{
/*some logic*/
return true;
}
};
I try to setup one boost::type_erasure concept as the example with ...
0
votes
0
answers
37
views
rust input field textbox set placeholder
I would like to set the placeholder in the textbox input field, but I am not succeeding.
Can you help me?
use druid::widget::{TextBox, Flex};
use druid::{AppLauncher, Data, Lens, Widget, WidgetExt};
#...
0
votes
1
answer
29
views
using write.table function in R with sprintf with a wildcard
I want to save a .txt file using write.table in R. The file needs to utilize placeholders and wildcards.
I have successfully used a for loop and the sprintf command to loop through subjects and save ...
0
votes
2
answers
66
views
Floating Placeholder in TextBox ASP.NET 4.0
I'm new to programming and I don't know complicated things. But I want to add small features to my site. Is there an easy way to move theplaeholder up when something is typed into the text box?
<...
0
votes
1
answer
373
views
Add placeholder text to NEW PlacesAutocompleteElement
The Google Places Autocomplete API used to just use an <input> as the search field. So you could just add <input placeholder="Search">. Now the docs tell you to append a <...
0
votes
0
answers
62
views
How to disable font scaling of dropdown placeholder text and selected text from that dropdown in react native
I'm using the dropdown package react-native-element-dropdown": "^2.12.1" I want to disable the font scaling of not only the placeholder text but also when the dropdown value is selected ...
2
votes
1
answer
96
views
Unable to See Custom Placeholder in Sitefinity CMS
I am new to Sitefinity and currently working on a Sitefinity 15 project.
I've added a custom placeholder (language-selector) to my MVC view (NavigationView.cshtml) as follows:
@model Telerik....
0
votes
1
answer
62
views
Issue with Placeholder Text in Custom NumberInput Component using React
I have created a custom NumberInput component in React and integrated it with Storybook. The component works mostly as expected, but I'm encountering a couple of issues:
When I type the - or + sign, ...
0
votes
0
answers
36
views
ProximityPrompt seems to only work in certain locations
I am working on a ProximityPrompt based teleportation system, and everything seems to work save for one. It does not work in it's usual spot, but works in other rooms. I have tried everything, but it ...
2
votes
1
answer
2k
views
How to add a placeholder to MUI Select component created by TextField?
I want to add a placeholder (-- Select --) to the following MUI Select component created by TextField with select prop.
const [country, setCountry] = useState("")
<TextField
select
...
0
votes
0
answers
27
views
How to populate a matrix assigning values based on placeholders?
I have a matrix populated with letters as placeholders. I need these letters to be substituted with integers ranging from 0 to 9. Each of these integers will correspond to one digit of a number formed ...