facebook

Radio button not checked – Investigating

  1. MobiOne Archive
  2.  > 
  3. Getting Help – General
Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #320169 Reply

    TonyG
    Member

    This message has not been recovered.

    #320177 Reply

    support-michael
    Keymaster

    This message has not been recovered.

    #320195 Reply

    TonyG
    Member

    This message has not been recovered.

    Attachments:
    You must be logged in to view attached files.
    #320202 Reply

    support-michael
    Keymaster

    This message has not been recovered.

    #320204 Reply

    TonyG
    Member

    This message has not been recovered.

    #320205 Reply

    support-michael
    Keymaster

    This message has not been recovered.

    #320206 Reply

    TonyG
    Member

    This message has not been recovered.

    #320207 Reply

    support-michael
    Keymaster

    This message has not been recovered.

    #320208 Reply

    TonyG
    Member

    This message has not been recovered.

    #320212 Reply

    support-michael
    Keymaster

    This message has not been recovered.

    #346647 Reply

    MalakSadik
    Participant

    what if i had a survey with 41 radio button groups( yes/No) in a pages, How can I get the checked radios in this page only?
    using this:

    $('input[name^="radio"]').each(function () {}

    will return all the radio buttons from the full UI screens in my app.

    #346664 Reply

    Code_A
    Member

    I am not sure if you can specify a page like you can a group. Do they need to be in the same group? Why not make a different group for each page? You could then write a function to check each page/group individually and then another function that can check all groups.

    #346947 Reply

    Hi angelsprincess1,

    This snippet should be helpful:

     $('input:radio').each(function () {
    
            var $this = $(this);
    
            if ($(this).prop('checked')) {
                alert($this.val());
            }
    
        });

    Note that

Viewing 13 posts - 1 through 13 (of 13 total)
Reply To: Radio button not checked – Investigating

You must be logged in to post in the forum log in