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…
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…
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: …
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?
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…
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.
VoltaicShock
  • 842
  • 2
  • 7
  • 19
1
vote
1 answer

How to write multiple key symbols in a Text box that are Selected All?

In a Windows Forms App, I want to select all the text in a text box with txtBox.SelectAll() as the code for the text box but after I debug it I can only type ONE letter in the textbox that is selected. The letter keeps changing as I type. How do I…
1
vote
0 answers

I'm getting "b.selectAll is not a function" in my D3js code, I can't tell why

I have included a legend to my Heat Map following this example, built with the threshold scale, and a Linear scale for its axis. The axis is created without issue, the problem is, I believe, in the code where I'm appending its rect elements. Note:…
1
vote
0 answers

Select,Unselect,Intermediate Checkbox treeview in *ngFor

As I mentioned above code i want category is my parent and when I'm select category checkbox it will select all it's child checkbox(items) .And when I select particular one child then category checkbox is intermediate. Same for the child and…
Rushi Patel
  • 561
  • 4
  • 14
1
vote
2 answers

Select all text in a Winforms Infragistics ComboBox

Is there a way to do this? I want to mimic the behavior of a the UltraTextBox.SelectAll method in windows forms.
Jeff
  • 8,020
  • 34
  • 99
  • 157
1
vote
2 answers

"Select all text in iframe" button?

I have an iframe on a webpage. This iframe is sourced to (that is, shows the contents of) a .txt file on my server. I would like to implement a button (that sits outside of the iFrame, of course) that, when clicked, Selects All the text in the…
Crickets
  • 524
  • 1
  • 8
  • 23