Questions tagged [selectall]
219 questions
0
votes
2 answers
Performing a Mark All for checkboxes in Android
I am working on an android project with many activities and classes.
In few of the Layouts, I have a facility in which a user can select mark all so that all the checkboxes get selected.
But, the issue I am facing is I know only the one way (which…

Unknown
- 43
- 9
-1
votes
1 answer
jQuery selectall_all
Possible Duplicate:
How to implement “select all” check box in HTML?
Select all and Select All Category
Select a category to select all and I want to run the form with jquery.
But the selection process does not work in two different
I have…

merakli
- 203
- 2
- 8
-1
votes
1 answer
How to select an entire database and display all the information
Is it possible to select all the tables from a database (not knowing their names) and displaying them?
My friend has a mysql server but he doesn't have phpMyAdmin installed and he's begging me to transfer all his php-fusion accounts to his new…

Aistis
- 251
- 1
- 2
- 14
-1
votes
1 answer
Children elements didn't inherit parent data with D3 force layout
I have created a d3 force layout,and works very well.
My mainly code like so:
var nodes = [{id:1, n:'n_1',np:'0'},{id:2, n:'n_2',np:'0'}];//just for demo
//1. set data
var update = svg.selectAll(".node").data(nodes);
//2.…

Does
- 569
- 6
- 24
-1
votes
1 answer
VB.Net application highlights all files in background when running / getting focus
I have an App that I inherited in VB6 and have ported mostly to VB.net
When I compile / run the app - it highlights all the files in the current selected folder.
What makes it worse, is it's very difficult to search online as what search terms…

QS Train
- 95
- 2
- 12
-1
votes
2 answers
Differentiate between robotic and human keyboardinput
I want to "Select all" via a robot pressing the keys Control and A, but i dont want the keyboardListener to notice it as input.
Is there another way to use "Select all" or a way to differentiate between the two input types?
Edit: I'm using the…

Aaron Priesterroth
- 307
- 2
- 4
- 17
-2
votes
1 answer
Won't work Check All button
Possible Duplicate:
Select All Checkbox
I have the follow code for a Check All button that will check all my checkboxes on my webpage, but it's not working. Where is the function supposed to go? Because I've tried putting the code on my page but…

James
- 1
-2
votes
2 answers
How to do a Select All checkbox in html?
I have a html form, which has lots of checkboxes, and there is a Select All box on top, how to make the Select All box auto select all the checkboxes below according to the Select All box choice ?
I didn't want to show the code, because it's nasty…

Frank
- 30,590
- 58
- 161
- 244
-3
votes
1 answer
php script using json encode loading only first record
query($sql);
if ($result->num_rows > 0) {
$data = array();
while($row = $result->fetch_assoc()) {
…

Sandra Khazaal
- 11
- 4