Skip to main content

Questions tagged [textinput]

For questions related to a single-line, text input. EG: `<input type="text" ...>`, or a UITextField, or TextInput (Flash), or `<textinput>` (RSS). ... Use textarea for multiline or WYSIWYG text controls.

textinput
0 votes
1 answer
14 views

How to make key cursor visible again in kivy text input?

I am learning kivy by doing atm, trying my hand at game scorekeeping app. Making some progress, but a small thing has me stumped: When giving my textbox rounded edges, afterwards I see no more key ...
Krusenstern's user avatar
0 votes
1 answer
24 views

Django - get value of a form textinput on onchange event

I am using this to get the ID and the value of a select item in a form in django with the onchange event: class forms_bdc(forms.ModelForm): [...] bdc_description_1 = forms.ModelChoiceField( widget=...
Nico44044's user avatar
  • 351
0 votes
1 answer
26 views

Kivy Problem With Text Input on Touchdown Event

When calling function by touchdown event, kivy is iterating all the Text Input widgets of the layout. I have this code here: from kivy.core.window import Window from kivy.app import App from kivy.uix....
Leonardo Tiago's user avatar
1 vote
0 answers
26 views

How to optimize React Native form page with react-native-paper TextInput for better performance?

I'm developing a form page in React Native using TextInput from react-native-paper. The page is experiencing slow load times and glitches when the screen orientation changes for adujusting the width ...
Prajwal VK's user avatar
0 votes
2 answers
53 views

Address data field automatically removes in text field in react native

Facing the issue where I enter data in the "Address" field where I want to get user's home address and it automatically gets removed while the other fields work just fine i.e. the data ...
Salman Arif's user avatar
-1 votes
1 answer
40 views

text input box can't receive pasted content

I am trying to make a text input box for a project i've been working on using pygame, I searched for various tutorials to help me make one but every single tutorial i found so far had the same issue, ...
KONNOS R's user avatar
0 votes
0 answers
49 views

online experiment in Psychopy/Javascript - character limit on user input results in weird bug

I created a simple experiment using the software Psychopy (a user interface which allows non-coders like me to create experiments in Python). It can also automatically convert the entire experiment to ...
cookielovessasa's user avatar
0 votes
0 answers
45 views

TextInput error after changing the expo workflow from managed to bare

I changed my app from managed to bare and added native iOS and Android folders, on Android I can log in, but on iOS when trying to log in I get this error [RTIInputSystemClient ...
Gustavo Carreira's user avatar
0 votes
1 answer
42 views

How can I create the password field using TextInput widget in .slint file?

everyone. According to my experience, slint is a frontend library. I was making a project that combined Rust and slint. I encountered an issue while creating a password field using TextInput widget in ...
Panda's user avatar
  • 1
2 votes
0 answers
176 views

React native TextInput selectionColor not working

The cursor color does not change using the selectedColor property. It was working normally until I updated to expo sdk 51 and tested on ios 17.4.1. Still works on android. There is no error message, ...
Thiago Alcântara's user avatar
0 votes
1 answer
63 views

How to change TextInput style and dismiss keyboard with onblur using react-native-paper

I use react-native paper and I need help... I would like to know how to reject the keyboard and also how to deactivate OnFocus when onblur is active import { View, StyleSheet } from 'react-native';...
Code's user avatar
  • 1
1 vote
0 answers
29 views

React Native TextInput Ref Callback is not working as expected. It was called every time typing

class App extends React.Component { constructor(props) { super(props) this.state = {} } _change = (e) => { this.setState({ value: e.target.value }); } ...
bo luu's user avatar
  • 11
0 votes
0 answers
23 views

React Native- TextInput horizontal padding diferent android and ios

IOS ANDROID Android must look like iOS textInput: { height: '100%', fontSize: 15, fontFamily: ...padding(0, 'horizontal'), }, This is the text input style <RNTextInput ref={ref} style={[...
THE-REK's user avatar
0 votes
2 answers
51 views

Shiny textInput populated with a list and capable of prediction

I need to add a textInput to a Shiny app that does a similar job to what this text box does. It needs to be populated with a long list of locations/coordinates and be able to predict the name of the ...
Brian Collins's user avatar
-1 votes
4 answers
166 views

Why doesn't preventDefault() of an input event stop changes to the value of a form element

This question has been asked and answered before; none of the previous answers given here seem to fix my situation. Therefore I need to ask, once again, why isn't the event prevented correctly? ...
Thegreen's user avatar

15 30 50 per page
1
2 3 4 5
92