The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
2answers
9k views

WPF ListView Inactive Selection Color

I'm creating a WPF application where several ListView selections are made in a row (similar to the iTunes browser). The problem is that the default inactive selection color is too light. (see below) ...
16
votes
5answers
304 views

A challenging algorithm problem

In my workplace I have stumbled upon the following problem that I am asked to solve. A solution is preferred although not absolutely required. There is a database with a set of stories, and each ...
13
votes
2answers
937 views

Multiple selections in VIM

Is it possible to select multiple non-consecutive lines (or sections) in VIM's visual mode? If so, how?
12
votes
2answers
172 views

Selecting text behind another element with createEvent

I have a scenario where I have some text, which should be user-selectable. The problem is, that there's an UI overlay on top of it, which prevents selecting text by default. The logical way to keep ...
11
votes
2answers
872 views

Highlight text range using JavaScript

I would like to highlight (apply css to) a certain text range, denoted by its start and end position. This is more diffucult than it seems, since there may be other tags within the text, that need to ...
11
votes
4answers
1k views

Use Javascript to get selected text in Mobile Safari

So I'm working on a bookmarklet where it would be ideal for me to grab the content selected by the user using the "loop". Both window.getSelection and document.getSelection are functions that I can ...
10
votes
4answers
149 views

RAD Studio 2009 Persistent Selection Issue: Bug or Feature?

Sometimes, when coding in RAD Studio 2009 (Delphi), suddently the behaviour of the code editor changes. After such an event, a selection is no longer cleared on character input. This often happens ...
10
votes
10answers
4k views

Styling the selection color of an input type=text, possible?

Having an input <input type="text" id="myTest" value="bla bla bla"/> and doing this (using jQuery) $('#myTest').select(); causes "bla bla bla" to be selected with default dark blue ...
9
votes
2answers
67 views

jQuery checkbox: select all/none except one

I have a checkbox select all issue. I have multiple checkbox that can be triggered by a master one. If the master one is check then you can select any checkbox (which this works). Now my problem is ...
9
votes
3answers
378 views

Prevent selection being greyed out in iframe in Firefox without using contenteditable

In Firefox 3 and later (and probably older versions), selecting content within an iframe always seems to use the grey selection background colour used for a document that doesn't currently have focus, ...
9
votes
3answers
383 views

Fast weighted random selection from very large set of values

I'm currently working on a problem that requires the random selection of an element from a set. Each of the elements has a weight(selection probability) associated with it. My problem is that for ...
8
votes
2answers
154 views

Non-continuous selections in chrome?

Update I recently discovered you can programatically create selections with Chrome which aren't continuous, by either replacing elements / textnodes inbetween in the parts you want unselected or ...
8
votes
2answers
2k views

How do I select a single cell in a WPF datagrid?

When I click a cell in a WPF datagrid, the whole row is selected, and when I press Ctrl + C to copy the content, the whole row i copied... How do I select and copy the content of a single cell?
8
votes
3answers
3k views

JavaScript selection/range framework

I've been working with selection/range objects, and because to the incredible amount of inconsistencies between browsers for specific selection/range stuff (even more than the DOM) I was wondering if ...
7
votes
2answers
166 views

TextView setScaleX()/setScaleY() and setTextIsSelectable(true) selection

I have TextView and want to use setScaleX()/setScaleY() to make the text zoomable. But when I try to select some text by calling someTextView.setTextIsSelectable(true); and TextView has zoom other ...
7
votes
1answer
880 views

WPF - change selection style for lists in WPF application to default Windows 7 style

I have a problem in my WPF application with selection style on list elements. Every list i WPF get dark blue background color and white text color. Why is the default Windows 7 selection style (e.g. ...
7
votes
1answer
8k views

How to change the blue highlight color of a UITableViewCell?

I'm wondering how to change the blue highlight/selection color of a UITableViewCell, any ideas? Thomas
7
votes
4answers
4k views

Prevent selection in HTML

I have a div on a HTML page and whenever I press the mouse and move it, it will show that "can't drop" cursor like it selects something. Is there a way to disable selection? I tried CSS user-select ...
7
votes
3answers
2k views

How do I get the selected text from the focused window using native Win32 API?

My app. will be running on the system try monitoring for a hotkey; when the user selects some text in any window and presses a hotkey, how do I obtain the selected text, when I get the WM_HOTKEY ...
7
votes
4answers
6k views

Textarea Selection

The Problem I am working on an in-browser editor within a textarea. I have started looking for some information on dealing with textarea selection and found this jQuery plugin that does some simple ...
6
votes
5answers
150 views

How to return the kth element in TreeSet in Java

Maybe I am not using the right data structure. I need to use a set, but also want to efficiently return the kth smallest element. Can TreeSet in java do this? There seems no built-in method of TreeSet ...
6
votes
2answers
3k views

XPath: select text node

Having the following XML: <node>Text1<subnode/>text2</node> How do I select either the first or the second text node via XPath? Somehting like this: /node/text()[2] of course ...
6
votes
3answers
948 views

Replacing text inside textarea without focus

I want to replace selected text(or insert new text after cursor position if nothing is selected). The new text is entered from another textbox. I want to be able to insert new text without clicking ...
6
votes
1answer
305 views

Best practice for multiple selection web UI?

I've been looking at various ways to allow a user to select one or more choices from a list of approximately 29-30 options. I've come up with the following four types, and wonder which is ...
6
votes
2answers
12k views

jQuery: Get selected option from dropdown

I am trying to get the selected option from a dropdown and populate another item with that text, as follows. IE is barking up a storm and it doesn't work in Firefox: $('#ddlCodes').change(function() ...
6
votes
4answers
1k views

Set textarea selection in Internet Explorer

I'm looking for a way to set a selection in a textarea in Internet Explorer. In other browsers, this works just fine: textarea.selectionStart = start; textarea.selectionEnd = end; In IE, I assume I ...
6
votes
2answers
2k views

iPhone Development: Grabbing selected/highlighted text on UIWebView

Greetings, Please kindly advice on how possibly I can get the selected text on UIWebVIew. I went on to search on how to deal with selected/highlighted text and found the following: Selection and ...
6
votes
4answers
836 views

Choosing a Subversion Server

After settling on Subversion as my RCS needs (and AnkhSVN/TortoiseSVN for my primary Subversion clients), I am trying to choose an SVN server. I have looked at a bunch of them: Local (ie file:///) ...
6
votes
3answers
2k views

Firefox Extension: Get selected text

I am working on a simple Firefox Extension and I want to get the selected text. I tried this: var WordCount = { /* ... */ changeSelected: function() { var selectedText = ...
6
votes
2answers
4k views

WPF - How to combine DataTrigger and Trigger?

NOTE I have asked the related question: How to combine DataTrigger and EventTrigger? I have a list box containing several items. The item's class implements INotifyPropertyChanged and has a ...
5
votes
3answers
385 views

How to use Android Spinner like a drop-down list

It's taken me quite a while to get my head around the Android Spinner. After several failed implementation attempts, and after reading many questions partially similar to my own but without ...
5
votes
3answers
158 views

What's the equivalent 'nth_element' function in Java?

I don't want get a sorted array, just nth element's value. For example, given the array a = [20, 5, 1, -3] I'd like to be able to query nth_element(a,2) = 1 In C++, there is a function ...
5
votes
3answers
343 views

Saving a selection for later use in JS

I've got a rich text editor in an iframe with designMode that does syntax highlighting for small blocks of text. I'd like it to update the highlighting on keyup, but messing with the DOM causes the ...
5
votes
1answer
165 views

Losing selection when clicking checkbox label

I am trying to get a checkbox with a label to function so that when you have text selected in a contenteditable div, clicking on the label will not lose the selection from the div. The label still ...
5
votes
2answers
216 views

Get the raw HTML of selected content using javascript

How would I get the raw HTML of the selected content on a page using Javascript? For the sake of simplicity, I'm sticking with browsers supporting window.getSelection. Here is an example; the ...
5
votes
2answers
544 views

WPF ListBox setting focus to first item after losing focus

Problem: I'm having trouble managing focus and item selection in a WPF ListBox with an embedded ListBox and some custom selection management in the code behind. Background: The "parent" ListBox is ...
5
votes
1answer
2k views

Disabling text selection via doubleclick with javascript

When double-clicking on a html page most browsers select some text - e.g. the word you doubleclick on. Is there a way to get rid of this behaviour? Note that I do not want to disable regular ...
5
votes
3answers
204 views

selection algorithm problem

Suppose you have an array A of n items, and you want to find the k items in A closest to the median of A. For example, if A contains the 9 values {7, 14, 10, 12, 2, 11, 29, 3, 4} and k = 5, then the ...
5
votes
4answers
5k views

Android Spinner selection

The OnItemSelectedListener event handler gets called both when a spinner selection is changed programmatically, and when a user physically clicks the spinner control. Is is possible to determine if an ...
5
votes
1answer
3k views

Selection ranges in webkit (Safari/Chrome)

I'm using a content-editable iframe to create a syntax-highlighter in javascript and one of the most important things is to be able to indent code properly. The following code works just as it should ...
5
votes
12answers
970 views

Interview test for applied scientific computing job [closed]

Do you know a good and objective question/test to examine applicants for a scientific computing job? (In fact, this test comes after the candidate passed an interview.) 1st) They need to be ...
5
votes
2answers
2k views

MVVM selecting a treeview item programmatically

It seems that others have had variations on this question, but from what I can tell it hasnt been addressed for folks using collections in a single view model. I have a VM that contains an ...
5
votes
2answers
3k views

How can I get the DOM element which contains the current selection?

You can select a part of a web page with the mouse. I know that I can get the currently selected text but how can I get the DOM element which contains the start or end of the current selection?
5
votes
3answers
587 views

Selection StartContainer in IE

I have a selection object where in IE, I run range = selection.createRange(); I then try to get the startContainer but am unable to figure out how. All examples show me SETTING the startContainer, ...
5
votes
1answer
796 views

WPF - ListBoxItem selection

I have a ListBox showing items using the following DataTemplate: <DataTemplate x:Key="PersonTemplate" DataType="{x:Type DAL:ResultItem}" > <StackPanel Width="280" > <TextBox ...
4
votes
3answers
57 views

What is the theory to select one item based on various criteria?

I need to solve a problem where an item A must be compared to thousands of other items, and find out which items are the most similar to item A. I want to assign a weight to each of these items ...
4
votes
4answers
83 views

Set the text selection color with jQuery. Demo not working

http://jsfiddle.net/uKdPM/ I've set the ::selection color in css, so when you highlight the text on the screen, the color of the text is pink. I'm trying to now override that color through jQuery ...
4
votes
1answer
77 views

Is there a way to get ruby text to convert to HTML text, for indexing purposes? or how do I get the index of text in HTML accurately?

In the above image, I've selected the phrase 'macro up myself' which starts at index 140, and ends at index 155. (Indexes are calculated via .outerHTML of the parent element (the div holding all the ...
4
votes
1answer
217 views

Specific UIWebView Selections (only entire words/sentences)

I want users to only be able to select an entire sentences within my UIWebView. I'm using my own UIMenuItem (a bookmark button) in a UIWebView. I am going to save this bookmark (core data) and would ...
4
votes
4answers
388 views

How can the on-screen text selection widget be changed?

I noticed that different Android applications have different methods of selecting text. If you click-hold in Browser, there is a close up of the text plus the left and right edges can be dragged to ...

1 2 3 4 5 17