1
vote
2answers
6 views
How to do an action when a checkbox is checked with JQuery?
I want to do an action when a user checks a checkbox, but I can't get it to work, what am I doing wrong?
So basically, a user goes to my page, ticks the box, then the alert pops up.
…
0
votes
4answers
251 views
C# How can I check to see if a checkbox is checked on another form?
Hi all,
I'm using C# and I'd like to check to see if a checkbox on the main form is checked and if so run some code, the problem is I'm in a class file (file with no form, is class file correct?). …
0
votes
1answer
25 views
Asp.Net - Debugging why CheckBox has Checked = true after a postback
I have a fairly complex page containing a checkbox:
// In the .aspx
<asp:CheckBox id="MyCheckBox" runat="server" text="Testing" />
// In the .aspx.cs
protected …
0
votes
3answers
48 views
Checkbox not working properly for IE with jquery
Hi, I am trying using several asp.net checkboxes on a page, disabling them accordingly.
<asp:CheckBox ID='chkMenuItem' runat='server' CssClass='HiddenText' Text='Test' …
0
votes
5answers
383 views
jquery click event handler is called twice for a checkbox
I have a problem with the following code in an ASPX page:
<script type="text/javascript">
$(document).ready(function() {
$('.test').click(function() {
alert("click")
})
});
</script>
…
0
votes
1answer
7 views
QCheckbox/QRadio line wrap Qt4.6.0
Hi,
I'm trying to have a multi-line checkbox/radio with Qt using standard QCheckbox/QRadio.
I didn't find the direct solution since QRadio{wrap:true;} has no effect.
The only thing possible would …
0
votes
0answers
18 views
CheckBox Selected Item in WPF
Hello everyone I am using Accordion Control when I click on CheckBox it will display the
selected Item,but I want to display this Item in a line by line in to the another row
so how I can define.
…
1
vote
5answers
3k views
C# Datagridview Checkbox Checked Event - multiple rows?
Hello!
I have a datagridview with multiple columns and rows.
The first column contains a checkbox.
I want the user to be able to select multiple checkboxes and then perform an action.
For example if …
0
votes
1answer
13 views
Flex datagrid tab to checkbox column
Context: I have a data grid where the following has been implemented. tabbing through each column in a single row and creating a new row when tabbing from the last column.
The last column in my …
0
votes
2answers
584 views
How can I trigger an itemEditEnd Event in a Flex List when the CheckBox is checked/unchecked?
I have a List component that has drop-in CheckBox itemEditor that also serves as the itemRenderer. It displays each item as a simple CheckBox with a label.
However, the itemEditEnd Event does not get …
0
votes
2answers
34 views
To get multiple checkboxes value
Hi All,
I am using Struts 2, JSP and JPA in my project.
I have nearly 50 checkboxes in a single page. If i want to get the value of each checkbox in Action class, then i have write 50 getters and …
0
votes
2answers
40 views
Multiple Forms with Submit enabled via Checkbox
First, housekeeping: A quick review makes me think this isn't a duplicate but would be happy to be corrected.
I've got an ASP.NET MVC app that have a page with multiple forms, each form has some text …
1
vote
3answers
772 views
How to use a checkbox in Delphi?
Right now, I have the code:
begin
If odd(GetAsyncKeyState(VK_snapshot)) then
If CheckBox1.Checked then
begin
And then it continues on with the rest of the code. Is that the correct way of doing …
2
votes
1answer
344 views
Transparent Checkbox in Custom Control Using C#
Hello -
I have created a custom control that gets highlighted when the mouse hovers over it. The custom control also has a checkbox. When the mouse goes over the checkbox, the highlighting of the …
1
vote
3answers
716 views
Custom list clicking with checkboxes in Android
I've populated a ListActivity from a cursor using SimpleCursorAdapter that starts another activity when one of the list items have been clicked. I'm also using ViewBinder to do some custom …
