2
votes
1answer
17 views
WPF: displaying XML attribute as a checkbox
I have this XmlElement, and add some attributes to it:
xmlElemMux.SetAttribute("test1", "1");
xmlElemMux.SetAttribute("test2", "0");
I can display those in a window using a textbox like this in the …
0
votes
1answer
22 views
Checkbox not removing items if unchecked - C# WPF
The CheckBox in my form won't remove items from the listbox at all if it is unchecked, even though I have it in the correct events
private void WWW_checkbox_Checked(object sender, RoutedEventArgs e)
…
1
vote
4answers
28 views
Find the status of Checkbox in Grdiview with paging
Hello All,
This is the code that i use to find whether any checkbox is checked in gridview
if($("table tr td:first-child input:checkbox:checked").length ==0)
{
alert("Select atleast one event …
0
votes
1answer
24 views
Why does a checkbox not remain checked in IE but not in FF or Chrome
i will make myself clear hope it will help to solve my problem
In my search engine i have the option to search some subjects from check box...it is like i have 10 check box with an option to choose …
0
votes
2answers
27 views
PHP checkbox populate back
Im trying to populate the POST checkboxes this way
foreach ($chk as $key => $value) {
if (isset($_POST[$key])) $chk[$key][$_POST[$key]] = 'checked="checked"';
}
But for some reason is not …
0
votes
3answers
21 views
Add image to Checkbox in winforms
Hi
I have a Image path(some thing like this "http://ABC/XYZ/PQR.gif").And I want to assign this image to checkbox in winforms using C#.winfroms checkbox does not have SRC,How can I assign this image …
0
votes
2answers
15 views
Determining Which ListViewItem Checkbox existed in
Hey Guys,
I saw something about this, but I've lost it now, and can't find it again. What I need is to know which ListViewItem a checkbox exists in, when the checkbox is checked (Which will …
0
votes
2answers
55 views
Ajax - php - mysql - checkbox
I am trying to create a dynamic system with check boxes for an web based game that I am trying to make using Ajax, PHP and MYsql
Is there a possible way to detect whenever a checkbox is …
0
votes
2answers
41 views
C# : How do i post a form to a website with some checked checkboxes ?
I'm working in C#, and I want to POST to a website that has multiple checkboxes and returns a datafile depending on which checkboxes are checked.
First of all, how do I post a form with checked …
0
votes
1answer
34 views
Flex Datagrid dynamically adding rows via checkboxex
Hello Stackoverflowers.
Does anybody know how to add a new row to a datagrid via a checkbox.
example:
checkbox 1 : label (PS2)
checkbox 2 : label (PS3)
checkbox 3 : label (PSP)
By selecting …
0
votes
2answers
39 views
jQuery Checkboxes in Safari
Hi Guys,
I am trying to add a class when a checkbox is "checked" in Safari and remove it when it is unchecked [in other browsers I am using.bind("focus", function() { but in Safari it doesnt work?]
…
0
votes
2answers
29 views
jquery Checkbox live click event jams firefox when actually clicking the checkbox
I have the following jquery code specified:
$('#firstbox ul.checkboxlist input[type="checkbox"]').live('click',function(){
$(this).parents('li').remove().clone().prependTo('#secondbox …
0
votes
3answers
45 views
jQuery checkbox manipulation
I have a list of checkboxes, looking like this:
<table>
<tr><td><input type="checkbox" /> <label>Bla</label></td></tr>
<tr><td><input …
0
votes
1answer
37 views
Android list view clarification quest
Hi guys,
My scenario:
-I'm using a list view in multiple choice mode to enable a user to
delete several items he/she has checked, at once.
-When the user clicks the delete button, i do the …
1
vote
2answers
41 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.
…
