input Questions
13
Solved
I'm presented with a rather silly problem. I am in the process of creating my first React application and I have encountered a little issue, where I am not able to clear my input value, after I sub...
Vannavannatta asked 3/10, 2017 at 7:40
3
Solved
I want to prompt the user for some input detail, and then use it later as a command line argument.
Syllabi asked 4/10, 2009 at 8:55
5
Solved
How do you use the @patch decorator to patch the built-in input() function?
For example, here's a function in question.py that I'd like to test, which contains a call to input():
def query_yes_no...
Deliciadelicious asked 10/8, 2013 at 11:16
7
Solved
I'd like to disable the spellcheck on my textfields <input type="text"> so as not to have any ugly red squigglies.
I understand others have asked this same question, but they always make the...
Whitfield asked 13/5, 2011 at 2:52
13
I am wondering whether it is possible to set the date format in the html <input type="date"></input> tag... Currently it is yyyy-mm-dd, while I need it in the dd-mm-yyyy format.
5
Does anyone know how to hide the calendar icon on a date field in Chrome?
<input type="date" />
When I look it up I find that I should use ::-webkit-calendar-picker-indicator but th...
Meilen asked 11/9, 2019 at 15:48
15
Solved
How do I limit or restrict the user to only enter a maximum of five characters in the textbox?
Below is the input field as part of my form:
<input type="text" id="sessionNo" name="sessionNum" ...
6
Solved
$("#colour").change(function(event) {
console.log($(this).val());
});
input[type=color] {
width: 100px;
height: 100px;
border-radius: 50%;
overflow: hidden;
}
<script src="htt...
Drucilladrucy asked 16/2, 2018 at 17:57
4
Solved
What I need is in English browser when I open website that has another culture and UI (i.e. Sweden) to see the proper decimal separator.
How to archive it?
<input type="number" step="0.1" pat...
Tolerance asked 12/11, 2014 at 15:12
46
Given an input element:
<input type="date" />
Is there any way to set the default value of the date field to today's date?
9
I'm trying to make a search bar that will look nice. What I did is, I made an image of an search bar and I'm adding the image to the back-ground of the input and I'm editing the place and the size ...
Penates asked 27/12, 2013 at 16:21
9
I have an input box and I want it to be disabled and at the same time hide it to avoid problems when porting my form.
So far I have the following code to hide my input:
$(".shownextrow").click(fu...
Intoxicating asked 27/9, 2010 at 18:29
6
I am using the input type range bar in my code and would like to change the colour. I don't want to change anything else about it, I just want to change the colour from blue to something else.
I kn...
9
Solved
I am in a mobile app and I use an input field in order user submit a number.
When I go back and return to the page that input field present the latest number input displayed at the input field.
I...
47
Solved
On a form I'm working on, Chrome is auto-filling the email and password fields. This is fine, however, Chrome changes the background colour to a pale yellow colour.
The design I'm working on is us...
Mihe asked 6/5, 2010 at 13:36
1
I'm developing an app using ionic3, but when using it on android, I can't select text inside <ion-input>, <input>, <ion-textarea> or <textarea> tags.
When testing it in the ...
Integration asked 15/11, 2017 at 23:58
7
Solved
I noticed that if i use <input type="number" /> the leading zeros are not removed. I also saw a lot of discussion on how keeping leading zeros.
For example "000023" and "23" are the same nu...
Kodiak asked 3/6, 2015 at 16:48
4
Solved
I'm stumped why the mousewheel will not increment/decrement the value in a simple form element.
<input type="number" step="0.125" min="0" max="0.875">
It works on this snippet jus...
9
I am attempting to accept input from the console in Kotlin but it is difficult because I am not too sure about the syntax.
I begin with the main
fun main(args: Array<String>) {
}
WHAT ...
2
In HTML you can add the step attribute to inputs of type number. I wanted this because I liked how it can simplify the input for the user, by only pressing the up/down key.
I found out that an add...
Violence asked 7/1, 2017 at 15:19
3
Solved
Today when I filled my calendar at google I saw that the description of the event is in bold font:
<input id=":g" name=":g" type="text" class="textinput" dir="ltr">
Is it possible to rende...
Lucent asked 16/3, 2011 at 9:50
2
Solved
shadcn Input + Form + Zod "A component is changing an uncontrolled input to be controlled"
a little background
Im using shadcn ui library and Zod to create some simple forms in my Next.js React app.
The input are of type select and text
The problem
I'm following shadcn documentation on h...
3
Solved
I have a problem with input checking. I don't want to send the request if the input length is less than 3.
My form:
<form method='post' action=''>
Albūma nosaukums: # # this is the input -...
Thirtytwomo asked 28/8, 2012 at 17:50
8
Solved
I'm looking at the problem:
Write a program which reads a sequence of integers and displays them in ascending order.
I'm creating an ArrayList (which I am new to) and I want to populate with inte...
10
Solved
I want to restrict user input to positive numbers in an html form.
I know you can set min="0", however it is possible to bypass this by manually entering a negative number.
Is there any other w...
© 2022 - 2024 — McMap. All rights reserved.