Tagged Questions
Caret refers to the spacing symbol ^ in ASCII. A caret can also be called a wedge, up-arrow, hat, control character, or chevron. In graphical user interface terminology, caret sometimes refers to a text insertion point indicator, often a blinking vertical bar. In this context, it may be used interchangeably with the word cursor.
10
votes
5answers
7k views
jquery Setting cursor position in contenteditable div
The old version of the question is below, after researching more, I decided to rephrase the question. The problem as before is, I need to focus a contenteditable div without highlighting the text, ...
9
votes
3answers
2k views
What does the caret operator (^) in Python do?
I ran across the caret operator in python today and trying it out, I got the following output:
>>> 8^3
11
>>> 8^4
12
>>> 8^1
9
>>> 8^0
8
>>> 7^1
6
...
7
votes
3answers
527 views
Tag-like autocompletion and caret/cursor movement in contenteditable elements
I'm working on a jQuery plugin that will allow you to do @username style tags, like Facebook does in their status update input box.
My problem is, that even after hours of researching and ...
6
votes
2answers
2k views
Get caret position in contentEditable div
I'm finding tons of good, crossbrowser anwers on how to SET the cursor or caret position in a contentEditable DIV, but none on how to GET or find its position...
What I want to do is know the ...
4
votes
2answers
196 views
Styling text input caret
I want to style the caret of a focused <input type='text'/>. Specifically, the color and thickness.
4
votes
1answer
297 views
jQuery val() not working with Caret logic in Chrome
I'm working with an input field which I've mapped keyCodes for so that a keyboard input will render a different language character into the input field.
The problem becomes when the characters reach ...
4
votes
3answers
1k views
Java: column number and line number of cursor's current position
I want to know the column number and row number where the cursor in JTextArea.
ie. in notepad when i m at first line than status bar shows Ln 1, Col 1.
thanks in advance...
4
votes
2answers
181 views
Saving and loading the caret position in a textarea via JavaScript
I'm looking for a method to save and load the caret position in a textarea in a web-application, so that when the user re-opens the web-application they are automatically taken back to the position ...
4
votes
1answer
100 views
Creating a windowless, zoomable text region that proxies to a real Winforms textbox in C#
Important: we really need the stated functionality, so please don't start suggesting alternatives.
We're trying to display and input text on a custom WinForms control that includes text and non-text ...
4
votes
5answers
262 views
characters XOR with caret manipulation
Working with exclusive-OR on bits is something which is clear to me. But here, XOR is working on individual characters. So does this mean the byte which makes up the character is being XORed? What ...
4
votes
2answers
1k views
JFormattedTextField caret position on focus
I am utilizing a few JFormattedTextFields in my program. For some reason when the text field gains focus after a click on the text field, the caret position always jumps to the left (position 0). I ...
4
votes
4answers
177 views
How to easily experiment with elisp code that involves moving a cursor (caret)?
I usually play with elisp code on my scratch buffer. I find it hard to play with elisp code that moves cursors in this way because I don't know how to separate the buffer for editing code and the ...
4
votes
3answers
3k views
Custom Caret for WinForms TextBox
I'm developing a custom HyperTerminal like application in a WinForms .Net 2.0 application. I have a multiline TextBox in a Panel in which you can interact with a hardware device.
My customer wants ...
4
votes
4answers
5k views
How do you programmatically move the caret of a Flex TextArea to the end?
I'm trying to move the caret in a Flex TextArea to the end after appending some text from my code. I've looked through the reference documentation for TextArea and its underlying TextField but it ...
3
votes
1answer
67 views
Clojure caret as a symbol?
So I thought it would be a nice idea to name a function that calculates the exponential ^, but it seems like the caret actually does something special, as the Clojure REPL generates an error when ...
3
votes
1answer
50 views
Mimicking createFolds using time-series cross validation
The R package caret provides a handy function createFolds, which returns a list of indexes for training sets to be used in cross-validation:
set.seed(1)
require(caret)
x <- rnorm(10)
...
3
votes
1answer
96 views
Adding a new method to the 'train' function in caret
I would like to use caret to train a model in RSNSS (Stuttgart Neural Network Simulator). Unfortunately, it looks like RSNSS is not yet implemented in train. There doesn't seem to be any ...
3
votes
2answers
1k views
How to set caret(cursor) position in contenteditable element (div)?
I have this simple HTML as an example:
<div id="editable" contenteditable="true">
text text text<br>
text text text<br>
text text text<br>
</div>
<button ...
3
votes
3answers
385 views
How do I get window.getselection to work for an input type=text field
I have a contenteditable div, like so:
<div id="test" contentEditable="true" style="width: 600px; height:300px;">Lorem ipsum dolor sit amet</div>
for which I use the following code:
...
3
votes
3answers
191 views
How can I select the letter beside a text cursor with Javascript or jQuery?
I'm using jQuery and Lettering.js to wrap each letter in an <h1> with a span and give it a unique ID. I've also set contenteditable=true on the <h1> so when I click on it I can edit the ...
3
votes
4answers
664 views
WPF TextBox - programatically select text while preserving “selection direction”
When editing text the user is able to use the keybord shift button and direction keys to modify the selection - one position stays anchored while the other moves. By pressing left it is possible to ...
3
votes
1answer
1k views
3
votes
1answer
982 views
How to hide a caret in IE? (JavaScript)
While displaying a pop-up window above a wysiwyg editor, the caret (cursor in text area) is still visible under the pop-up window. Any ideas?
2
votes
2answers
48 views
Caret position in JTextPane is not correct ?! Bug or expected behavior?
i have stumbled into the following problem:
I want to read the character in a JTextComponent's document in the location of the component's caret. When i am using a JTextPane the character returned ...
2
votes
1answer
47 views
Error with the train function in caret, when using glmnet and 2 classes
The following block of code fails, for no reason I can discern.
library(caret)
data(iris)
TrainData <- iris[,1:4]
TrainClasses <- factor(ifelse(iris[,5]=='versicolor','versicolor','other'))
...
2
votes
1answer
182 views
How to hide caret in Delphi TEdit?
I want to remove the caret from a TEdit control in Delphi. I have made the component Enabled := False but the caret still appears.
My question is how to remove the caret from a disabled TEdit ...
2
votes
1answer
198 views
Set caret to end after focus CKEditor [closed]
Possible Duplicate:
CKEditor - Set cursor position to end of text
I have a <div> with a lot of content. After a click on this div, the CKEditor is loaded to edit this div.
Now I ...
2
votes
1answer
135 views
Getting Caret Position Inside Any Application in VB 2010
I'm making a Singlish-English Word Prosessor.When user typing in a active window's TextBox
those letters were automatically converted to the Sinhala language.I did that hard part with sendKeys() ...
2
votes
1answer
102 views
Use of caret symbol( ^ ) in Ruby
ruby-1.8.7-p302 > 1 ^ 1
=> 0
ruby-1.8.7-p302 > 1 ^ 2
=> 3
ruby-1.8.7-p302 > 5 ^ 6
=> 3
There are the results I am getting.Somebody pls help me to explain how it works..
2
votes
2answers
148 views
Why is caret train taking up so much memory?
When I train just using glm, everything works, and I don't even come close to exhausting memory. But when I run train(..., method='glm'), I run out of memory.
Is this because train is storing a lot ...
2
votes
1answer
215 views
Can I change the blinking caret in a form/text area in a browser?
I want to have a custom text caret in my text field for my web page. I would like to have an old school block type blinking caret. Is this possible?
2
votes
1answer
1k views
CKEditor: set cursor/caret positon
How can I position the caret in CKEditor3.x?
I have 2 position and want use insertHTML() on both positons.
fictive code:
editor.setCaret(20); // function not exists
editor.insertHtml('::');
...
2
votes
3answers
200 views
How can I get a password containing a caret (^) passed unchanged as a parameter to a DOS batch file?
Summary:
From the command line (on Windows Server 2003 R2), I type:
> SET password=a^b
> ECHO %password%
And the result is "ab". Where'd the freakin caret (^) go? I then attempted to ...
2
votes
3answers
1k views
How to get selected text/caret position of an input that doesn't have focus?
Is it possible to (reliably) get the selected text/caret position in a input text box if that field doesn't have focus?
If not, what's the best way to get and retain this data?
Basically, when a ...
2
votes
3answers
500 views
TextBox CaretIndex property in ViewModel
Is it possible to get/set the value of CaretIndex property of a TextBox control in viewmodel in wpf via Binding defined in view?
Thanks
2
votes
3answers
1k views
2
votes
1answer
201 views
Javascript: Detect Carets Parent Node
I'm building a simple WYSIWYG editor inside an iframe with designMode on , currently I can make the selected text bold, italic and underline and to link, and they work fine.
But I would like to know ...
2
votes
3answers
1k views
Javascript: Move caret to last character
I have a textarea and when I click in it I want to move the caret to the last character so Something[caret]
function moveCaret(){
// Move caret to the last character
}
<textarea ...
2
votes
2answers
147 views
TextBox caret goes wrong when changing the underlying property value
See the following example:
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
...
2
votes
1answer
393 views
API C# - how to get the handle of the textbox where the caret is in another program?
i want to get the handle of the textbox where the caret is in, in another program. all i can find is how to get the list of the controls in a window with "EnumChildWindows", and then to search for ...
2
votes
1answer
505 views
preventDefault(), scrolling and accessibility
I'm adding a JavaScript-powered sub-window to a site. Basically, part of the UI is positioned off the left edge of the screen until the user triggers a link; then it's moved into a visible position. I ...
2
votes
1answer
201 views
Show beginning of HTML input value on blur with JavaScript
I have a fixed width input of type text. If the user was to enter a long value into this field I would like the beginning of the value to be shown when the input no longer has focus.
Default ...
2
votes
1answer
558 views
XY position of text cursor/caret in an editable iframe on key events
Is there a cross browser way to find the XY coordinates of the caret (as opposed to the mouse position, which is provided by mouse events) in an editable iframe on key events?
2
votes
0answers
163 views
VS 2010 SDK - Get function and class name when carret change, with c#
How can i get the name of the function and its class when the
caret change position i a code file, using VS SDK 2010?
I am using Editor Text Adornment template as an start and c#.
Thanks.
2
votes
1answer
2k views
Set the caret/cursor position to the end of the string value WPF textbox
I am try to set the caret/cursor position to the end of the string value in my WPF textbox when I open my window for the first time. I use the FocusManager to set the focus on my textbox when my ...
2
votes
2answers
308 views
Clipping the caret in a C# program
I'm creating a WinForms control in C# (using VS2008, .net 3.5) which allows text input. I've imported the necessary Win32 API functions from User32.dll for displaying the normal Windows caret and ...
2
votes
2answers
891 views
Silverlight Textbox scrollviewer problem
In silverlight,
I got a textbox which I want to be multiline and have mousescrolling available.
If I only use textbox then I dont have mousescrolling.
If I use a scrollviewer I will have ...
2
votes
4answers
2k views
contentEditable javascript caret placement in div
I have a contentEditable div.
Let's say the user clicks a button that inserts HTML into the editable area.
So, they click a button and the following is added to the innerHTML of the contentEditable ...
2
votes
1answer
911 views
Change text cursor (caret) colour in Cocoa?
Does anyone know if it’s possible to change the text cursor (aka caret) colour in Cocoa? I need to create a textfield which would change its caret colour depending on something.
Please notice that ...
2
votes
1answer
1k views
C++/QT: drawing a caret
I'm learning QT. I just started to write a text editor from scratch by inheriting QAbstractScrollArea. I'm doing this just for practice. But now I'm faced with the problem of displaying a caret. What ...