checkbox

asp.net mvc 2 client side validation missing ValidationRules on custom attribute

Hi all, Can't seem to get checkbox to be validate on client-side using asp.net mvc 2. Here is my code. Model [Serializable] public class RegistrationModel { bool termsAndCondition = false; [RequiredToBeTrue(ErrorMessage = "Need terms and service")] public bool TermsAndConditions { get { re...

[ExtJs] How to add checkboxes to Ext.tree.TreePanel?

Hi all, I created this simple tree: var children = [{ text:'My Layers', children:[ new Ext.tree.TreeNode({text:'test1',leaf:true}), new Ext.tree.TreeNode({text:'test2',leaf:true}) ] }]; var tree = new Ext.tree.TreePanel({ loader:new Ext.tree.TreeLoader(), width:150, ...

vb.net dynamicly create checkboxes

Hey all, i am trying to figure out how to go about creating dynamic checkboxes on my form when i do not know axacctly how many boxes i will need. The problem is that i do not know how to DIM more than one object. This is my code for creating one checkbox Dim checkBox As New CheckBox() Form1.Controls.Add(checkBox) checkBox.Location = N...

"Whack a checkbox" game with ListView

I have a ListActivity that was originally using an ArrayAdapter. Each item in my ListView contains a checkbox. I changed Adapters to a CursorAdapter. Everything is working fine except checkboxes are out of control. For example: When I click the checkbox in position 1, the checkbox in position 4 gets checked. If I click the checkbox ...

how to do select event in DevExpress XtraTree List

Hai, Am using DevExpress Tree List in C#.NET application .I want to know about how to trigger select event of checkbox control in DevExpress XtraTree List. example: I'm using a treelist extra editors devexpress. The columns are loading from database and contain check boxes.when checked a check box and press an edit button i want to ...

Name field in the input type for checkbox

Hi, I went through many online documents for checkbox input in XHTML. Can anyone clear my doubt? I mean what does this name field actually stand for? Milk: <INPUT type="checkbox" name="checkbox" value="Milk"> Chocolate: <INPUT type="checkbox" name="checkbox" value="chocolate"> Cold Drink: <INPUT type="checkbox" name="checkbox" value="C...

How to save checkbox array in database?

Hi, I have this form: <tr> <td><input type="hidden" name="ledlamps" value="LED lamps">LED lamps:</td> <td><input class="field checkbox" type="checkbox" name="box[]" value="3mm"/><label class="choice">3mm</label></td> <td><input class="field checkbox" type="checkbox" name="box[]" value="5mm"/><label class="choice">5mm</labe...

Display a RadioGroup's itens in a table like form

Hello, I'm trying to place a set of Checkboxes within the same RadioGroup in a tabular fashion. Something like this: [Check1] [Check2] [Check3] [Check4] I tried to have a couple of TableRow objects within the RadioGroup, but that removes the "group behaviour" and allows more than one Checkbox can be selected at the same time. I...

Checkbox array $_POST[data] from multipart/form-data?

I am stumped. (But then I'm no expert programmer!) I had modified a working form to include an upload script but now that it's using enctype="multipart/form-data" I can no longer seem to get at the checkbox array $_POST data. It sees it as an array, which is good I guess, but I haven't managed to do anything with it. So right now mysql...

Stopping a TranslateTransform when the checkbox is unchecked

Hi I have a translation transformation in C# WPF that starts when a checkbox is ticked, and I would like it to stop when you uncheck the checkbox, naturally. How do I do this? Thx ...

nested checkboxes with JStree

Hello. I am trying to replicate the behaviour of the nested tree list of checkboxes in the following link using the JStree Jquery module - http://www.blueshoes.org/_bsJavascript/components/tree/examples/example3.html JStree - www dot jstree dot com I've swiped the callback behaviour below from another post on the subject, but haven't...

Reskinning checkboxes with CSS and Javascript

I have created some simple Javascript to make a checkbox seem re-skinned that hides the checkbox and basically just pulls in a background image through CSS to show the checks/unchecks. Is this HTML/CSS for hiding the checkbox accessible? I want to be as compliant as possible and am uncertain about the hiding and my label. Currently thi...

POST multiple checkbox value tornado

I am messing around with a tornado web app with which I need a bit of help. I have multiple checkboxes with the same name and I would like to POST the values of the selected one. <input id=DB_BASED_ID name="activity" value=DB_BASED_ID type="checkbox"/> <input id=DB_BASED_ID name="activity" value=DB_BASED_ID type="checkbox"/> <input id=...

Phantom second click for WinForms TreeView checkbox

I am working on extending a TreeView in C#, and I have a couple of things I want to do when the checkbox changes state. I handle things in the OnAfterCheck and for the most part it works fine as long as I click once, or there is a reasonable amount of time between clicks. The problem comes if I click just slower than a double click. The ...

Populating a CheckListBox in VB.NET

Dear All, I have a small requirement and i request anyone to help me out by providing the source code for the same. The requirement is as follows: Can you please help me as to how to call a stored procedure by passing paramenters and populate a CheckListBox in VB.NET based on the results returned from the stored procedure. Regards, G...

Android - Getting the relevant ListView row on CheckBox changed

Hi All, I currently have a ListView in my Android app that has a CheckBox on the side. When the checkbox is changed I want to get some info from the listview row that the button is in and then persist it, however, I can not work out how to get the row data from the onClickChanged listener. My listview is populated using a custom JSONO...

How to explode array and assign chunks to respective checkbox fields?

Hi, Following situation: I stored a checkbox array with implode in a mysql table field. Now, in order to update the checkboxes, I want to read the table field content, explode it into its parts and assign it to the respective checkboxes. So far I managed to read out and explode the table field content into different chunks, my difficul...

Creating values for HTML post form from JStree checkbox list

I am just starting out with JQuery and Javascript, and adapting a nested set of checkbox inputs to make use of jstree checkbox behaviours. After realising that each item had to be an anchor tag to be recognised by the jstree code, I am now unsure how to generate values from the items for a POST form submission. Previously they were check...

MVC 2 Html CheckBox Client-Side Validation

Hi, this is probably simple but has been driving me nuts. I have searched all over for this and found people that have mentioned it but no solution provided. I have a simple viewmodel that has a boolean property with no data annotations on, other properties do but these do not effect the problem. Public Property AcceptSurvey As Boolean...

Get Value of a CheckBoxPreference in an Activity

Hi there, I've got a preferences.xml: <?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"&gt; <PreferenceCategory android:title="Category"> <CheckBoxPreference android:key = "inputPreferences" android:title = "Title" ...