Questions tagged [selectall]
219 questions
1
vote
2 answers
WPF TextBox selectall and show caret at the same time
after a long search on the net, I hope you can help me.
My Problem:
I want to select the complete text in a TextBox
and will show the caret (blinking cursor) after the last character.
Always I have found information about one problem or information…

Dark-Water
- 11
- 2
1
vote
3 answers
Can I use code inspector in Firefox to do a Check All input type = checkbox on a website that isn't mine?
I have a question that is a little outside my realm. I'm a newbie to jquery and javascript. I run a forum on ProBoards, and when the forum runs out of its allocation for attachments (pictures the users can post) I have to manually go through the…

user2288275
- 25
- 5
1
vote
2 answers
D3 selectAll change color
I am new to D3 and i'm stuck on a case.
I have a button that adds circles to my svg.
d3.select("button#add").on("click", function()
{
svg.append('circle')
.attr('class', 'little')
.attr("cx", Math.random()*280+10)
…

faiahime
- 37
- 1
- 9
1
vote
2 answers
How to select all checkBoxes in table column -Vaadin 7
I got one column with checkboxes, it is generated by column generator, how can i set them all checked ?
Thanks.

PDS
- 562
- 3
- 13
- 27
1
vote
0 answers
best way to have checkbox column in WPF datagrid with header checkbox (select all) and MVVM
I was using DevExpress components, with selectall view.
because its hard to customize DevExpress style, I decide to use WPF default DataGrid.
what is the best way to have Select All checkbox in WPF DataGrid ?
there is no complete solution and/or…

UFO
- 400
- 2
- 6
- 16
1
vote
3 answers
send ctr+A (select all) with SendKeys.Send()
HelloI want to send CTR + A to other application for select all text in text box but I don't know how can i send 2 keys simultaneouslyI split all keys and send all one by onefor send key i use from this code…

Sam
- 175
- 3
- 17
1
vote
4 answers
How to check the Select all checkbox after checking all its child checkboxes?
I want to check all the checkboxes upon checking the "Selectall" checkbox and vice versa if I select all the checkboxes one by one then the "Selectall" checkbox should be automatically get checked. If I uncheck any of it's child checkboxes then the…

PHPLover
- 1
- 51
- 158
- 311
1
vote
3 answers
How to make a "Select All" function for one page only
Let's say I have a page with 100 checkboxes. I used this pagination Javascript (http://en.newinstance.it/2006/09/27/client-side-html-table-pagination-with-javascript/) to break them into small pages (each with around 10 checkboxes) within the same…

user2247605
- 11
- 3
1
vote
2 answers
select all checkbox in nested datalists
I have a nested datalist structure and want to put select all checkboxes on every cathegories.
the top checkbox works fine but dont know how to do it for per main cathegory
this works fine:
protected void cbTamaminiSec_CheckedChanged(object…

Rapunzo
- 966
- 5
- 21
- 42
1
vote
1 answer
Selected value based on a GET param using select_tag in Ruby on Rails
I have a working form (which is not bound to a model, and thus uses form_tag) which includes a select box.
The related code is as follows:
select_tag 'language', "
1
vote
4 answers
Select all checkbox functionality in classic asp
I have a select all checkbox followed by individual checkboxes corresponding to each record which comes from database.
How do I implement a javascript function such that when a person checks Select all,all the checkboxes get selected and vice versa.

Coder1010
- 29
- 1
- 3
- 13
1
vote
1 answer
TextBox AttachedProperty to Select All text not working as expected?
I have an attached property called "SelectAllOnFocus". Values of true/false.
public static class TextBoxProps
{
private static void MyTextBoxKeyUp(object sender, KeyEventArgs e)
{
if (e.Key == Key.Escape)
…

tronious
- 1,547
- 2
- 28
- 45
1
vote
1 answer
Make a function select-all jquery
I have a select-all jquery script I got from a site (I forgot the link).. Exactly, nothings wrong with the script. It works. But, I intend to rewrite it into a function. Just, I'm stucked.
Here is the ori script
$("#selectall").click(function ()…

thom
- 149
- 13
0
votes
2 answers
How to set focus to a TextBox after its Text has been set through binding?
I am trying to implement SelectAll (text) functionality for all TextBoxes in my WPF application. I found how to do that here. However, the first TextBox on my form is not automatically focused. I try to remedy that in the Window_Loaded eventhandler…

Dabblernl
- 15,831
- 18
- 96
- 148
0
votes
2 answers
Enable/Disable selectAll check box in Infragistics UltraWinGrid
I have used Infragistics UltraWinGrid to display data on the Grid. In this grid, there is one check box column. I have added check box in header in this column to selectAll option.
Now I want to enable/disable this header check box on any button…

Brijesh Patel
- 2,901
- 15
- 50
- 73