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 ...

learn more… | top users | synonyms

1
vote
1answer
26 views

Java - JFormattedTextField does not allow input on first attempt

I am making a little Sudoku game with a GUI and use a MaskFormatter for the JFormattedTextFields: formatter = new MaskFormatter(s); formatter.setValidCharacters("123456789"); But my problem is ...
1
vote
0answers
28 views

Error occurring in caret when running on a cluster

I am running the train function in caret on a cluster via doRedis. For the most part, it works, but every so often I get errors at the very end of this nature: error calling combine function: ...
1
vote
3answers
41 views

Oracle regexp_like negating special char

I'm using Oracle 10g trying to EXCLUDE entries that contain a - or a _ with a caret in the character class in Oracle 10g. I can find the entries containing dash or underscore through: WITH example ...
0
votes
2answers
22 views

caret position of an embedded swing component in a JTextPane

I have a JTextPane which uses a custom HTMLEditorKit to embed a swing component when the HTML tag is used. When I click on this component, I want to have the caret position updated to the location ...
0
votes
3answers
40 views

How to get the div in which the cursor or caret is placed?

I have three contenteditabledivs and I want to know ,in which div the user has placed the cursor or caret through tab key or mouse click, <div contenteditable="true"></div> ...
0
votes
1answer
41 views

Editable ComboBox setting caret position using mvvm

I have a editable wpf combobox. I want to set the caret position to the end of the text whenever it gets focus.
0
votes
0answers
42 views

How to specifically set the caret position in a contenteditable div

I need to set the caret position in a contenteditable div in Chrome which is not focused but I know the caret position i.e. the character index in the HTML of the div. The div may have other elements ...
1
vote
2answers
32 views

Prevent 'caret' jumping on focus

So, I'm trying to replicate the html5 'placeholder' attribute functionality. One thing I'm currently stuck on is, upon focus of an element, the caret immediately appearing at the start of the input. ...
2
votes
1answer
84 views

Left and right button misbehaving when trying to add an empty span to contenteditable div

In my project, I am trying to add a span wherever the caret is in the contenteditable div. This span element will be used as getting the offset position of the caret indirectly. var _spanElem = ...
0
votes
1answer
45 views

XY Caret Coordinates inside a contenteditable div

I am looking for a way to get the caret x y coordinates inside a contenteditable div, in a similar manner to how you can get the mouse coordinates using window.event since I need to open a pop-up ...
2
votes
1answer
56 views

Set the caret position always to end in contenteditable div

In my project, I am trying to set the caret position always to the end of the text. I know this is default behaviour but when we add some text dynamically, then the caret position changes to starting ...
0
votes
0answers
53 views

Move caret on contentEditable div using javascript

I've been searching a lot but i couldn't figure out how to move the text cursor in a contentEditable div,the problem is that i don't have much knowledge in javascript and the best working code i found ...
0
votes
0answers
25 views

When content is empty, caret disappear in contenteditable

When div[contenteditable] to empty(like $(this).html("")) then caret disappeared. Is it bug? Also I found some other solution. using setTimeout function. but It's not perfect solution for me. when ...
0
votes
1answer
39 views

Detect caret movement in Text control

I feel really stupid, but I can't seem to get a listener be notified when the user changes the caret in a Text or StyledText input field. I've tried SelectionListener as well as CaretListener ...
0
votes
0answers
27 views

How can I hide input caret in a PasswordBox?

I need to remove the input caret (blinking vertical bar) in a PasswordBox of my Windows Phone 7.1 application, is there any way to do that?
0
votes
2answers
32 views

Replacing caret characters with sed

I have lines in a file that look like this: FA General,1234567^^^^^FA Student Letter- General^<<undefined>>^\\path\to\file.RTF I'm trying to use sed to replace the caret characters with ...
1
vote
0answers
38 views

Custom insertion point for NSTextView

I'm changing the insertion point size by overriding -(void)drawInsertionPointInRect:(NSRect)aRect color:(NSColor *)aColor turnedOn:(BOOL)flag, But it doesn't handle the first blink (when you move the ...
2
votes
3answers
101 views

How to always scroll to bottom of text area?

How do I make it so the scroll pane is always located the bottom of the scroll pane where the new data is being written? I can't see the new text coming in as it is written. JTextArea itTextArea = ...
1
vote
1answer
88 views

using caret package to find optimal parameters of GBM

I'm using the R GBM package for boosting to do regression on some biological data of dimensions 10,000 X 932 and I want to know what are the best parameters settings for GBM package especially ...
1
vote
1answer
232 views

Usage of caret with gbm method for multiclass classification

I am solving a multiclass classification problem and trying to use Generalized Boosted Models (gbm package in R). The issue I faced: caret's train function with method="gbm" seems not to work with ...
3
votes
2answers
54 views

How do I make the caret of a JTextComponent skip selected text?

the normal behaviour of native text fields in many environments is as follows: Textfield with text "abcdefg". I use the mouse to select "efg" from left to right. The caret is now behind "g". When I ...
0
votes
3answers
66 views

Highlighting for programmer but not user

I'm making a program where I need to be able to edit the highlighting feature of a JTextArea via my code, but I dont want the user to be able to highlight via the mouse. That, or I need some way of ...
0
votes
1answer
107 views

Cross platform way to get caret position in command prompt in python

I am new to python and am looking for a cross platform way of getting the current caret/text cursor position in the linux terminal or windows command prompt Can anybody suggest anything?
1
vote
1answer
283 views

get last character before caret position in javascript

I am about to implement Facebook like in integration in my contenteditable div where if i give '$' and some character like 'a' i need a auto-suggestion which should pop up near my caret position. I ...
2
votes
3answers
222 views

Changing caret/cursor position

today I'm here to give you all a new challenge! Just joking: my problem is the caret of the Command Prompt. [The "entire" story is in the bottom"] Short story long, I have to move the caret ...
1
vote
2answers
439 views

Tinymce - Is it possible to get caret position of textarea corresponding to WYSIWYG Editor?

I'm wondering if we can get the real caret position of textarea when the fake cursor is in certain position under WYSIWYG Editor? To better understand the question, please see the image below Under ...
0
votes
0answers
34 views

Playing with contenteditable input

I'm trying to create something similar to annotate mode in openoffice for a website I'm developing. Basically, the user is presented with an input containing text. Any text they delete is not deleted, ...
0
votes
1answer
171 views

Parallel Random forest in R utilizing CARET package

I am utilizing one of the regression technique parallel random forest named as method="parRF" in R under CARET package, it seems to work faster than regular random forest. May I kindly request the ...
0
votes
0answers
53 views

is it possible to change Caret Symbol(Text Cursor) dynamically in windows system wide?

I want to change the Caret Symbol(Text Cursor) dynamically in windows and independently of applications(system wide). i mean this one: but i don't know if it is possible to make such utility-tool. ...
0
votes
0answers
203 views

Get element before/after caret in contenteditable div

My markup is like this: <div id="editor" contentEditable="true"> <span contentEditable="false">some content</span> some free text <span contentEditable="false">some ...
0
votes
0answers
101 views

Statistics of prediction for multiple models with caret

I am trying to get statistics of prediction for various training models with the package caret. Below is an example that illustrates my need: library(caret) # Training: # ... Get X and Y for ...
0
votes
1answer
73 views

Saving and loading a model in R

When working with caret, how can I save a model after training, and load it later (e.g. in a different session) for prediction?
0
votes
0answers
50 views

ie7 looses caret onblur in certain situation

I´m using the Webframework wicket to power my Homepage. I´m currently trying to persist the caret position of TextFields an TextAreas to the Server. With any Browser other than ie7 this is not a ...
0
votes
0answers
147 views

Set caret inside contenteditable div after inserted element

I am trying to make my application run on all browsers and I need to position the caret inside a contenteditable div just after the text selected from a pop-up by the user. So far my application is ...
0
votes
0answers
137 views

jQuery UI droppable insert with caret to contenteditable

My question is very specific, but im not shure how to do this best: I have a jQuery draggable and droppable, so a draggable can drop in specific droppables. All my droppables are DIVs with ...
2
votes
0answers
63 views

Contenteditable div caret position [duplicate]

Possible Duplicate: Get caret position in contentEditable div I have a contenteditable div and I am trying to get the caret position inside this div on non IE browsers using the following code: ...
0
votes
1answer
220 views

Caret inside contenteditable div on Chrome

I am using a conteneditable div control and when the user first clicks inside this control I want to delete all text and position the caret at the beginning. So far my code is working on IE, Opera and ...
0
votes
0answers
52 views

In ContentEditable, how can I get a reference to the element immediately preceding the caret?

I am trying to write a function that will, on keyup, give me a reference to the element immediately preceding the caret in a contentEditable div. If the caret is in a text node then the function ...
2
votes
2answers
86 views

Why does my caret not return to the beginning of a TRichViewEdit?

I'm using a TRichViewEdit for a chat application and after sending the text in the Edit I clear it. The problem is after I clear the Edit the caret appears at the end of the last item. If I click on ...
1
vote
0answers
162 views

Passing Caret to command line using VBScript

Having a hard time figuring this one out. I have a vbscript that asks for username and password. Then the script runs PSExec.exe passing those to the command line like this. strUser = ...
1
vote
0answers
371 views

R caret / How does cross-validation for train within rfe work

I have a question regarding the rfe function from the caret library. On the caret-homepage link they give the following RFE algorithm: algorithm For this example I am using the rfe function with ...
3
votes
2answers
437 views

Set Cursor position after nested contentEditable

I've got this markup <div contentEditable="true"> Some other editable content <div class="field" contentEditable="false"> <span class="label">This is the ...
1
vote
1answer
133 views

Setting Caret Position in JComboBox when Tab is pressed

I want to create a jcombobox which sets the caret position to 0 position when tab is pressed. i.e when there are different components in your panel and when you press tab, and it selects jcombobox, ...
0
votes
1answer
498 views

Set caret position in contenteditable div

Intro When editing the content of a contenteditable DOM Object, different browsers have different behaviours. For instance, Firefox 18.0 creates a new paragraph (<p>) or a line break ...
3
votes
1answer
134 views

Get caret position in input to capitalize words on keyup while being able to edit the content

I decided to open a new question because I was trying to capitalize the first letter of words with 4 or more letters and with the exception of a few key words and I have this working code for that: ...
0
votes
0answers
142 views

nicedit: save and restore cursor/caret position

I have searched, but I still haven't found a good way to make NicEdit save the current position of the caret/cursor and make it maintain it's position when NicEdit gains focus again...Currently after ...
2
votes
1answer
143 views

JavaScript: Get input text position (in chars) from mouse click

I have an HTML <input type="text"> or <textarea> with random existing text, say [12345678] or [12345 67890] I have an arbitrary positioning mousedown click event inside this text. I need ...
1
vote
1answer
167 views

R caret / rfe / bayesglm feature selection

I'm using bayesglm for a logistic regression problem. It's a dataset of 150 rows and 2000 variables. I'm trying to do variable selection and usually look at glmnet in caret::rfe. However there ...
2
votes
2answers
118 views

How to preProcess features when some of them are factors?

My question is related to this one regarding categorical data (factors in R terms) when using the Caret package. I understand from the linked post that if you use the "formula interface", some ...
4
votes
2answers
310 views

How to use TinyMCE functions on text without actually selecting that text?

I have various <div>s on my page, which, when clicked, convert into TinyMCE editor sections. So the user can just double click on the div and then edit the text within it using TinyMCE. My ...

1 2 3 4 5 6