Questions tagged [selectall]
219 questions
3
votes
2 answers
deselect rows of a grid in Extjs 3
I have a grid and a button that makes me select all the rows of this grid (mygrid.getSelectionModel().selectAll())
But i want that when all the rows are selected and i click to this button it deselct all the rows.
How can i do it ?
Thank you for…

Fares Omrani
- 255
- 1
- 4
- 22
3
votes
1 answer
Use selectAll() in a GWT TextArea
My GWT page has a TextArea and I would like it to have the focus and to have all the text selected just when this page is loaded. I try the code below but it does not work at all. Can you help me? Thanks
final TextArea myText = new…
user411103
3
votes
1 answer
vuetify show-select in data-table not selecting items
So, I upgraded from vuetify 1.5 to latest (2.1xx) and get stuck on a few places.
I have a data-table where I want a "select all" checkbox in the header.
I added it with the "show-select" property and what I can see is that as the checkbox, when…

Toby Fieldgroove
- 243
- 4
- 16
3
votes
5 answers
Select All Items in asp.net CheckBoxList
ASP.NET and C#.
I'd like to have a CheckboxList with a "Select All" item.
When this particular item is
selected, all others will be selected
too.
When selection is removed from
this item, so too will it be from all
others items.…

splatto
- 3,159
- 6
- 36
- 69
3
votes
1 answer
curiosity on d3's selectAll method
I am trying to understand how d3's methods work. I think I've been quite getting d3, basic level of course, but there is one weird thing about selectAll method I don't understand. So when I try to create and append dom nodes to selected dom element,…

Jay Jeong
- 892
- 2
- 11
- 24
3
votes
1 answer
Android EditText with text password input type doesn't select all character by double tap
I'm trying to use EditText with textPassword input type. I faced a situation in which all the characters entering in the field were selected by double tap in android version 5 and 4.4 while this feature didn't work on android version 6.
Would you…

Nava
- 368
- 2
- 11
3
votes
3 answers
Select all rows and deselect all rows option in listview
I have a list view with a check box in each row to select that row... And i have a select all check box above the listview to select all the rows at a click and vice versa...
is it possible to do so...

xydev
- 3,409
- 5
- 34
- 54
3
votes
2 answers
ngTable select all filtered data
I'm trying to select only the rows from an ng-table with filtered data. Using the following code filters the table rows but even the rows that aren't shown are being selected:
controller:
let sampleData = [{id: 1, name: 'John Doe', gender: 'Male'},
…

dork
- 4,396
- 2
- 28
- 56
3
votes
3 answers
QlineEdit selectAll doesn't work?
I use folowing code. In it lineEdit->selectAll() works called by pushButton and only at first launch called by eventFilter. Although label->setText works all time propperly. Why?
Widget::Widget(QWidget *parent) :
QWidget(parent),
ui(new…

Shatodor
- 91
- 1
- 7
3
votes
1 answer
TextBox (PasswordBox) SelectAll method doesn't work
I have some concept question here. I know how to select all text in TextBox or in PasswordBox. Via GotKeyboardFocus and PreviewMouseLeftButtonDown events, you know. This works…

monstr
- 1,680
- 1
- 25
- 44
3
votes
1 answer
How can I get "Select All" working in my subclassed NSTextField/NSTextFieldCell?
Generally, when editing text in a text field/input/area/editor, pressing ⌘A will select all of the current text in said field/input/area/editor. I've subclassed NSTextField and NSTextFieldCell, and no matter what I try, I can't seem to get basic…

Ben Stock
- 1,986
- 1
- 22
- 30
3
votes
4 answers
DataGridView override top,left header cell click (select all)
I want to override the behavior of a mouse click in the DataGridView header/column cell (top, left cell). That cell causes all rows to be selected. Instead, I want to stop it from selecting all rows. I see an event for RowHeaderSelect and…
Greg Kendall
3
votes
2 answers
WebBrowser and OLECMDID_SELECTALL
When I open the Google web page using:
WebBrowser1.Navigate('http://www.google.com.au/advanced_search?hl=en');
it opens with the cursor in the edit box.
So when I use:
WebBrowser1.ExecWB(OLECMDID_SELECTALL,OLECMDEXECOPT_PROMPTUSER,vaIn,…

Peter James
- 237
- 1
- 6
- 18
2
votes
3 answers
iOS: UITextField selectAll + Editing Did Begin not working
I'm trying to make the text in a UITextField select when the user taps the field to begin editing. The idea is that normally, they will want to erase the entire field first, so this saves the step of having to double tap and select all.
.h
-…

Paul Wieland
- 765
- 2
- 10
- 29
2
votes
3 answers
Angular: store multiple checkbox values with related textarea value
I have a form having mutiple checkbox and related textarea fields for taking comment. Please check demo here
When user selects checkbox first and then enter value in comment then comment value does not get store. If user enters comment value first…

ganesh
- 416
- 1
- 11
- 32