Questions tagged as 'checkbox'

0
answers

How to read dynamically created components inside a ListView

I created a list of questions I got from an api, so I created these questions dynamically, I did not use layout.xml, it was all programming. Now I would like to know how I can read the components of this listView, such as a checkbox for example,...
asked by 13.12.2016 / 14:54
1
answer

Change required field message

How do I change the message below and stay with the simplicity and coherence I need? Ihavethefollowingcode: $(function() { var requiredCheckboxes = $('.periodicidade :checkbox[required]'); requiredCheckboxes.change(function() {...
asked by 14.10.2016 / 23:12
1
answer

Assign and send checkbox value unchecked in Larevel

I have a form where the user can activate or deactivate certain options with or without a checkbox . <input name="ppra" type="checkbox" data-oFF-text="INATIVO" value="1" data-off-color="danger" data-size="small" data-on-text="ATIV...
asked by 28.09.2016 / 19:04
1
answer

How to check if a checkbox in a form has been selected through another form?

I want to check if a checkbox is selected on a form, since I'm working with several forms. Using the following code does not work: frmPrincipal f = new frmPrincipal(); if (f.chkNotificacao.Checked == true) {...
asked by 11.06.2016 / 02:57
2
answers

Check checkboxes when choosing value from a DB in PHP (Laravel)

I have a problem that I do not know how to solve and I do not know how to search. I'm building a system in php - laravel . This system will have user levels. I've done all of the sign-ups, changes, user views, groups, and permissions. H...
asked by 29.04.2016 / 17:11
0
answers

Foreach in checkbox for cookie

How do I make a Form with Foreach in 200 Checkbox and send the selected Checkbox results to a Cookie?     
asked by 29.04.2016 / 01:43
2
answers

Checkbox in DatagridView C #

Good afternoon. I have a datagrid view with a column of type checkbox, tied to a DataTable with the column of type checkbox as well. My problem is this: I have to go through a presence list, if the student is present, I have to set the check to...
asked by 18.04.2016 / 18:50
1
answer

Manipulating what will be displayed in the DisplayMember of a CheckListBox

I have a class Model: class pessoaModel { int id; DateTime data; TimeSpan hora; CliModel ID_Cliente = new CliModel (); public string Nome { get { return nome; } set { nome = value; } } pub...
asked by 24.02.2016 / 14:50
2
answers

Datagridview and checkbox - strange behavior.

I have a datagridview with some checkboxes. I have this code: Private Sub DataGridView2_CellMouseClick(sender As Object, e As DataGridViewCellMouseEventArgs) Handles DataGridView2.CellMouseClick If e.ColumnIndex > 1 Then DataGri...
asked by 15.02.2016 / 18:32
2
answers

How to use Javascript to limit the number of checkboxes that can be selected?

Hello, I'm doing a mini-project on jsfidlle, follow the link link There are several buttons and the user will have to select one of them, as shown below: When the user chooses how many numbers he wants to bet, the table with the numbers a...
asked by 22.02.2016 / 16:09