textarea Questions
3
I'm trying to remove dots in a <textarea> which are present at the bottom-right corner.
Here's an example of what I mean (from Chrome):
How to remove those diagonal lines?
8
Solved
This is PURE HTML. (no php or anything like that, if you want to know the background its a C# application with HTML in a web view).
All my HTML files are nicely formatted and correctly indented fo...
Supervise asked 2/11, 2011 at 14:14
3
Solved
I have a textarea that contains code. The problem is, that in order for it to look good, the Textarea has to stop wrapping the text, and use a Horizontal Scrollbar instead.
I tried this:
textarea...
8
Solved
I have this code that disable the button when the text is empty, but I have a textarea html code. How can I include this that when the text and textarea are both empty the button will be disabled a...
Second asked 6/11, 2013 at 7:15
1
Solved
Hey all I am trying my best to figure out how to get the X/Y of the highlighted word inside a textarea field.
This is my current code:
<!DOCTYPE html>
<html>
<head>
<script t...
Montes asked 5/12, 2019 at 19:25
8
Solved
A JavaScript function selects a certain word in a textarea using .setSelectionRange().
In Firefox, the textarea automatically scrolls down to show the selected text. In Chrome (v14), it does not. I...
Gooding asked 18/9, 2011 at 20:35
6
How can I make it so that my <textarea> doesn't go over the border of small displays? I want that my <textarea> gets the width of the current display.
<textarea></textarea...
Natalienatalina asked 21/8, 2016 at 19:32
8
Solved
I'm trying to turn off textarea resizing in my site; right now I'm using this method:
.textarea {
clear:left;
min-width: 267px;
max-width: 267px;
min-height:150px;
max-height:150px;
}
I kno...
4
I tried applying the :maxlenght => 40 on a textarea on my form.
But it didn't work out.
Can we have a length limit on a textarea?
The code for text area is
<%= f.text_area :data,
:rows => ...
Brusquerie asked 20/5, 2009 at 5:50
2
Solved
How can I get, for an HTML textarea element, called back on all selection changes to the text edited therein?
(I am currently using the hack of combining keyup, keypress, and mousemove (for draggin...
Allout asked 9/10, 2017 at 16:58
1
Solved
I implemented a <textarea> in Elm such that tabs indent and unindent instead of change focus to another HTML element. Works great except that unindenting sometimes causes the selection to dis...
Mononuclear asked 21/6, 2017 at 1:20
3
I have this bit of code, which I use to get the cursor's position in an editable div :
function getMeCurPos(element){
if (typeof window.getSelection != "undefined") {
var range = window.getSele...
Yen asked 14/4, 2013 at 21:50
4
I am using the following directive to allow an auto-sizing to a text area depending on user input:
import { ElementRef, HostListener, Directive, OnInit } from '@angular/core';
@Directive({
selec...
2
Solved
I have a TextField like this:
new Flexible(
fit: FlexFit.loose,
child: new Container(
alignment: FractionalOffset.topLeft,
child: new TextField(
decoration: new InputDecoration(
hintText: 'A...
2
Solved
I am able to import MatTextareaAutosize from Angular Material, but I see nothing about it in the docs and have not found a way to use it.
I expected to use something like this:
<mat-form-field...
Kalpak asked 24/10, 2017 at 0:2
10
Solved
I want to set a default value for my html <textarea>. I read from a material that to add default value you have to do something like <textarea>This is default text</textarea>...
2
Solved
Basically what i want is if a user selects some text in a textarea and presses ctrl + b then the text within the selection should be surrounded by stars.
so basically what I want is :
1) texta...
Twister asked 27/5, 2016 at 11:41
1
I am working in React.js and have textarea elements that dynamically expand and contract based on the size of the user's input. The intended functionality is as follows:
This works correctly in a ...
Polder asked 31/1, 2019 at 0:14
4
Solved
I am using a vaadin TextArea as a rough console. The user can enter commands which should be executed when he presses the enter key. Is there a way to specify this with a listener on the TextArea?
...
4
Solved
I noticed that the resize button on my text area when hovered and/or clicked is staying as an arrow.
It seems to me like it should be a pointer.
seeing as there is css to remove or add the resize...
Emprise asked 29/3, 2012 at 19:58
5
Solved
I'd like to be able to convert specific textareas on a page to be ACE editors.
Does anyone have any pointers please?
EDIT:
I have the the editor.html file working with one textarea, but as soon ...
Warm asked 22/6, 2011 at 13:12
11
Solved
I got a rails app where I can input a few paragraphs of text into my model. The problem is I dont know how to input any line breaks.
I've tried to add " {ln}{/ln} ; {&nbsp} and {br}{/br}" but ...
Daysidayspring asked 29/6, 2010 at 2:7
3
Solved
How can I assign text containing \r\n to an ExtJs textarea and get to see line breaks instead of the actual \r\n characters? When I manually press the Enter key and check Firebug, I can see \r\n ge...
7
Solved
I have a string of text that I display in a textarea (right-to-left orientation). The user can resize the textarea dynamically (I use jquery for this) and the text will wrap as necessary.
When the...
Cressler asked 18/1, 2011 at 1:48
4
Solved
I would like to have (preferrably in jQuery) regular text input box which can be clicked and dragged by its right-bottom corner (e.g. like textareas have in Chrome) and resized by user ?
Can't fin...
Upas asked 20/12, 2011 at 7:43
© 2022 - 2024 — McMap. All rights reserved.