How to get a hidden subform to appear?

In my Adobe LCD book it tells me I can do all this nifty stuff with invisible and hidden subforms and objects. But it doesn't go into detail as to HOW to do it.
I know I need to set the presence of the subform to hidden... but after that??
Background:
I am creating a dynamic form which will have 2 radio buttons at the very top -
one for "changes required"
one for "no changes required"
Between the radio buttons and signature boxes I have a subform (with some instructions and a text field) with presence set to Hidden (exclude from Layout).
At the bottom of the form are signature boxes.
Two problems -
1) The space where the hidden subform is stays exactly the same - in other words, the signature boxes do not move up.
2) In the interest of having a nice, tidy printout, I want to have the subform containing the instructions and the info text field appear when "changes required" is selected. I know this is not a big deal except that I cannot find a simple instruction on how to do it.
I appreciate help - everyone has been so good to me on this forum. I hope someone can come through for me again. Even if you provide an example from which I can extrapolate the answer, or a snippet of code, or anything. I find that many books and help systems speak to what the software can do but without explaining how we actually make it work. Thank you!
Marla

Hi Bruce, thanks for your reply.
I think I was not clear in my question, though you have a point about the subforms.
My form is 1 page. It's dynamic, but I don't have fields that will be expanding down the page.
What I want to happen is when someone clicks the "Change Needed" radio button, a subform appears with a text box of instruction and a text field in which the person can type what the changes are.
Initially, when someone sees this form, it is not visible. Only upon clicking the Change Needed button does it appear. Or at least, that is what I want to make happen.
I decided that it's not important that the signature boxes at the bottom move at all whether the Change subform is visible or not, based on the clicked button.
Does that explain better what I want to happen? It's pretty simple yet I cannot figure it out. Do I use java script? Do I type something somewhere? What tools do I use to make this appear?
thanks

Similar Messages

  • How to get a newHP driver to appear in the Printer Setup Dropdown box?

    I asked this question in a slightly different way in another thread, but I think it was too specific. The problem is that I installed the new driver for an HP OfficeJet 6110 and it works fine via USB, but it is ultimately a remote printer. The wireless Print server works fine with another windows PC and I can ping it via the Mac and get it to spool with the generic driver (gibberish). HP mounts the driver like an application and it doesn't appear in the Printer Setup as one of the options, and I don't know how to get it to appear there. I've searched the forums and Gimp appears to work on Epson/Canon, etc., but not HP, so I'm at a bit of a loss.
    Any help is much appreciated.
    Thanks,

    I have the same problem. Attempting to add a printer, Stylus Photo R200 (USB OS 10.4.11) to the Printer List I get the same error message, "client=error-request-value-too-long". I've reinstalled drivers multiple times to no avail.
    Somebody out there know what to do?

  • How to Get the "Paste" Box to Appear

    I'm trying to figure out how to use the copy/paste features of my iTouch after loading 3.0. I can get the copy command to work by holding my finger down near the area that I'd like to copy.
    The problem is how do I get the "paste" box to appear. I copied some text from a webpage, I then went to the Notes standard App, opened it, and now what do I need to do to paste what I copied. I tap the area in Notes where I want to paste, but nothing appears or I get a search window. What do I need to do to get the paste feature to appear?
    Also there's other related features, like select, select all, how to I get them to appear to make a choice?

    Genius, when I hold my finger at an insertion point, a box saying "Select|Select All" appears. I don't get a box that gives me an option to "paste". I donno, is it my finger??? When I hit "select" it gives me an option to "copy", the only option, I then slect copy and the box disappears, but noting appears in the insertion location. I don't receive an option to "paste".
    Hold on, I finally got a "paste" box. The only way to get it was to select a new page in Notes. If you already had a notation or text on a note page, the paste box does not appear. But it seems to appear on a fresh page in Notes.
    Somewhat strange, that it doesn't appear on a page with text/writings on it, but will on a fresh page.

  • How to get where the search string appears in the results

    Hi every one
    i am new to Oracle Text
    this is my project environment "EJP 3.0+seam+JSF"
    in my part i need to implement smart searches within large text objects.
    So i planed to use Oracle text with context type indexing.
    I my search part i need to display where the search string appears in the results
    i don't know how to archive it,
    is it achived by CTX_DOC.GIST ?
    this is my table format
    Tbl_Book
    book_id Book_Title Book_description
    Tbl_Author
    author_id book_id author_name
    in my first table i index the Book_Title and Book_description columns
    EXEC CTX_DDL.DROP_PREFERENCE ('expert_concat_datastore')
    drop index Tbl_Book_Index force;
    BEGIN
    CTX_DDL.CREATE_PREFERENCE
         ('expert_concat_datastore', 'MULTI_COLUMN_DATASTORE');
    CTX_DDL.SET_ATTRIBUTE
         ('expert_concat_datastore', 'COLUMNS', 'Book_Title,Book_description');
    END;
    alter table Tbl_Book add (dummy varchar2(1))
    begin
    Ctx_Ddl.Drop_Section_Group
    group_name => 'my_section_group'
    exception
    when others then
    /* OK if DRG-12203: section group MY_SECTION_GROUP does not exist */
    if instr ( SQLERRM, 'DRG-12203' ) != 0 then null;
    else raise_application_error ( -20000, SQLERRM ); end if;
    end;
    begin
    Ctx_Ddl.Create_Section_Group
    group_name => 'my_section_group',
    group_type => 'basic_section_group'
    Ctx_Ddl.Add_Field_Section
    group_name => 'my_section_group',
    section_name => 'title',
    tag => 'Book_Title'
    Ctx_Ddl.Add_Field_Section
    group_name => 'my_section_group',
    section_name => 'description',
    tag => 'Book_description'
    end;
    create index Tbl_Book_Index on Tbl_Book ( dummy )
    indextype is ctxsys.context parameters (' datastore expert_concat_datastore section group my_section_group');
    begin
    Ctx_Ddl.Drop_Section_Group
    group_name => 'my_section_group'
    end;
    in my second table i index the author_name column
    drop index Tbl_Author_Index force;
    create index Tbl_Author_Index on Tbl_Author (author_name) indextype is ctxsys.context parameters('filter ctxsys.null_filter section group ctxsys.html_section_group');
    begin
    Ctx_Ddl.Optimize_Index (
    idx_name => 'Tbl_Author_Index',
    optlevel => Ctx_Ddl.optlevel_fast
    end;
    my search result is only in my Tbl_Book.
    Because it is my primary one.
    So this is my query in EJP 3.0
    select t from Tbl_Book t LEFT JOIN t.AuthorCollection c wherecontains(t.dummy, 'java within title or(java within description)',10) > 0 or contains(c.author_name ,'thiagu',20) > 0 ) ORDER BY SCORE(10), SCORE(20)
    here i need to get single SCORE how to do that ?
    i dont know how to highlight the search string in the result ?
    is it archived by CTX_DOC.MARKUP ?
    please any one help me
    By
    Thiagu.m

    Weird.  I have multuple monitors and the boot stuff always appears on my main monitor.
    See if smc and pram reset clears the problem.
    I have multiple screens on my Mac Pro. A normal screen, a projector and a USB-to-DVI converter.
    What video card are you using?  And USB-to-DVI is not the usual way for connecting monitors.  I wonder if that is confusing things.  So out of curiousity what happens if that monitor is not connected?

  • How to get-set Hidden field value from JSP ?

    Hii,
    I am quite newbie about jsp and looking for some help..
    I have several url links on my jsp page.
    I when I click one of them, I want to reload my page with new request parameter(s) but also keep the older one(s) in hidden field(s)...
    but I dont know how to set and get hidden field value "syntax" and I am not sure about where/when should I do this... at first I though that I can do it in "onClick" property of url..
    Thanks..

    Hy,
    I have a problem just like that. I am trying to send the value of an subdomain is to another page to be able to modify an entry.
    So in listsubdomains.jsp I have
    <input type = "hidden" name = "subdomainid" value="<%=subdomains.SubdomainID%>"><%=subdomains[i].SubdomainID%>.
    This shouls send the id of the subdomain.
    I an sending this to modifysubdomain.jsp with <form name = "listsubdomains" method = "post" action = "modifysubdomain.jsp">
    and there I retrieve the value like this:
    Integer id = new Integer (request.getParameter("subdomainid"));
              out.println(request.getParameter("subdomainid"));
    My problem is that no matter what is the value I chose to modify it always sends the first value. If I another value manually it works, but just then.
    Please give me some ideas.

  • HT4236 Can anyone tell me how to get my photo's to appear in the same order on my i-phone as they are on my computer after I sync them to my i-phone?

    When I sync my photo's from my computer to my i-phone they appear in a random order and some of them are duplicated.  How can I get them to appear as they are saved in my folders on my computer?

    Do you still see your photos, when you launch iPhoto and not Photos?
    Where did you keep your iPhoto Library? In your Pictures folder, as is the default? Or on an external drive?
    Look in the folder with your iPhoto Library.
    You should be seeing two libraries, if you already let Photos upgrade the iPhoto Library:
    Your iPhoto Library, now called .migratedphotolibrary
    and the new Photos library:
    are the libraries there? and how large are they?

  • How to get the Figure Title to appear below the graphic, not above

    I have valid XML that I am importing into FrameMaker just for printing.
    My <figure> element contains a <title> and a <graphic> element. The graphic comes in within an anchored frame, appearing after the figure title. The figure title needs to be below the graphic. How do I get this to work? I read a couple of threads that used tables to wrap the graphic & the title and to make the title appear below, but that was during an export function to XML, not an import. Short of editing the DTD, EDD & all of the XML data to have the graphic element structure come before the title within <figure>, how would this be accomplished? Thanks in advance.

    You're saying the xrefid should go in the <title> instead of in <figure>, but where in what document do I point to that ID?
    First, to cross-reference an element, the target element has to have an ID attribute. You do not have to expicitly put a value into that attribute. When you create the cross-reference in FrameMaker, you list the elements, select the title element, and select the particular instance of that element as the target. FrameMaker adds a value to the target ID attribute for you.
    Second, FrameMaker basically treats every element as a paragraph unless the EDD specifically states that it is to have character formatting. When you create a cross-reference to an element, the TEXT of the element is the text of the first paragraph IN the element. In your case, the graphic element is the first paragraph inside the figure element; it has a phantom (blank) paragraph above the graphic to hold the graphic marker. Then the title element is the second paragraph in the figure element. So, when you reference the figure element, the text of the first paragraph inside it is blank.
    Third, the same applies to autonumbering. If the cross-reference is to show the autonumber and you target the figure element, then the first paragraph in the figure is the graphic element which has that blank paragraph above it. Your EDD does not treat apply formatting, that is the autonumbering to the graphic element. Hence, the autonumbering does not display in the cross-reference. FrameMaker has no way to dig down into the figure element and extract autonumbering from its second child element. Thus, you need to target the title element itself.
    Rereading your post, I may not be actually answering your questions, but maybe this will clear up a few things.
    In the EDD, I have:
    Element (Conatiner): title
    Text format rules
    1. If context is: {notfirst} < subfig
        Use paragraph format: subfigs
        Else, if context is: {first} < subfig
        Use paragraph format: subfig
    2. If context is {only} < figure
        Use paragarph format: figuretitle
    Element (Container): figure
    Text format rules
        Element paragraph format: figure
    Element (CrossReference): xref
    Initial cross-reference format
    1. If context is: [type="figure"]
        Use cross-reference format: figure
    You do not give an example of how you are using the subfig element. But there is a problem with the title element in a figure element. The context {only} < figure means "the only child element in the figure element". This will NEVER be satisfied because title is not the only element in figure; figure also has a graphic element. NOTE {only} means only ELEMENT NOT only TITLE element. This confused me when I started creating EDDs.
    NOW, if I assume the subfig structure should be something like:
    <figure>
    <subfig><graphic/><title></subfig>
    <subfig><graphic/><title></subfig>
    <subfig><graphic/><title></subfig>
    </figure>
    Then the context {first} < subfig is NEVER satisfied because title is NEVER the first element inside subfig but {notfirst} < subfig is always true, because title is never the first element inside subfig. Hence, all title elements inside subfig elements are tagged with the subfigs tag, never subfig.
    I am thinking the contexts should be:
    subfig {first} < figure
    subfig {notfirst} < figure
    Remember these are contexts for the title element. The first is a title element in the first subfig element in a figure element; and the second is a title in a subfig that is not the first element in a figure element.
    Figure 1-1. ABCD                     <-- figuretitle
    Figure 1-2. EFGH (Sheet 1)     <-- subfig
    Figure 1-2. EFGH (Sheet 2)     <-- subfigs
    Figure 1-2. EFGH (Sheet 3)     <-- subfigs
    For instructions A - D, see Figure 1-1. For instructions E - H, see Figure 1-2.
    I am assuming you are manually entering Sheet 1, Sheet 2, etc in the title elements of each subfig element. It is not clear from your posts where the autonumber is displayed. Is it displayed in front of the title or above the graphic? If the title element carries the autonumbering, then you need to target the title element and not the figure element. If the autonumber is in that "blank" line above the graphic, then you can target the figure element because its first paragraph displays the autonumber.
    I believe I have gone on way too much, but hope something in the above is the answer to your problem. See if any of this helps and then post again. Maybe we can get this figured out...pun intended.
    Van

  • HT204370 How to get an iTunes movie to appear iPhone?

    How do I get a digital copy of a movie already in iTunes on laptop to show up in iTunes on iPhone?

    You need to connect the phone to your computer and select it no the left-hand side of your computer's iTunes, and the use the Movies tab on the right-hand side to sync it to the iPhone's Videos app.  Films can't be re-downloaded in all countries, and as far as I know digital copies from DVDs/Blu-Rays can't be re-downloaded anywhere so they won't appear in the Purchased tab in the iTunes app for re-downloading.

  • How to get more table rows to appear on form

    I'm looking for a way to have more table rows appear on the actual form.  I created a table with one header and one row with the add and delete button option.  I like how the purchase order form sample has it setup where in designer it shows one row and then on the form it appears the table has three rows to start with.  How do I do that?  I looked at the code on the sample and I couldn't find it anywhere.  Please help, thanks.

    Hi,
    The first part is easy to set up. If you select the object and go to the Object > Field palette. There you can click on display pattern and insert a null pattern, like "Name".
    When the field doesn't have data, it will display "Name", but as soon as the user clicks in, this will automatically disappear.
    The slight glitch is that by default this 'caption in the field' has the same text style as the rawValue, typically Myriad, black 10pt.
    To achieve a grey, italic font to the null values, will require a little script.
    If you look at page 2 of this example you will see how I have set up the three fields on the right:
    http://www.assuredynamics.com/index.php/category/portfolio/laying-out-form-objects/
    Hope that helps,
    Niall
    Assure Dynamics

  • How to get the printer button to appear

    The buttons on my printer should say scan, copy & print.
    They are now saying scan, copy & copy.   how do I get the print button back, as I cannot print

    Hi,
    What is the exact printer model? is it the HP Photosmart C4385?
    The following model does not provide any fax capabilities as you may find by its datasheet below:
    http://cdn.cnetcontent.com/b6/14/b6144c8e-0a16-4ce3-a66d-2eb03e86f4d9.pdf
    If I misunderstood your pritner model, please clarify the exact model.
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • How to get the print logs to appear in the application logs folder of windows server 2008 r2

    Dear All,
    I am a SIEM professional at an IT firm. i am facing a problem. My SIEM solution has an agent for windows. this agent reads only logs from the application, security and system folder of windows event viewer. In server 2008 r2 the printer logs are clustered
    in and application and services/microsoft/windows/print services folder. The requirement of my management is that the siem solution should also be able to montior compliance of print policies. that can only be done once the the print logs are viewable in any
    of the three event vieweer folders i.e application, system.security. how can i configure windows to make its print logs visible in any of these three folders ?

    this may be helpful...
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/fe8892cc-fb6d-49c7-8b2d-c1f17df8e085/2008-r2-use-advanced-security-audit-policy-to-log-print-jobs?forum=winserverprint
    or post here...
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winserverprint
    Best,
    Howtoto

  • Hi, I purchased an logitech ipad air keyboard from the apple store. Anybody know how I get the Euro sign € to appear I can't figure it out? Thanks

    Hi, I purchased a logitech ipad air keyboard cover i5 but I can't seem to find a way to bring up the € euro sign. Has anybody figured out how to do it? Thanks

    Hi, I figured it out, it's alt + 2, thanks forget about this query..

  • Confused - how to get my Itunes songs to appear on my Iphone 4S

    Sooo confused. Some of my songs will appear with the cloud icon and they WILL play on my Iphone 4S. But sometimes a warning will appear: "you may incur additional charges if you download songs via cellular network."  I have a Cloud account, but not paying for yearly storage.
    If I purchase a song from the ITunes Store via my Iphone, then it appears with no problem in my Itunes on my laptop. But what I have had forever on my laptop does not automatically appear on my Iphone. If it's my music, or I have already paid for it, shouldn't I have it on all devices with no problem?
    Today I left my Iphone with wifi on while driving home from work, and the songs that were greyed out earlier with a cloud icon did play. But that's not alwasy the case.
    Please reply if you have an answer. It shouldn't be this confusing.

    This is a widely reported issue with iOS 7.
    Tell Apple about it:
    Http://www.apple.com/feedback

  • How to get rid of advertisements that appear on both the left and right of my web browsers

    Recently i noticed that when i open either Firefox or Safari, the page will load but a few seconds later, two identical ads appear on both sides of my browser and partially obstructing the webpage that i'm on... PLEASE HELP!
    this is what it looks like.... http://i43.tinypic.com/2q8aj9s.jpg

    Make sure 'block pop-ups' is selected in both browsers.
    Firefox Preferences>Content tab; Safari Preferences>Security tab.
    For both browsers download AdBlock:
    Firefox - https://addons.mozilla.org/en-US/firefox/search/?q=AdBlock&cat=1%2C0&appver=11.0 &platform=mac
    Safari - https://extensions.apple.com

  • How do i delete a liked video from my wall on Facebook?  I know how to get the black x to appear on my posts, but not this video?

    Do you want me to post a picture of my wall?  The video that I want off is ****--that's why I want it off.

    iOS: Importing personal photos and videos from iOS devices to your computer

Maybe you are looking for

  • How do I delete a movie from my iPhone 5s

    How do I delete a movie from my iPhone 5s.  I have tried swiping it to get a delete message, but it's not working.  Help!

  • FBL5N Address data is missing in Correspondence FB240

    Hi all, in FBL5N I create a Correspondence: Environment - Correspondence - Request display it, than back with F3. After it I receive the following warning msg: FB 240 Address data not created for user & How can avoid this? Cheers...

  • HP Photosmart C4600 wont print using Airport Extreme

    I recently purchased my MacBook Pro and accessories and my HP printer wont print. It would add to my printers under Airport Express yet wouldnt print anything out.( Always said 'locating printer') I've read other suggestions and none seemed to help o

  • Why is the app not updating automatically with NEW APP

    I've subscribed to a few podcasts but they won't update automatically and in some cases it won't find the podcast in question. I can find the podcast in iTunes and it says I'm subscribed but it doesn't want to down load or has issues with the buttons

  • Htmldb_application array count 0 when it shouldn't be

    This was working until I made modifications to the application, i.e. tabs, menus and such. It uses a manually built tabular form - that part works and displays with correct values, but when I try to access the array with a loop it appears to be empty