textselection Questions
4
Solved
Simple question. How do you disable the text selection of DocumentViewer in WPF? This is the feature where an XPS document is displayed by the viewer and then text can be highlighted via mouse. The...
Halftone asked 15/12, 2008 at 12:22
0
I am trying to design a custom keyboard and a part of the keyboard is to allow the user to select some text and edit it. I wanted to provide the ability to the user to be able to switch selection o...
Insufflate asked 31/8, 2018 at 5:7
6
Solved
I often need to select a block of text, like a leading character that occurs on many lines. LibreOffice has block selection. How can I do this in Geany?
For example, I want to remove the pipe and ...
Embryogeny asked 16/9, 2013 at 7:38
2
Solved
When implementing a rich text editor in javascript, I need to apply some changes to every text node in selected range. Range object provides interface to get startContainer, endContainer, startOffs...
Commutation asked 18/2, 2016 at 8:8
9
Solved
Is it possible to disable text selection to make a PhoneGap app more similar to normal native app?
Something like this:
document.onselectstart = function() {return false;}
or:
* {
user-select...
Arjan asked 5/8, 2012 at 22:45
3
When double clicking the text in the grey label (has float: right), chrome (webkit) also selects text at the beginning of the line (has float: left). Is there any way to counter this without ...
Titanothere asked 4/4, 2013 at 10:58
1
I have a TextView that I'm looking to allow the user to search in for a specific string. If the string is found, it should highlight. Using a background span is too slow and awkward, so I am trying...
Dahlia asked 1/5, 2014 at 17:50
3
I would like to select all text on a page programmatically with the exact same result as if I would press key combo Ctrl+A.
The problem with using document.getSelection().selectAllChildren(body) i...
Fremd asked 17/5, 2017 at 15:2
1
I want to hide the Chrome for Android text selection popup that is shown if the user selects any text, such that the default text option popup (attached screenshot) does not appear.
Is there anywa...
Kristenkristi asked 20/2, 2017 at 5:10
1
Solved
I have a reader app that loads .epub files and usually I have no problem with selection at all, lately I have integrated fixed layout .epub files but I'm facing a problem: when I have a box contain...
Trillbee asked 9/6, 2015 at 7:24
2
I know one can use the below CSS to disable user text selection.
.unselectable{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-...
Cur asked 19/11, 2014 at 2:32
1
I am building a desktop application with electron. As a part of its functionality I want to get text that is currently selected, when a particular event fires. This text can be any where - webpage,...
Parlance asked 11/1, 2016 at 18:11
1
Solved
I'm looking for a way to track the text selection on a web page. I need some code to be executed whenever there is a change in selection. I have successfully done this on all major desktop browsers...
Melbamelborn asked 20/8, 2016 at 4:28
0
I have implement code of text selection in webview. It's working very fine without any issue. But I want to open custom dialog instead of default dialog. The which I have use its link is below
Ho...
Oil asked 28/8, 2016 at 17:19
2
Solved
I have a NSTextField Label that has attributed text in it. The color and size are different from the defaults. (The text is a bit larger and green) Now, I need to be able to select the text in the ...
Mcilwain asked 30/5, 2010 at 19:6
2
Solved
I have a very weird problem. In my cordova app on iOS I am getting a pop-up text-select magnifying glass when I long-press anywhere in the app.
Example:
The bubble at the top is locked to the ...
Nichani asked 27/9, 2015 at 20:6
1
My application playing HTML promotions in WebView, Html promotions having text so if user press long click android standard dialog appear Copy/Share/Find/Web Search, so is there any option to disab...
Urbanus asked 9/1, 2012 at 10:56
1
I want to preserve the text selection in a webView while preventing any contextual menu of the actioMode from being shown. Neither the new floating one nor the old actionBar, just the selection han...
Brisco asked 18/3, 2016 at 15:17
1
I know that you can get the text selection by sending a WM_COPY message and then reading the new contents of the clipboard.
But how does Windows retrieve the text selection in the first place befor...
Goar asked 18/3, 2016 at 11:59
2
Solved
Background
Android M presents a new way to handle selected text (link here), even from outside of your app . Text selection can be handled as such:
I know it's possible to handle the selected t...
Vociferous asked 28/5, 2015 at 22:26
1
I'm attempting to speed up the process for "copying and pasting" text in ALL mobile web browsers (Android, iOS, and Windows Phone) by allowing a user to click/touch an element and it will auto "sel...
Freemason asked 20/2, 2013 at 7:59
1
Solved
I was researching all over the web to no avail. My app requires a floating toolbar which appears above a selected text because the default text selection controls are not accessible in a particular...
Paw asked 12/5, 2015 at 23:14
2
Solved
I want to select text by sending location/anchorOffset and length/offset using Javascript Here is my code
var node = document.getElementById("content");
var range = document.createRange();
rang...
Gormand asked 16/7, 2013 at 11:14
4
Solved
How are the two "trapezoids" that appear during text selection (in the emulator) called?
Where can I find more information about how to control them programmatically?
For further clarity, I am at...
Gatepost asked 8/3, 2011 at 2:41
2
I am trying to disable text selection and copy paste in phonegap applicaion by using following code.
CSS
-webkit-user-select:none;
JavaScript
$('body').on('cut copy paste',function(e){e.preven...
Marijn asked 23/12, 2014 at 7:28
© 2022 - 2024 — McMap. All rights reserved.