Radio is the transmission of signals through free space by electromagnetic radiation of a frequency significantly below that of visible light, or a device for doing the same. Radios are typically used for communication including voice, video and data. This includes Wi-fi, Bluetooth, Mobile phones, ...

learn more… | top users | synonyms

1
vote
3answers
303 views

NHAML Radio Button Syntax

Does anyone know the correct syntax for a selected radio button in NHAML? This is my current NHAML code: %input{type="radio", name="Relocation", value="Yes"} The help would be greatly appreciated. ...
1
vote
2answers
1k views

Streaming audio/radio in Java?

I've been looking around the entire web, and tried a bunch of different stuff, but I can't figure out how to play streaming audio in java - which is crucial for the application Iam developing now. ...
1
vote
3answers
1k views

Disable radio buttons based on the action of other radio buttons

This works perfectly for one set of 3 radio buttons: $("input:radio").click(function() { $(this).siblings("input:radio").attr("disabled","disabled"); }); To take this one step further...I have ...
1
vote
4answers
2k views

show and hide table based on radio button

I have two tables: the first is shown and the second is hidden. I'm trying to get the second table to appear when either "Yes" radio button is chosen in rows 8 and 9 of the first table. If both ...
1
vote
2answers
768 views

Django: Using Radio select box on model formsets

Hey, I'm using a model formset to let my users edit their photo album. I want to put a Radio select box on every photo saying "Set as cover image" so that I can process all the photos and find the one ...
1
vote
2answers
693 views

using jquery to disable a series of radio buttons on demand

I'm trying to accomplish something similar to Wikipedia's History history page, dynamically disabling radio buttons in a series. Ie... if #4 in group two is selected, then 1-4 of group one are ...
1
vote
3answers
2k views

How to manually check a YUI radio “button”

<script type="text/javascript"> (function () { var ButtonGroup = YAHOO.widget.ButtonGroup; var onCheckedButtonChange = function (p_oEvent) { }; ...
1
vote
4answers
139 views

Javascript conditional - uncheck radio buttons in hidden div?

I'm trying to set up a conditional type radio button for a form, I actually modified some javascript I found here that looks like this: function hideStuff(id) { ...
1
vote
4answers
362 views

How to add/remove class to parent div according to input radio selection using jQuery?

the below code shows 4 radio buttons that are hidden by default using the display:none property in CSS. However, I select them using the "label" tag. I also have a div wrapping everything. I want to ...
1
vote
1answer
49 views

is there a way to group radio button for php usage?

I'm wondering if let's say I have 4 radio buttons named red blue yellow and green but if none of them are unchecked and a person submits the form, let's say will echo no radio checked. if I use the if ...
1
vote
3answers
157 views

Change DIV Background When Nearest Radio Checked

I have this already to make selecting the radio box easier $("div.column43").click(function () { $(this).find('input:radio').attr('checked', true); }); I want the background/border of the div the ...
1
vote
9answers
151 views

Get only unique names from more elements

I have dynamically rendered HTML that lists an undetermined number of radio buttons whose names represent some ids in a database. I need to collect all of the unique names of the radios. Here is an ...
1
vote
2answers
535 views

Android Stream Player

Its possible to make an android app to stream a file like this? mms://url/ROLI-ENC-XXXX
1
vote
2answers
483 views

Inserting the selection of radio buttons into MySQL

Unfortunately I haven't been able to find exactly what I'm looking for online to resolve this. At any rate, I have three radio buttons and I need to push the selection of a single button selected ...
1
vote
1answer
2k views

get the value from a twitter-bootstrap radio data-toggle

I am trying to get the value from a twitter-bootstrap data-toggle="buttons-radio" submitted, along with comments from a comments field, in a form_for in rails using erb. I have seen these posts, but I ...
1
vote
2answers
301 views

filtering radio buttons in jquery, comparing values

I have the following code. Trying to prepopulate a radio button based on an incoming array value. It will be 1-3 <input name="rating1" type="radio" value="1" /> <input name="rating1" ...
1
vote
2answers
730 views

Online audio stream using ruby on rails

I'm trying to write small website that can stream audio online(radio station) and got few questions: 1. Do i have to index all my music files into database, or i can randomily pick file from file ...
1
vote
1answer
617 views

Getting Radio button selection

NO JQUERY! When the user selects Have a Baby or Military leave radio buttons pop up. I am having trouble getting the values of the selected buttons and changing the innerHTML with id="choice" to the ...
1
vote
1answer
708 views

PreferencesActivity - customize style of checbkoxes, radio buttons etc [duplicate]

Possible Duplicate: Change icons of checked and unchecked for Checkbox for Android customize check box preference Is there any way to customize style of elements in PreferencesActivity? ...
1
vote
1answer
334 views

Ruby on rails - adding several radio buttons to the same line in a form

How do I create a form where there are several radio buttons on the same line? I can only seem to get them to display vertically, one below the other. I have limited experience with HTML/CSS/RoR.
1
vote
4answers
134 views

Jquery append when radio button selected

I don't know why but hopefully, someone can help me out with the following code. <script src="/jquery-1.7.2.min.js"></script> <script> ...
1
vote
2answers
715 views

Wicket RadioChoice default selected

I have a RadioChoice component with an attached model. The radio choice is associated with a boolean field, hence I have to radio buttons (yes/no). My problem is that the no-button gets pre-selected ...
1
vote
3answers
617 views

.is(':checked') not working in jquery

Hello friends I want when user checked the radio box then the text will show following is my code you can also check my code here http://jsfiddle.net/mY4N5/ HTML <form id="form1" name="form1" ...
1
vote
2answers
247 views

Check if at least one checkbox is selected PER questio.n

Here we go again , searched and tried myself but none of the online examples are not the same as in my case. I have 2 radio based question and other 22 with checkboxes. My question is how to check if ...
1
vote
2answers
986 views

Radio Station using Android is that possible?

I got a project where i need to use my Android phone as a radio station.It means,i need to produce sound or song from my android phone and upload those to a server and from server; users can hear ...
1
vote
2answers
2k views

Get radio button value onload and hide or show div

I have the following jsfiddle setup: http://jsfiddle.net/cvn6n/ Based on the radio selection a div is hidden or displayed (if audi is selected the div is hidden and if any other value is selected ...
1
vote
2answers
248 views

Platform to use for radio server?

I'm making a mobile app where users should be able to start their own radio broadcast channels from their mobile phone. Other users will then be able to browse broadcasts and connect. It also includes ...
1
vote
1answer
472 views

Reset radio group within a table which is in a tr

I can reset all radio buttons over many rows with the following jquery. $( ".reset_location" ).click(function() { $('#tbl_outside table.tbl_Inside input:radio').each(function(){ ...
1
vote
3answers
225 views

How to use divs as radio button selectors for hidden field with jquery?

I'm trying to create a good looking product order form with jquery skills. I have some shoe size values as like divs: <div id="select-size"> <div id="size-value-19">39</div> ...
1
vote
2answers
663 views

jquery find radio button in table

I am trying to find all radio buttons contained in a TR with a specific class name. Once I have found the radio inputs (they are a simple yes/no choice), I must set the radio to No. Here is sample ...
1
vote
1answer
523 views

How to determine bluetooth hardware classes on Android devices?

I know this is a hardware question, but I am still hopeful I can get a little help. The question is: How can I figure out what class (hardware specification) a bluetooth chip is within an android ...
1
vote
2answers
446 views

Android device radio ROM programming

I need to get access to some functions of radio ROM, which lays underneath of Android OS. After some googling I've realized that it's nearly impossible, since sources are hidden - at least for ...
1
vote
2answers
6k views

How can i pass multiple radio button values to MYSQL Database via PHP as all individual values but keeping them segregated into groups?

I have a long questionnaire (46 questions) with each having (3) possible answers, yes, sometimes, and no, (3 radio buttons) each of which have a corresponding value, 10, 5, and -10 respectively. I ...
1
vote
3answers
9k views

Make radio button bigger?

Is there any way to make a radio button bigger using CSS? If not, how else can I do it?
1
vote
5answers
847 views

How to get selected input:radio

How come this works. $('input:checked') and this won't? $('input').is(':checked') Thanks.
1
vote
2answers
1k views

Radio Button Error Style

I have implemented an error style for textboxes using the following code. This sets a tool tip and puts a nice error image to the right of the textbox if the element reports an error status via an ...
1
vote
1answer
828 views

How many Radio Buttons can be checked at any one time in this specific form?

If a Form contains 2 Group Boxes each containing 3 Radio Buttons and the Form itself contains 5 Radio Buttons not in either of the Group Boxes how many Radio Buttons can be checked at any one time? ...
1
vote
2answers
46 views

Hide/Show Based on Radio Button Click

I've been searching for a few hours now and haven't been able to get an aspect of my code working. I have two radio buttons for a div, and I want it so if I select Yes, it shows one slider, if I ...
1
vote
1answer
50 views

JQuery get radio input value and PRINT IT

I've been browsing for this for three hours now... and I found only how to GET the value from the radio input. But how do I print it? Let's say I have this input form: <form action="" ...
1
vote
1answer
81 views

PHP Radio Button Inside echo

echo "<form class='custom'>"; foreach ($prices->item as $item){ $ongkir = $item->value; $transfer = $total_jne * 1000; $transfer_rp = $transfer + $ongkir; ...
1
vote
1answer
110 views

How can I get a HTML element in Xcode?

I have a problem which I can't resolve. Here it is: I am trying to make a radio app for iPhone. I am using an online stream, so I want to display the current song in a label. How to do that? Here is ...
1
vote
1answer
318 views

How to encode live broadcast of the Local FM radio stations

We are in the midst of research stage for our coming web project. We would like to make a website that streams (all) the Local FM Radio Stations. In research for the right tools to set up the said ...
1
vote
1answer
729 views

How to use “checked=true” with Primefaces's SelectOneRadio?

I would like to use jQuery to change the checked status of the radio button of Primefaces. But the only thing I am able to set is: disabled=false/true. I think it is possible to do this with jQuery, ...
1
vote
2answers
124 views

How to use my apache/php web hosting for setting up a radio? [closed]

Is there a way to use my Apache / PHP web hosting to setup an internet radio ?
1
vote
3answers
114 views

I keep getting this error in javascript? (radio, checking them in javascript)

For some reason I keep getting this error, I don't know why. Uncaught TypeError: Cannot set property 'checked' of null js.js:4 check js.js:4 (anonymous function) Here is my code: ...
1
vote
1answer
282 views

bootstrap unselectable radio button

i have this btn-group: <div class="control-group"> <label class="control-label">Sex</label> <div class="controls"> ...
1
vote
2answers
271 views

Replacing radio buttons with images using ID [closed]

I'm looking to replace the standard input radios with different images, basically a visual grading scale in the radios themselves, and I need a cross-browser solution that does not rely on using the ...
1
vote
3answers
212 views

jQuery addClass when a radio button in a group is selected

I have the following code: var selectedMarkerClass = 'was-selected'; $('.group_1').change(function() { $(this).addClass(selectedMarkerClass); if ($('.' + selectedMarkerClass).length == ...
1
vote
1answer
196 views

Open/close input radio

I explained my problem, I have an overlay that I used to delete the categories. I add an action to let you choose where to go when the job categories will be deleted. For this, I use checkbox and I ...
1
vote
3answers
115 views

In PHP how to output the contents of a radiobox array using POST?

I want to output the values of the checkbox in the same way I'm outputting the values from the text fields. Since the checkbox can have multiple inputs I'm using an array for that but trying to cycle ...

1 2 3 4 5 15