Questions tagged [selectall]
219 questions
1
vote
1 answer
State is not Reflecting after calling HandleCheck Method in React Product List Program
I am trying to build a product list with selectAll functionality but when I'm clicking on selectAll checkBox the state[checkBoxes Array] isn't reflecting the other checkboxes after calling handleCheck() method.
I have also used useEffect() with…

Brahma Jaiswal
- 13
- 3
1
vote
1 answer
How to add a custom checkbox to select all checkboxes on woocommerce checkout page to the woocommerce_review_order_before_submit?
I need to add a checkbox with the option to select all the checkboxes below it on the checkout page in woocommerce. How could I do this using php or javascript ?? Or if there is another better option, I will be happy.
So far, I have used the "code…

Štefan Pribula
- 11
- 1
1
vote
1 answer
javascript D3 V6, struggling with chained syntax, specifically effects of '.call' and 'selectAll'
Below are two examples of similar D3 code, one works and the other doesn't. In this example, I want to change the color of the lines of an axis -
This doesn't work, stroke color lines of the axis do not get changed to green -
var x_axis =…

CJH
- 163
- 1
- 12
1
vote
1 answer
im working on a kivy project... i am using toggle buttons that are create from a function... how do i know what is selected?
here is the main python file...
class MainWindow(Screen):
def Get_Trending(self):
Twitz = Trending_on_Twitter()
Tikz = Trending_on_TikTok()
ingrams = Trending_on_Instagram()
Trending = Twitz + Tikz
num = 0
for item in Trending:
…

Netore Mining
- 55
- 3
1
vote
1 answer
VB6 - Select all items from external program Listview
I have to select all items from an external program Listview control.
Does anybody know how can I accomplish this?
I tried with SendCommand, but failed.
In AutoIt I can do it this way:
ControlListView("Title", "", "[CLASS:SysListView32;…

Stan Dragos
- 31
- 1
- 4
1
vote
2 answers
checkbox toggle select all/unselect all problem
hi i found a script which uses checkbox to select all/ unselect all checkboxex which i found a working example here http://jsfiddle.net/ThiefMaster/HuM4Q/
the problem is when i tried to integrate it to my own html. it doenst work anymore, here is my…

kester martinez
- 421
- 6
- 14
- 23
1
vote
1 answer
In Highcharts can legends be shown as dropdown or option of select all deselect all legends?
I am using Highchart and in few case large data is populate with around 100 Legends displayed at the bottom. My requirement is I should have One more option of select all or deselect all. Is this feasible in Highchart?

Sanjay SIngh Bisht
- 11
- 2
1
vote
0 answers
Android EditText, select all horizontally scrolls to end of text. Want it to scroll back to the beginning of the text
I am using an EditText to display a large amount of text in an area that is smaller than the length of the text.
If I use the EditText.selectAll() or EdiTtext.setSelectAllOnFocus(true) the text is automatically scrolled to the end, so only the end…

M.J. Brandys
- 11
- 1
1
vote
2 answers
Select All On Focus of GWT SuggestBox
I've been searching and searching and can't find a usable example of selecting all text within a GWT SuggestBox widget on focus. I understand you have to attach a focusListener to the widget, but then what? Can someone provide a working example of…

Chris Cashwell
- 22,308
- 13
- 63
- 94
1
vote
4 answers
CheckBoxList Items using JavaScript
I have a checkoxlist with a couple of items and an all option. The user can select all and I want this to check off all the options and if they uncheck all it will uncheck all options.
I have accomplished this with the following code.