Questions tagged [selectall]

219 questions
2
votes
2 answers

Python - Ipywidgets - SelectMultiple - Create a Select ALL option

I currently am using the selectmultiple widget in ipywidgets and I'm looking for a better solution. I have 200+ countries that a user can select from and sometimes they want to SELECT ALL. Using this widget they need to click on each and every…
Andy Jensen
  • 83
  • 2
  • 9
2
votes
2 answers

Select all Silverlight DataGrid cell text on cell entry

I have a DataGrid in SL4 with a simple DataGridTextColumn columns. I've tried a number of different methods to select all the text in a DataGridCell as soon as the cell changes to an editable TextBox. The code below was my last attempt. Inspecting…
David Perlman
  • 1,460
  • 1
  • 12
  • 32
2
votes
1 answer

How do I select all including sensitive case (regex) in c#?

I have a problem with a regex command, I have a file with a tons of lines and with a lot of sensitive characters, this is an Example with all sensitive case…
PierreDuv
  • 104
  • 1
  • 8
2
votes
2 answers

Select All Checkbox is not working as it must be working

I am trying to implement select all checkbox and its working fine the only problem is that when I deselect the checkboxes the select all function stops working for that specific checkbox. Note that I am using the Laravel framework so don't react on…
Maaz Khan
  • 131
  • 1
  • 9
2
votes
3 answers

Multiselect Listview with select all check box. Datatrigger on binded property

I have a list view with a grid view that has two columns. The first column contains checkboxes that are bound to the listviewitem selected property, the second column is text. In the header for the checkboxes column I have a check box that I want to…
WIll Cruz
  • 73
  • 8
2
votes
1 answer

mycheckbox.setSelected(false) has no effect

I have columns of checkboxes, the top row of which are CheckAll checkboxes for that particular column. If I uncheck the Checkall from the first CheckAll checkbox in the leftmost column I would like to uncheck the remaining CheckAll checkboxes. …
RVDowning
  • 73
  • 1
  • 2
  • 9
2
votes
1 answer

Why selection update not working when I pass them into another function?

I want to use selection repeatedly. but update method not working. why this happen? Does first selection can't accept more than two data binding sequentialy? // 1. prepair data var enterData = [120, 70, 300, 80, 220]; var updateData = [300, 0, 30,…
Youngsoo Yi
  • 191
  • 1
  • 5
2
votes
3 answers

get all row and column data using SELECT - C#

I'm trying to get all data from an SQL table and store it in a List using the C# programming language. the SQL statement I'm using is: private string cmdShowEmployees = "SELECT * FROM Employees;"; This is being used in the same class as a…
Brian Cotton
  • 23
  • 1
  • 1
  • 4
2
votes
2 answers

AutoHotkey: Similar function like ClipWait for "Select All"

Does AutoHotkey have anything similar to "ClipWait" for "Ctrl+A" / "Select All". Or is there a possibility to get such a function somehow ?
Vaibhav
  • 123
  • 8
2
votes
2 answers

Select all text in textbox with autocomplete (C# winforms)

I've created a textbox with autocomplete functionality, but I encounter the following problem. Whenever I press Ctrl+A to select all the text in the textbox, the text disappears. Here is my source code for the textbox: this.textBox1 = new…
SteveH
  • 31
  • 3
2
votes
1 answer

Select all items in Multiple SelectManyCheckBox with dynamic ids

I want to select all check box in some groups of checkboxes using PrimeFaces component on top of JSF. My code is like this:
2
votes
1 answer

AngularJS - "Select All" items that are currently visible

I am currently trying to figure out the best way to select all items in a list that are currently visible. I currently have a large list of items in my scope that has paging applied to it so only a few items of this list are visible at a time. I…
Dan
  • 1,155
  • 11
  • 15
2
votes
2 answers

contact on list view with select all option and search option on android

contact on list view with select all option and search option on android i have tried a lot of ways but no matter to find a list view with name,phone no and check box for everyone and also a select all button and search option public void…
Sreejin TV
  • 87
  • 1
  • 1
  • 9
2
votes
1 answer

select-all checkbox in a jquery data table with column filter

Does anyone know how to add a checkbox in the column-filter plugin header of a jquery datatable? and when I check the checkbox, to trigger a callback (where I will 'check' all the checkboxes in the table or 'uncheck', if case)? And no, I am not…
dcg
  • 1,144
  • 1
  • 22
  • 38
2
votes
3 answers

How to select all items in java swing JComboBox or any other similar jComponent

I have a jComboBox with a few items. The goal is to add an option "All" so when the user select it all the items available would be selected. Is it possible to do it with a jComboBox or I better use another jComponent (recommendations are welcome).…
user1228603
  • 81
  • 1
  • 8