0
votes
1answer
21 views
Validate radio input form with unknown set of radios
HI,
I am trying to validate a radio button form that has an unknown amount of radio groups.
So far I have this:
var object = $(".radio:checked");
var length = $('#numq').val();
i …
-1
votes
2answers
67 views
Checking if a radio buttons are selected in javascript
Here is the HTML i have, its four radio buttons.
<form action="" method="post" name="formid" id="formid">
<strong>1. How old is your system?</strong><br> …
0
votes
1answer
23 views
how to make radio button work without postback
my Div2 contains a datalist with a radio button,,when i click on radio button it gets the filename of the corresponding image with it,,currently this is happening with postback,,i …
0
votes
0answers
22 views
eval id via radiobutton inside datalist using javascript
i gt a radio button inside my datalist through which i am evaluating id in hiddenfield like this
<ItemTemplate>
<table cellpadding = "1px" cellspacing = …
0
votes
6answers
124 views
In JavaScript, how can I get all radio buttons in the page with a given name?
Like the title says, what's the best way in JavaScript to get all radio buttons on a page with a given name? Ultimately I will use this to determine which specific radio button is …
0
votes
2answers
34 views
Eval ID on radiobutton in Datalist
my code gota datalist with radio button and iv made it single selectable onitemdatabound....now im trying to evaluate a hiddenfield on basis of selected radio button
my code goes …
0
votes
2answers
32 views
Javascript appendChild name property
So I'm trying to add attributes to a radio button input, specifically the name attribute in Javascript. I'm appending children to a main object and when I use Object.setAttribute(" …
0
votes
3answers
47 views
jquery javascript: take action when radio button is selected
I have the following radio buttons, none of which is checked by default.
<input type="radio" name="location" value="0" /> home
<input type="radio" name="location" value= …
0
votes
1answer
111 views
Problem accessing OnChange javascript event of Radio Button
I'm running in to the same problem this individual has. Specifically, I'm trying to get a clientside onchange javascript event to fire for my Radio Button. Unfortunately, the cod …
1
vote
3answers
215 views
PHP - How to update data to MySQL when click a radio button
Example to save gender
<form action="save.php?id=<?=$id?>" method="post">
<p><label><input name="gender" type="radio" value="male" <?php if($gend …
0
votes
4answers
730 views
JavaScript\JQuery - identifying if radio button value changed by click
I have a page that displays a list of records. The user can select the record status using radio buttons, e.g.:
<div id="record_653">
<label><input type="radio" …
2
votes
2answers
92 views
Why does my customized WPF RadioButton not look right?
I am replacing the style of a radio button with that of a check box. I know you are going to say that is a bad idea, but it really needs to work this way. Anyway, using Expressio …
0
votes
2answers
54 views
Firefox Radio Button Weirdness
I have a form with a lot of groups of radios. Each radio has a unique id and has the same name as the others in its group. The page validates as XHTML transitional.
Tested in IE …
0
votes
2answers
49 views
In WPF, is it possible to have a combo box control, that looks like a RadioButton?
I have a whole bunch of code that is dependent on the ComboBox type, and I want to be able to use it on a new UI, but the UI that I want to use it for needs to look like a RadioBut …
0
votes
1answer
26 views
Unwanted dotted-line selection aroudn empty text for WPF RadioButtons
Hi, I have two radio buttons next to each other, and even though each one has no Content/Text, there is this ugly little dotted-line box that shows up next to which ever one has th …
