Questions tagged as 'checkbox'

1
answer

Deleting records marked with checkbox

I wanted to be able to delete multiple records from a table just by selecting the records using checkbox , same as Gmail, I select the emails that I want to delete or mark as read. Because when I need to delete some registry I still have t...
asked by 19.10.2017 / 14:28
2
answers

Loading Grid data with CheckBoxColumn

I'm creating a form to register a license for a product. This form serves to record which solution a client has. In the form to add a product you only have to select product and customer . I'm having a hard time crafting the loading...
asked by 10.03.2016 / 13:02
1
answer

How to customize checkbox / radio without using background: url?

Whenever I search on "customize", "checkboxes" and "radios", examples appear using background:url(image.png) . Is there a way to customize a "checkbox" only with "CSS" without using background:url ?     
asked by 28.05.2015 / 15:06
1
answer

How to fetch values from just the selected checkboxes in codeigniter

I have dynamic checkboxes, and wanted to fetch the values from those that were selected, like doing this with codigniter: Model to go the fields and create the necessary checkboxes: public function apoioPertendido(){ $query = $thi...
asked by 05.06.2015 / 18:28
1
answer

How to get a multidimensional checkbox clicked

I have a checkbox group and I need to get the checkbox that the user clicked, so I need to manipulate the others that are from the same group. <input type="checkbox" name="grupo[1][1][]" value="A" data-unique="0"> A <input type="check...
asked by 27.04.2015 / 15:45
0
answers

Filter database by checkbox

This displays all data ... public function getProdutosHome($limit = false){ if($limit == false){ $query = "SELECT * FROM 'fretes' ORDER BY id_frete DESC"; }else{ $query = "SELECT * FROM 'fretes' ORDER BY id_frete DES...
asked by 12.11.2017 / 00:31
1
answer

CheckBox with External CheckBox

I have a Form with a DropDownlist with CheckBox inside, and I have an external CheckBox that selects and unchecks all. My question is the following. When I unselect one of the items in the DropDown the "Select All" CheckBox should be unche...
asked by 04.08.2015 / 15:38
1
answer

Custom JCheckBox does not appear

I would like to display a% cos_de% larger than normal by interface standard. After some searches I found the Customize JCheckBox icons an example to use, but it does not changes the size of the JCheckBox, but instead replaces its default image...
asked by 16.07.2015 / 06:20
2
answers

Checkbox marked automatically in array

I'm breaking my head to set a checkbox as checked. I know the syntax of the markup ( <input checked> ) but this particular checkbox is being assembled from an array and I could not, and I do not know if it's possible, set it as c...
asked by 19.12.2014 / 07:57
2
answers

Checkbox multiple and save in bank

I have a form where I can mark several checkbox at the same time and wanted to know how to identify the ones that are marked and save them in the database. In the database I will have a table and a column for every checkbox beca...
asked by 09.10.2015 / 00:10