Select all tick boxes

I have a cfoutput query which shows the folowoing
Group 1
"Check box" "John Smith"
"Check box" "Paul John"
"Check box" "Jeff Small"
Group 2
"Check box" "Craig Land"
"Check box" "Pete Son"
"Check box" "Pete smoth"
so what i want next to each "Group" have a select all Check
box in group link or Check box
so if clicked only the check boxes in that group are
checked

> ok thanks for the great reply
> any idea how i would do this?
I think Dan might have been suggesting that - given it's a JS
question -
asking on a CF forum might not be the best idea. Speaking for
myself, I'm
a pretty good CF developer, but only an adequate JS
developer. And that's
probably representative of the audience here.
I don't think Dan was trying to be unhelpful, just
matter-of-fact.
If you have JS questions, ask on a JS forum. "Best tools for
the job",
etc.
Adam

Similar Messages

  • Yahoo updated its Bizmail today. Now I've lost all tick boxes, attachment icons etc

    I have lost all tick boxes, icons for attachments and actions such as Move, Delete etc. They are replaced by some underlying square with text in them. They can be clicked but its hard to know what you are doing. How can I get them back? Is there a setting I can change? There is no such issue in IE.
    I'm running Windows 8 Pro on Sony Vaio

    A tall rectangle with two rows of two characters? This indicates that the page uses a character in a font that Firefox is not able to load and not able to substitute. In the case of Yahoo, they replaced icon images with a downloadable font. (This happened in the consumer interface many months ago.)
    First, let pages choose their own fonts. That is set in the Options dialog here:
    "3-bar" menu button (or Tools menu) > Options > Content > "Advanced" button
    Make sure the box is checked for "Allow pages to choose their own fonts". (That's the default setting, but some users turn it off.)
    If you reload the page (Ctrl+Shift+r will bypass cached files and pull everything fresh) and still don't get those characters, it's possible that font downloading is blocked somewhere else:
    (1) If you use the NoScript extension: check for "Blocked Objects" on the menu that drops down from the NoScript toolbar button. You can switch an option in NoScript to allow web fonts for trusted sites. (See: [https://support.mozilla.org/questions/1008052 Some Unicode characters are not displaying properly])
    (2) Built-in global preference (the default value is true, but some users switch this to false). To check on this:
    (a) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (b) In the search box above the list, type or paste '''gfx''' and pause while the list is filtered
    (c) If the '''gfx.downloadable_fonts.enabled''' preference is bolded and user set to false, double-click it to restore the default value of true.
    Any luck?

  • InfoPath: Check that all tick boxes have been ticked

    I have an InfoPath form. It is a checklist with 20 tick boxes. I want to be able to update a status field once all those boxes have been ticked and the form submitted. What is the best approach to this?
    Learning SharePoint

    Create a checkbox on your InfoPath form and set it to required. This way the user needs to check it before he / she is able to submit the form. If required doesn't cut it, just add a validation to the checkbox, so it needs to be
    true.
    http://stackoverflow.com/questions/8045235/infopath-2010-validate-i-agree-checkbox-before-submitting
    http://sharepoint.stackexchange.com/questions/85678/sharepoint-how-to-enable-a-field-when-a-check-box-is-selected-on-new-item-form
    http://office.microsoft.com/en-in/infopath-help/make-a-control-required-HP010065360.aspx
    http://www.bizsupportonline.net/blog/2010/01/infopath-make-control-required-based-on-condition/

  • Select all check box at some time

    Hi all,
    I have a search display .jsp page, which have some checked box, allow the users to check the box and download data from database, righr now the use need to checked the checked the box one by one,
    bu tthey want to add other button, which allow them to select all the checked box by click the box, not ideal how to handle.
    any advise

    Hi ,
    thank you for the reply,
    I finally have time to finish this part
    the code is <script language="JavaScript" type="text/javascript">
    function checkAll(field)
    for (i = 0; i < field.length; i++)
    field.checked = true ;
    function uncheckAll(field)
    for (i = 0; i < field.length; i++)
    field[i].checked = false ;
    <input type="button" name="b1" value="Check All" onClick="checkAll(document.form1.mybox)">
    <input type="button" name="b12" value="Uncheck All" onClick="uncheckAll(document.form1.mybox)">
    </form>
    </script>

  • Re- Single click in the check box ensure to select all check boxes

    Hi All,
    I have an issue to notify the urgency of the cart to the buyer while creating the cart.For that scenario we have a check box in the Basic data of shopping cart.I added the check box in the basic data. Now the  quote check box is available for all the line items.
    The requestor can select any check box in any line items,so whenever he selects the check box- automatically all the check box should get selected , if any of the check box get deselected then imediatelely all the check box in different line items also should get deselected.

    Hi Batchu,
    Thanks for your reply, See if you add any custom field it will come one by one in the basic data section. Adding one more check box doesnot work for this case.
    Moreover the problem is change to any particular line item can be captured in DOC_CHANGE_BADI but i cannot bring the same change to all line items (ie) If 3 rd line item check box is marked then immediately rest of the line item also should get marked.
    In the case of DOC_CHECK_BADI to identify the line on which the change happens is tough.
    SO thats is the problem for me to bring the logic in the code.
    Please if any one come across similar kind of issue please give your suggestion.
    Thanks,
    Sibi

  • Select all check boxes in alv

    hi,
      the first column of my alv grid display is check boxes. i want all the check boxes to be checked when the user clicks on the select all button present on the grid.it very urgently required.plz give me the code.
    thanks & regards,
    santosh

    Hi santosh nayak  ,
       on the action method of select all button, read the the whole alv. Set the value of the first field as abap_true. Bind the itab back to the node.
    Regards
    Sarath

  • Select all check box in interactve report

    Hi,
      I am writing an interactive report. The second screen will display the check box for thye user to select the items.
    Now the requrement is to create an option like select all means it should select all the check boxes.
    How can I create this option of select all.
    Thanks.

    Hi,
    Please check this example.
    <
    REPORT  Z_TEST NO STANDARD PAGE HEADING.
    DATA: t_flag TYPE STANDARD TABLE OF xfeld,
          s_flag TYPE xfeld.
    START-OF-SELECTION.
      DO 10 TIMES.
        WRITE:/ s_flag AS CHECKBOX,
               sy-index.
        APPEND s_flag TO t_flag.
        HIDE s_flag.
      ENDDO.
    AT LINE-SELECTION.
      LOOP AT t_flag INTO s_flag.
        s_flag = 'X'.
        MODIFY LINE sy-tabix LINE VALUE FROM s_flag.
      ENDLOOP.
    Thanks
    Naren

  • Select all text boxes (help)

    I will try to explain this as best I can, bare with me.
    I'm using Acrobat X 10 and I'm trying to print a PDF file that are slides from one of my university classes. The problem I'm having is that some of the text is not printing or printing very lightly. I have solved this problem by going to the tools panel and then edit document text tool. From there I select a text box, select all text in said text box, select properties, click on the text tab and then changing the fill from white to black(following so far?). Now my issue is that there are many text boxes, to the point where only one word occupies a text box. So what I'm wondering is if there is a way to select all the text boxes so I can do this proccess for the whole file rather than selecting each text box and repeating the proccess, as this is very time consuming.
    Any help is appreciated.

    Why don't you see if your printer driver has an option for printing B&W (not grey or greyscale), that might do the trick.

  • How do you selected all text boxes in a document

    Say you have 100 pages in a document and you have a threaded text box placed on pages 1 through 100. How do you selected all the text boxes at the same time? You might do this to change the size of the boxes, or lock all of the boxes, or apply an object style to all of the boxes.

    Depending upon how well your document is set up though, layout adjustment might work.
    If changing text box size is on your agenda, and every text box is lying exactly on guides, then layout adjustment might work.
    The only way I can think of to lock all frames in a story, or to change the size of all text frames in a story, would be to write a Javascript. And, even after years of practice, I know that it'd still be faster for me to just step through the document and make the changes by hand than it would be to bang my head against Javascript for n hours before I found a good solution.
    Barring these exceptions, I think that Bob's statement
    You don't because you can't.
    is actually pretty accurate. Terse, maybe, but accurate.

  • The font i used in my KEYNOTE presentation is not available when you upload it to the cloud.  So, now my  text boxes are all messed up.  How can I select ALL font boxes of presentation and change (at least) the font style?

    I have a large presentation that I need to access from the cloud THIS SATURDAY.  Now, after uploading from my iMac to Cloud, the font is all messed up because the font I selected on my mac is NOT available on the Keynote Cloud....so capitalization is wrong, inconsistent, etc.
    Is there a quick way to select all text and change the style?  Help..I am running out of time!

    What's the URL of the page?
    In the mean time clear the cache and reload the page.

  • Check box Select All

    Hi all,
    I have created a Report with
    select EMP_no,
    EMP_name,
    Sal,
    apex_item.checkbox(2,EMP_no) CHK
    from emp
    Order by 1
    where I want have the Select All check box on th etop of the CHK Column for that i used
    <input type="checkbox" onclick="$f_CheckFirstColumn(this)" /> as Heading of the Column
    so when i clicked on Heading Column Chk BOX all chk box in that column selected but if UN chk on one of the Chk box in the Report the TOp heading CHk box has to Be unchk but its happenig wats the Solution for that?
    Regards
    798545
    Edited by: 798545 on Oct 1, 2010 6:35 AM
    Edited by: 798545 on Oct 1, 2010 6:35 AM

    Hi all,
    I have created a Report with
    select EMP_no,
    EMP_name,
    Sal,
    apex_item.checkbox(2,EMP_no) CHK
    from emp
    Order by 1
    where I want have the Select All check box on th etop of the CHK Column for that i used
    <input type="checkbox" onclick="$f_CheckFirstColumn(this)" /> as Heading of the Column
    so when i clicked on Heading Column Chk BOX all chk box in that column selected but if UN chk on one of the Chk box in the Report the TOp heading CHk box has to Be unchk but its happenig wats the Solution for that?
    Regards
    798545
    Edited by: 798545 on Oct 1, 2010 8:28 AM

  • OBY6 - use of tick box "Business Area Fin Statements

    Hello All,
    there is a tick box in transaction code OBY6 "Business Area Fin Statements"
    I have to do testing for this tick box i.e. what if we select this tick box & what if we do not select this tick box.
    Could anyone pleae guide me what should be testing scenario for this. Thanks
    Deepak Garg

    please research this before posting next time.

  • I used to be able to sync only certain apps but now there is no tick box to select which ones how do I do this now

    Hi
    The tick box seems to have disappeared from Apps when syncing - just bought a new ipad mini and don't want all my apps on it but without the tick box I'm not sure how to select only the ones I want.  Can anyone tell me how I now select only certain apps.

    Hey Maggiely,
    Thanks for the question. The following article may have the answer to your question:
    iTunes 11 for Mac: Add apps to iPod touch, iPhone, or iPad
    http://support.apple.com/kb/PH12115
    Select Sync Apps, and click Install next to the apps you want to sync. If you have iOS 3.1 or later, you can also do the following:
    - Drag apps from the list on the left to the Home screen on the right.
    - Arrange your device’s Home screens by dragging app icons to where you want them to appear.
    Thanks,
    Matt M.

  • Avi or wmv files wont automatically save (tick box option is not selectable)

    avi or wmv files wont automatically save
    (tick box option is not selectable)
    i go to options
    and select SAVE as the default for .avi and .wmv
    FF always asks me what to do every time?
    if i click save, the tick box option for 'always do this' is not selectable ?
    How do i fix this so i can automatically download .avi and .wmv?
    ie ........i click a link ..........it downloads......like other file types

    Try this:
    It works for ALL types of files!
    # Save a small avi file on your harddisk
    # Open Firefox
    # Go to File | Open File ...
    # Go to the file location and select it
    # Click Open
    # Now you see the small window named Opening …
    # Click radio button Save
    # Tick box “Do this automatically for files like this from now on.
    # Piruz bāshid!

  • Dialogue tick boxes un-hiding all fields, not just the ones where value has changed to true

    I am hoping someone can help me make what I want to happen, happen if certain check boxes are ticked withing the dialogue box
    right now I can see on the console print that the tick box turns the value from false to true but the OK button is also un-hiding all my fields rather than just the ones where the value has turned to true. What am I missing here
    //Create a Dialogue box for staff to state how many of the account owners are in branch in order for the names to show in the signing section
    var Signors =
        result:"cancel",
        DoDialog: function(){return app.execDialog(this);},
        bChk2:false,
        bChk3:false,
        bChk4:false,
        bChk5:false,
        initialize: function(dialog)
            var dlgInit =
                    "Chk2": this.bChk2,
                    "Chk3": this.bChk3,
                    "Chk4": this.bChk4,
            dialog.load(dlgInit);
        commit: function(dialog)
            var oRslt = dialog.store();
            this.bChk2 = oRslt["Chk2"];
            this.bChk3 = oRslt["Chk3"];
            this.bChk4 = oRslt["Chk4"];
        description:
            name: "Signors",
            elements:
                    type: "view",
                    elements:
                            type: "view",
                            char_height: 10,
                            elements:
                                    type: "static_text",
                                    item_id: "stat",
                                    name: "Who is here to sign:",
                                    char_width: 15,
                                    alignment: "align_fill",
                                    font: "dialog",
                                    type: "view",
                                    char_width: 8,
                                    char_height: 8,
                                    align_children: "align_top",
                                    elements:
                                            type: "view",
                                            char_width: 8,
                                            char_height: 8,
                                            elements:
                                                    type: "check_box",
                                                    item_id: "Chk2",
                                                    name: "Primary Applicant",
                                                    type: "check_box",
                                                    item_id: "Chk3",
                                                    name: "Associate 1",
                                                    type: "check_box",
                                                    item_id: "Chk4",
                                                    name: "Associate 2",
                            type: "ok_cancel",
    // did the value change when ticked - lets check
    Signors.bChk2 = false;
    Signors.bChk3 = false;
    Signors.bChk4 = false;
    if("ok" == Signors.DoDialog())
        if (Signors.bChk2 = true)
    getField("Signor1").hidden = false;
    getField("Staff1").hidden = false;
    getField("Date1").hidden = false;
    getField("Date2").hidden = false;
    if (Signors.bChk3 = true)
    getField("Signor2").hidden = false;
    getField("Staff2").hidden = false;
    getField("Date3").hidden = false;
    getField("Date4").hidden = false;
    if (Signors.bChk4 = true)
    getField("Signor3").hidden = false;
    getField("Staff3").hidden = false;
    getField("Date5").hidden = false;
    getField("Date6").hidden = false;
        console.println("Chk2:" + Signors.bChk2);
        console.println("Chk3:" + Signors.bChk3);
        console.println("Chk4:" + Signors.bChk4);
        console.println("Chk5:" + Signors.bChk5);
    //console.println shows if bChk.. is true or false
        console.println("Chk2:" + Signors.bChk2);
        console.println("Chk3:" + Signors.bChk3);
        console.println("Chk4:" + Signors.bChk4);
        console.println("Chk5:" + Signors.bChk5);
    //Yeah, confirmed values have changed, now show fields based on staff input
    //was primary applicant ticked
    doWhatIWant: function(results) {
    if (results [Signors.bChk2] = true)
    getField("Signor1").hidden = false;
    getField("Staff1").hidden = false;
    getField("Date1").hidden = false;
    getField("Date2").hidden = false;
    //was Associate 1 ticked
    if (results [Signors.bChk3] = true)
    getField("Signor2").hidden = false;
    getField("Staff2").hidden = false;
    getField("Date3").hidden = false;
    getField("Date4").hidden = false;
    //was Associate 2 ticked
    if (Signors.bChk4 = true)
    getField("Signor3").hidden = false;
    if (Signors.bChk4 = true)  
    ("Staff3").hidden = false;
    if (Signors.bChk4 = true)
    ("Date5").hidden = false;
    if (Signors.bChk4 = true)
    ("Date6").hidden = false;

    You're missing some curly brackets, using the incorrect equality operator, and using the long deprecated field.hidden property. Try this:
    if ("ok" == Signors.DoDialog()) {
        if (Signors.bChk2) {
            getField("Signor1").display = display.visible;
            getField("Staff1").display = display.visible;
            getField("Date1").display = display.visible;
            getField("Date2").display = display.visible;
        if (Signors.bChk3) {
            getField("Signor2").display = display.visible;
            getField("Staff2").display = display.visible;
            getField("Date3").display = display.visible;
            getField("Date4").display = display.visible;
        if (Signors.bChk4) {
            getField("Signor3").display = display.visible;
            getField("Staff3").display = display.visible;
            getField("Date5").display = display.visible;
            getField("Date6").display = display.visible;
        console.println("Chk2:" + Signors.bChk2);
        console.println("Chk3:" + Signors.bChk3);
        console.println("Chk4:" + Signors.bChk4);
        console.println("Chk5:" + Signors.bChk5);
    I don't know if that will deal with all of the problems, but it's a good start.

Maybe you are looking for

  • Dynamic PL/SQL Questions

    Hi, I like to choose one among the operators coming from the web page. Like >, <, >=, Between etc etc .. Using this I have to execute a certain query. For eg in the case of > I will execute total_amount > amount; in the case of < I will execute total

  • Regarding downloading data into excel from internal table

    hi all , i'm using the function module  SAP_CONVERT_TO_XLS_FORMAT to download data of internal table into excel . now i need to know . when user presses the button for downlading it should download after downloading if he again tries to download it i

  • Need to know ,how SAP is Posting wrong Enrtry at the Table level for Same .

    Hello SAP Experts , Good Morning Gems!!! I have a Typical Issue here , SAP Is Posting In wrong tables .  Production  is currently processed everything that it should process.  This works as designed.             PO = 7800507594 (From Plant  5400 to P

  • ATP Check for Sales Order

    Hi Friends, I have a requirement in which I want to have ATP on material X, but if the quantity is not in stock for X, system should check for ATP on Y, which can be similar to material X. How to achieve this and further make relationship between X &

  • Pic of lineless display

    As I've replied in a previous post (http://discussions.apple.com/thread.jspa?threadID=310990&tstart=0), I had my display replaced due to a white spot on the screen. I was tolerating the horizontal lines as they really didn't bother me. I ended up wit