radio

SDR kit with 2.4GHz RF frontend?

Do you know a SDR (Software Defined Radio) kit with a 2.4GHz ISM band (2400MHz - 2483.5MHz) transceiver? I need to perform some software defined radio including customised modulation. Also the price for one kit should be at maximum $1000. I know there are some extremely expensive solutions out there, but that is unfortunately not an opt...

What is a simple jquery way to select a radio when checkbox is checked and then deselect the radio when checkbox unchecked?

<input id="myCheckbox" type="checkbox" /> Please, please check me <input id="myRadio" type="radio" /> Am I selected ? I would like the following behavior: When myCheckbox is checked then myRadio is going to get selected. When myCheckbox is unchecked then myRadio is going to become unselected. How will I do this in a very simple...

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 IDataErrorInfo interface: <!-- Set error style for textboxes --> <Style x:Key="txtBoxErrStyle" TargetType="{x:Type TextBox}"> ...

Jquery toggle background?

Hello, here is my html <div id="entry"> week <span></span> <p>DKK</p> <input type="radio" name="red<% Response.Write(counter); %>" id="radio2" value="75" /> </div> I have bunch of these div entry generated by while loop so I want to achieve this : WHEN input inside entry is clicked I want background image of entry div to change, but i...

How can i check if a radio button is selected in javascript?

i have two radio buttons within a form. a dialog box appears when one of the fields is null. how can i check if a radio button is selected? ...

Creating a Cocoa radio button programatically

I need to make a Cocoa radio button programatically, can anyone explain how this might be done or post a good link that shows how to do this well. ...

Multiple <input type="radio" /> with the same name,how to know which is checked from PHP?

... <input type="radio" name="radio" id="radio1" /> <input type="radio" name="radio" id="radio2" /> .. Supposed it's submited with method="POST". ...

Design for wire between server and access point and RF to endpoint device

We're about to design an inhouse industry network consisting basically of the following: 1 server connected via wire to up to 100 proprietary RF access points (basically embedded devices), which each can be connected via radio to up to 100 endpoint embedded devices. Something like this: Now, I'm wondering about some design decisions t...

IE HTML radio change event

I have a project that requires some values to get updated with JavaScript from an HTML radio change event. For some reason in IE, it seems that the onchange event isn't called until the radio has lost focus. Unfortunately due to the way the code is setup, I can't use the click event and have to use the change event. Does anyone know o...

Simple check (PHP) to see if Shoutcast radio is online?

Basically, just a simple script that can check to see if a shoutcast radio is online or not, and output a code based on it. I tried to do this with file_get_contents and eregi, but it didn't seem to work, or was waaaaay to slow. Cheers. :) ...

Replacing a Windows Media Server (weekly radio show).

I'm moving a weekly live radio show from Windows Media Server and am looking for an alternative to accomplish the same task. We are decommissioning the WMS box and would rather just run it on another platform. I know there is shoutcast and icecast2 but unless I'm missing something they do live streams of prerecorded material. We stream o...

jquery radio button group problem

Hi, I have a radio group which is validated for required. It works fine except when in certain cases I need to disabled first radio button leaving user to select one from remaining. Even in this case radios are validated but error message is not displayed. I believe its due to error message's association with first radio. Disabling othe...

PHP multiple radio buttons

how can i process all radio buttons from the page? <input type="radio" name="radio_1" value="some" /> <input type="radio" name="radio_1" value="some other" /> <input type="radio" name="radio_2" value="some" /> <input type="radio" name="radio_2" value="some other" /> this buttons will be added dynamically so i will not know the radio ...

Is there any online radio library or method out there?

Hello, One of my new programs that I'm thinking to develop is a online radio listener, but is there any library or method to do this? Thanks. ...

How to get the radiobutton for corresponding datalisty item?

I want to convert this code to JavaScript code: rdb1 = (RadioButton)DataList1.Items[i].FindControl("rdb1"); How can it be done? ...

HTML Radio button not showing up in $_POST

Hi, I have a forum the user fills out with 2 separate radio button categories they can fill out. Permissions: private <input type="radio" name="permissions" value="private" /> public <input type="radio" name="permissions" value="public"/><br /> Category: default <input type="radio" name="cat" value"default" /> sport <input type="radio...

I want a function to be fired whenever one option of a radio element is checked. How to do it using Jquery?

There are many input radio elements on a web page and each radio element has several options. I want a function to be fired whenever one option of a radio element is checked. How to write the code using Jquery? One input element looks as follows: <div class="below"> <input type="radio" value="information" name="option0"/> information <i...

"unknown pseudo-class or pseudo-element 'radio' "

There are many input radio elements on a web page and each radio element has several options. I want a function to be fired whenever one option of a radio element is checked. How to write the code using Jquery? One input element looks as follows: <div class="below"> <input type="radio" value="information" name="option0"/> information <i...

jquery - selecting a radio button crossfades div onclick

hi. I have search all over google for this and nothing. I am going off what i stared and found. I have multiply radio buttons that i need to change a corresponding DIV when checked. I need to have the value free so and onlclick command would be better. PS: if i can have it fxfade instead of slideup and down it would help too. buttons ...

show/hide div based on radio clicked with class

hello. I have 4 radio buttons that correspond to 4 different divs. i want to fadeOut the current div and then fadIn the new selected one. right now its working but just fades between images. Also is there a way to change the divs based on the radio's class and not value? Code I currently have: <input type="radio" name="myRadio" class...