radio

Radio menu check

Using Winform, is it possible to "radio check" a menu item? ...

extract html table information based on radio button checked

What combination of selectors could I use to get the html text that contains Price information in the example below. (Assume user has clicked a radio button and the Submit button) <table border="1" id="modal_table"> <tbody> <tr> <td> <input type="radio" name='sub' value="509"/> </td> <td> 509 </td> <td class='price'> Price is...

HTML Radio button inside ASP.NET repeater C#

I am trying to simply bind a HTML Input radio button inside a repeater : <asp:Repeater ID="Outlets" runat="server" > <ItemTemplate> <input type="radio" name="Proposal" value="Test1" id="Radio1" checked=" <%#`GetSelectedValue(DataBinder.Eval(Container.DataItem,"IsDefaultSelection"))%>" />` <label for="Test1"> <%#D...

QCheckbox/QRadio line wrap Qt4.6.0

Hi, I'm trying to have a multi-line checkbox/radio with Qt using standard QCheckbox/QRadio. I didn't find the direct solution since QRadio{wrap:true;} has no effect. The only thing possible would be to access to the QRadio->label->setLineWrap(true) but I'd like to do that from the designer not having to rewrite a widget Any id...

php radio box values

Given that when using an html radio box, to send values to a php script, only the selected values is sent to the php script, still holds true. Do I still need to check that the user has selected something, when I am only interested in the selected value being sent to the php script, if the user does not select anything we do nothing or ...

PHP syntax and structure for radio button and its values

Radio box code: <input type = "radio" name = "choice" value = "A" />Apples /> <input type = "radio" name = "choice" value = "B" />Oranges<br /> $choice=array("A"=>1.00, "B"=>0.80); echo $choice["A"]; // will give me the value of 1.00 echo $choice["B"]; // will give me the value of 0.80 Given the code snippet above, i...

unexpected value for $(this+':checked').val()

I have a radiobutton set called 'daypattern'. Clicking on it should enable the checked member's formfield siblings and disable the formfield siblings (if any) of other members. I am trying to compare the value of the checked field with the value of the current radio button but the checked field value is returning an integer rather than ...

Is their any asp net server control which could render <label> tag?

I want to render a <label> tag. But want to set some of it's properties while it's rendering like for and text value. Actually my real problem is I want to associate a label with a radio button and this is the code so far I have: <asp:RadioButton ID="Option4" GroupName="A" runat="server" /> <label for='<%=Option4.ClientID %>' id="lbl...

Listen to a shoutcast with Android

Hey, since quite some time I'm trying to listen to .pls files (shoutcasts). I have to say that I failed horrible. Since StreamFurious can do it it must be possible. First I tried to connect to the shoutcast via sockets (TCP and UDP) --> failed. I couldn't even receive one byte from the server. I'm at the verge of tears. I don't even ha...

jQuery Convert Select to Radio buttons?

I am trying to convert select boxes to radio buttons on the fly using jquery, and I'm not sure the best way. Example HTML: <form id="product"> <select name="data[123]"> <option value="1">First</option> <option value="2">Second</option> ...... <option value="n">xxxxxx</option> </select> </form> ...

Techs needed for building a online radio website....?

Hi everyone.... i need to build a website that streams music from an online radio station...? In this website, the user can choose from different channels and listen to music.... What are the possible softwares or technologies that i can use to build this....? I will be using php for server side.... I am researching about what else i...

jquery: radio button input checked attribute is undefined

I have the following and in this order: <script type="text/javascript"> $(document).ready(function(){ var overwrite = $('#itemList input:radio:checked').val() alert('value = '+ overwrite); }); </script> <body> <form ..... > <div id="itemList"> Overwrite? <input type="radio" value="Yes" class="overWrite" nam...

web audio stream player without Flash

hi, I'd like to build a web radio with functions play/pause/stop/change channels with my own GUI. How can I do it without Flash? thanks Jul ...

CakePHP, Lining up radio buttons horizontal rather than vertical.

I have been looking at the cookbook - 7.3.3 Automagic Form Elements trying to find a way for radio buttons to line up horizontally rather than vertical. I have been looking at the 'div' => 'class_name' $options also the "$options[‘between’], $options[‘separator’] and $options[‘after’]" but have been unsuccessful. Is there a "cake" way ...

How Can I get the text of the selected radio in the radio groups

as said in the title for example: <input id="User_Type_0" type="radio" name="User_Type" value="1" checked="checked" /> <label for="User_Type_0">User1</label> <input id="User_Type_1" type="radio" name="User_Type" value="2" /> <label for="User_Type_1">User2</label> how can I get the text:User 1 ...

Greater area for radio selection

<span> <img src="img/icon.png" alt="" /> <label><input type="radio" name="" /> Label here</label> </span> I want the whole <span> to be clickable, not just the radio input. How do I do it with jQuery? ...

DTMF monitoring via multimon, awk and espeak

Hello, the question is: How to listen to the spoken DTMD digit every time the sound card capture one? The objective is radio controlling my pc and interfaces activities dialing dtmf tones via a hand-held transceiver. I used multimon to hear DTMF tones I tried to use awk to filter digits and proceed accordingly. For example, if I key...

Is it possible to listen to any kind of internet radio with HTML5 directly?

Is it possible to listen to any kind of internet radio with HTML5 directly? I mean is it posible to play live mp3 streams in HTML5 complaint browsers? ...

Is it possible to play shoutcast internet radio streams with html5?

Is it possible to play shoutcast (or some) internet radio streams with html5? So I have next code: <html> <body> <audio src="http://shoutcast.internet-radio.org.uk:10272/" /> </body> </html> I save it as HTML page and start my browser (Google chrome 4.0.249.78, safary or FF) But it does not play/work!( And it does not play with an...

Find out if radio button is checked with JQuery?

Hi Guys, I can set a radio button to checked fine, but what I want to do is setup a sort of 'listener' that activates when a certain radio button is checked. Take, for example the following code: $("#element").click(function() { $('#radio_button').attr("checked", "checked"); }); it adds a checked attribute and all is well, bu...