Questions tagged [selectall]

219 questions
2
votes
1 answer

Hibernate Predicate SelectAll

I'm using Spring Data JPA with a specification to select rows out of table if the user has selected certain filters: public interface Specification { Predicate toPredicate(Root root, CriteriaQuery query, CriteriaBuilder cb); } How do I create a…
DD.
  • 21,498
  • 52
  • 157
  • 246
2
votes
2 answers

lambda inner join and select all

Here is how I inner join in lambda , var myObject = tableNames.Join(tableSchool, x => x.sID , s => s.schoolID , ( (x,s) => new { } ) ).ToList(); I have many fields in both tableNames and tableSchool . By my lambda query , if I have 10 fields…
zey
  • 5,939
  • 14
  • 56
  • 110
2
votes
3 answers

Select all cells in UITableView even invisible cell in iOS

I have a method selectAll to select all my cells in my UITableView. This method check a checkbox (UIButton). It's work very well just for the "visible" cells but not for the "invisible" cells! Here my method: - (IBAction)selectAll:(id)sender { …
Lapinou
  • 1,467
  • 2
  • 20
  • 39
2
votes
2 answers

D3 create buttons from an array of string containing names

I'd like to create several buttons in d3. in order to have a clearer code I'd like to add their names in an array. I have the following code, but it doesn't work : var buttonNames = ["button 1", "button 2", "button 3", "button…
guillaume guerin
  • 357
  • 2
  • 6
  • 17
2
votes
0 answers

Select All Checkbox / Twitter Bootstrap Rails

I'd like to know how to create a "Select All" checkbox in my table. The only thing is that I'm not using input tag for the checkboxes, I'm using f.check_box. Here's my tbody:
2
votes
2 answers

What exactly does extra select() on enter() selection do?

What exactly does extra select() on enter() selection do and why does it not have selectAll()? Now here I am probably supposed to post more text to "meet your quality standards", but I am quite sure the question is precise enough and hopefully not…
2
votes
6 answers

How to select or unselect all checkboxes in JQuery Mobile?

I have several collapsible check-boxes, and am trying to check/uncheck all the boxes within that section. HTML Currently when I click on the main checkbox, it simply opens and closes the collapsible dialog.
  • user1501922
  • 1
    vote
    2 answers

    Select/Deselect All Checkboxes along with colour changing of a selected row using jquery

    I have a table where each row has some data and the user can submit all rows or single row or some rows. So, every row has a checkbox now and If the user checks the checkbox the background colour of this row should be changed(I have implemented this…
    NoviceCoder
    • 121
    • 1
    • 4
    • 10
    1
    vote
    2 answers

    How the Maui to get keydown events,select all text of entry ,remove entry undline

    How could I use MAUI to create a keydown event? Also, we know there is no direct view for us to use keydown or keyup, but I have researched handler mappers in nativeview (Android) or using render, but the details of how to implement them are…
    simone
    • 21
    • 6
    1
    vote
    1 answer

    Vue2 Vuetify v-autocomplete: How do I get the searched result/filtered item of v-autocomplete

    I implement searching/filtering within v-autocomplete with multiple selection and select all. Currently select all will select all from the list which include filtered/un-filtered (screenshot: 67 item(s) selected although it has been filtered to 4).…
    1
    vote
    3 answers

    *[id^= Selects all, I'd like to select each same number

    With this code, when you hover over anything with the id="trigger*", it shows everything with the id="panel*" I would like it, for trigger1 to show panel1, for trigger2 to show panel2. Is that possible? This is my…
    Chezzo
    • 11
    • 1
    • 3
    1
    vote
    2 answers

    How to perform selectAll operation of checkboxmodel with memory proxy in extjs

    I have a extjs grid with local paging. In order to achieve local paging, I have provided memory proxy in store. My grid also contains checkboxmodel. But my problem is that when I click on selectAll button, only current page's data is selected. Is…
    Anuja Kori
    • 21
    • 3
    1
    vote
    1 answer

    React Select All for multiple checkboxes

    import React, { useState, useEffect } from "react"; import "./styles.css"; export default function App() { const [checkedAll, setCheckedAll] = useState(false); const [checked, setChecked] = useState({ nr1: false, nr2: false }); …
    Malika Arora
    • 81
    • 3
    • 7
    1
    vote
    0 answers

    D3 - .filter a selectAll based on existence of item in array of child objects

    I have a grid of donut graphs. Let's say Star Wars characters with projects they are trying to achieve...
    //…
    kalmdown
    • 601
    • 1
    • 9
    • 13
    1
    vote
    1 answer

    Select2 "select all" tick where option are fetched from DB table

    I am trying to get DB table row as dropdown options for which I have used Select2 jQuery, all options are showing so I wanted "select all" tick , but nothing happens when I tick "select all", somebody please help me with the code, as I am new to…