Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
20k views

How to get selected text from textbox control with javascript

I have a textbox and a link button. When I write some text, then select some of them and then click the link button, selected text from textbox must be show with a messagebox. How can I do it? ...
4
votes
3answers
1k views

MVVM and the TextBox's SelectedText property

I have a TextBox with a ContextMenu in it. When the user right clicks inside the TextBox and chooses the appropriate MenuItem, I would like to grab the SelectedText in my viewmodel. I have not found ...
3
votes
3answers
390 views

How to get selected(user-highlighted) text in contenteditable element and replace it?

I have a contenteditable element (div, p, ...) and I need to do two things with selected(user-highlighted) text: Get the actual html which is selected Replace the selected html with my own html Is ...
3
votes
4answers
549 views

get range and coordinat of selected text

a quick question guys... how to select the text of the page in FireFox? For example, there's a paragraph of text, user select the text in those paragraph in a regular way.then, i want to know in which ...
2
votes
2answers
242 views

how to show NSPanel on selected text on hot key press on current active app

I need help to find out, how Dictionary app showing following popup dialog for selected text on pressing CMD+CTRL+D on any application. I want to implement the same kind of functionality for my cocoa ...
2
votes
3answers
208 views

how to get selected text, but can I get surrounding context in javascript?

I am able to grab the text that a user has selected on a web page, using this code: function getSelected() { var userSelection; if (window.getSelection) { selection = window.getSelection(); ...
2
votes
2answers
1k views

WPF RichTextBox - Replace Selected Text with Custom Control

Before I start hacking in a really crude solution, I thought I'd see if someone could give me a little nudge in the right direction. What I really want to do is let a user select some text in a ...
1
vote
0answers
110 views

jQuery fieldselection replaceSelection doesn't works for me

hi this is the simple jquery fieldselection plugin. /* * jQuery plugin: fieldSelection - v0.1.1 - last change: 2006-12-16 * (c) 2006 Alex Brem <alex@0xab.cd> - http://blog.0xab.cd */ ...
1
vote
1answer
212 views

Retain user selected text on blur/focus

How can I retain the user's text selection when calling $(inputElement).focus() on some text input element, inputElement, so that they can still use Ctrl+C after inputting some text top their initial ...
1
vote
3answers
437 views

selected text and xy coordinates

how to get a selected text and xy coordinates of the word in the same time??
1
vote
1answer
162 views

nodeName for selected text in Javascript

I have HTML which looks something like this: <span id="text"> <span class="segment" id="first">some text</span> <span class="segment" id="sec">bla bla</span> ...
1
vote
1answer
320 views

How to highlight an HTML content and save it to the database for future loads

I'm trying to highlight the selected text contents by the user inside the HTML page I loaded using PHP + XSL transformation. I have seen some solutions related with highlighting current selected text, ...
1
vote
3answers
1k views

Select the Initial Text in a Silverlight TextBox

I am trying to figure out the best way to select all the text in a TextBox the first time the control is loaded. I am using the MVVM pattern, so I am using two-way binding for the Text property of the ...
0
votes
0answers
19 views

Get user selected text from InfoPath Add-in

I have created a custom task pane for InfoPath 2010. In this task pane when I click a button I need to get the text that is currently selected by the user in the form. As far as I've seen there is ...
0
votes
1answer
49 views

Changing vim selected text colors

I would like to add a color scheme rule in vim in which I could apply black over white in a text everytime it's selected in visual mode. Any ideas ? Thank you.
0
votes
2answers
148 views

UITextField SigAbrts on selectedTextRange

I'm trying to find and delete the selected text in a text field, but it SIGABRTs every time. I keep getting an NSInvalidArgumentException when I try to retrieve the selectedTextRange. In fact I ...
0
votes
4answers
46 views

Tool to retrieve CSS properties afecting to the selected Text in a browser?

As you know in any browser you can select a 'piece' of the website and you can get the HTML code for your selection, well, is there any tool you can do the same and it shows you the CSS that only ...
0
votes
0answers
165 views

How to get selected text from Ckeditor area in Smartgwt?

I have to integrate specific functions into CKeditor in Smartgwt. I prepared modal window for that which works well but I need to modify text in editor area. My thought is to call method like ...
0
votes
1answer
302 views

Get font of selected text in JEditorPane

Basically the question says it all; I have a JEditiorPane with the content type 'text/html'. I have created a font family and font size combo box and enabled them using the StyledEditorKit actions. ...
0
votes
1answer
320 views

Selection text disappears when contextmenu pops up

Greetings All, I am getting some weird behavior from WPF when i create an event to programatically open a context menu. once I select a text and right click the highlight of the selection disappears ...
0
votes
1answer
59 views

is it possible if I change the contents of the website content while the content words were selected to determine the index position of the word?

hello I want to ask something .. is it possible if I change the contents of the website content while the content words were selected to determine the index position of the word? example: there are 2 ...
0
votes
1answer
130 views

javascript : is it possible using charAt function to get selected text?

is it possible I could use charAt function within function get selection as below? getSelected function () { var userSelection; if (window.getSelection) { userSelection = ...
0
votes
1answer
300 views

how to get selected text surrounding context in javascript in different paragraph?

hi I have a few problems: What might I get the word around the word selected, if the word before and after the selected word given limits only 20 words that surround the selected word? how to get ...
0
votes
1answer
301 views

javascript to get next-previous paragraph of selected text in web page

hello i want i have function to get paragraph of selected text. this is the function to get current paragraph of selected text function getSelected() { var userSelection; if ...
0
votes
4answers
820 views

What is the simplest way to get the selected text in a combo box containing only text entries?

My WPF ComboBox contains only text entries. The user will select one. What is the simplest way to get the text of the selected ComboBoxItem? Please answer in both C# and Visual Basic. Here is my ...
0
votes
1answer
88 views

copying text from my cocoa application to another

I have a cocoa application, that on pressing a certain key gets selected text from the frontmost application and processes it. Now I'd like to replace the selection that it took with a processed text. ...
0
votes
1answer
483 views

Changing text color upon selection of a specific cell/row in a UITableView on Iphone?

I have a simple grouped UITableView fed from a couple of arrays. Changing the selected text color is no issue, using the cell.selectedTextColor method. But this results in the same color being ...
-1
votes
2answers
121 views

position in javascript

hello i have a problem with my code.. why it doesn't work..?? is there fault with my code? function selectWord() { var select = window.getSelection(); if ...