Questions tagged [selectall]

219 questions
0
votes
1 answer

How to add a "Select all" default value to a non-multi-valued parameter

I have a small problem, so I need your help to solve it. I have a parameter in which I have disabled multi-selection. But I want to add a "select all" default value to it. I don't found how can I do this without multi-values (check-box). I want to…
0
votes
2 answers

Selecting all items in ListView works only once

I have a check box which will select all items in the ListView using a checkbox in each row.The code for the listener: check_all.setOnCheckedChangeListener(new OnCheckedChangeListener(){ @Override public void…
vamsiampolu
  • 6,328
  • 19
  • 82
  • 183
0
votes
4 answers

PyQt4 QSpinBox.selectAll() not working as expected

Python 2.5.4 PyQt4 I sub-classed a QDoubleSpinBox to emit a signal on a focusIn event: #Custom widgets for DPL GUI from PyQt4.QtCore import * from PyQt4.QtGui import * class DPLDoubleSpinBox(QDoubleSpinBox): __pyqtSignals__ =…
0
votes
1 answer

How to make the all select checkbox workable upon deselecting few of the checkboxes?

I'm using PHP and Smarty for my website.For your reference I'm putting here the code snippet from smarty template alongwith the jQuery code:
PHPLover
  • 1
  • 51
  • 158
  • 311
0
votes
2 answers

Jquery Data tables select all checkbox only for current page

We are using data tables with pagination and we need a select all checkbox in the header row, which would select only the rows in the current page. When you have selected first page, if you go to next page, the select all checkbox should be…
0
votes
1 answer

Cassandra Hector - Query all super column names & all sub columns (name & value)

I have a super column family and everything works well when I query like this: private static Cluster cluster = HFactory.getOrCreateCluster("cluster1", "localhost:9160"); private static Keyspace keyspace =…
0
votes
1 answer

jquery selecting part of the id

I have a few checkboxes that I would like to do a 'Select All' option for. Id or name for those checkboxes is 'chk1', 'chk2', chk3..... and the id for the selector checkbox is 'SelectAll' $(document).ready(function () { …
almavrick
  • 13
  • 1
0
votes
5 answers

How to create a button that changes function from "Select all" to "Select none" in the this Javascript code

Below is a very nice piece of code with toggles to select all or none of a set of selection boxes (source). The code works very well for me for what I plan to do with it, since with this javascript it is very easy to select only a manual subset…
Njit
  • 33
  • 5
0
votes
3 answers

Select all in a textbox unless clicked again. c# Confused

I'm trying to make it in my program, if you click on a text box it will select it all. And then if you click it again it deselects it all. I've tried making it like this.. private void url_MouseDown(object sender, MouseEventArgs e) { …
user2178586
  • 141
  • 2
  • 3
  • 9
0
votes
1 answer

how to simulate the act of Ctrl+A in an element using jquery or javascript?

When a user does a specific event, I want to also simulate that they hit Ctrl+A in a textarea element. I know about caret positioning and selecting all text as a separate issue, but I don't want that. I want to be able to do it by just simulating…
user961627
  • 12,379
  • 42
  • 136
  • 210
0
votes
2 answers

knockoutjs deselect/select all checkboxes when one or more items deselected

This is similar to, but different from other questions around this topic. I have a table with a list of records, each having a select checkbox. In the table header I have a "Select All" checkbox. When the user checks/unchecks "Select All" the…
Wazygoose
  • 65
  • 1
  • 5
0
votes
1 answer

how to create selectAll checkbox in JSF-2

how can I create select All checkbox in JSF -2 to select all select boxes in the page only not on the other page as these check boxes are the list and displaying 20 in each page... Thanks, alex
user2060003
  • 3
  • 1
  • 2
0
votes
1 answer

Is it possible to ignore a special character when all text is selected in EditText?

I have a EditText. When I focus on it, all of the text is selected. When the user enters a character, the previous text (selected text) is removed and the new character is inserted in the EditText. I want to prevent removing the selected text when…
Bob
  • 22,810
  • 38
  • 143
  • 225
0
votes
1 answer

on click select all value and copy to clipboard (cross browser support)

I want to select all and copy to clipboard the value of input when the user clicks on the input itself with cross browser support. Example: onClick this: it will SelectAll and copy the Generated…
Jeremy John
  • 1,665
  • 3
  • 18
  • 31
0
votes
3 answers

Class which provide "Selection"

Is there any class which provide basic selection mechanism? for example: Imagine I have WAVE file and simple WAV-Editor written in C#. Now I can display this wave file in graphical representation as wave form. In main menu I can click Edit -> Select…
apocalypse
  • 5,764
  • 9
  • 47
  • 95
1 2 3
14
15