Dynamic Breadcrumbs with DW8

I am trying to create a site with dynamic breadcrumbs (that
is, breadcrumbs that don't need to be manually coded on each page).
Is there a simple way to do this? I saw a tutorial from Stanford
School of Medicine showing how to add breadcrumbs as Server Side
Includes, but the SSI still needs to be manually created and added
to each page.
I also looked at the free MX Breadcrumbs extension from
InterAKT but this is a database driven extension that is not
intuitive or easy to use.
Does anyone know of a easy alternative or a user friendly
Extension for DW8?
Thanks,
Miloman

Javascript is client-side scripting. PHP is server-side
scripting. There's
a universe of difference in what you can do with those two.
> Why did you
> decide for PHP?
Because you cannot disable it.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"milo2man" <[email protected]> wrote in
message
news:eas5j1$cc3$[email protected]..
> >I don't know about a JavaScript solution because I'd
never use it for
> >something like navigation. The way I normally do
breadcrumbs is to use a
> >directory structure that establishes the hierarchy
of pages. Then I use
> >PHP to examine he current page's url and break it
into breadcrumbs.
>
> What are the pros and contras of using JavaScript versus
PHP? Why did you
> decide for PHP?
>
> I already have the directory structure containing the
hierarchy of pages.
> Is
> there an easy way to use PHP to examine he current
page's url and break it
> into
> breadcrumbs? Can you point me to a tutorial?
>
> Thanks,
> Miloman
>
>
>
>

Similar Messages

  • How do we create Dynamic Breadcrumbs

    Hi All,
    I have 10 tabs, a->b->d....->j. which is having two master pages like 1->2->a->b->........->j
    I have to go to 5th tab from two different pages, How can I create breadcrumbs dynamically?
    it should show like this 1->2->abc(new page)->5th tab
    Please give me some suggestions.
    Thanks in advance.

    I do not have an online example. In my case, I had one page I had to display different breadcrumbs on and navigate to another page from there, e.g.
    Main page -> Page with dynamic breadcrumb -> Another page
    You populate a breadcrumb item with a breadcrumb value on a page with a dynamic breadcrumb depending on your scenario or conditions, e.g.
    Main page -> This is my first option -> Another page
    or
    Main page -> This is my second option -> Another page
    ====
    ON LOAD
    if some condition then
    :breadcrumb := 'This is my first option';
    else
    :breadcrumb := 'This is my second option';
    end if;

  • Dynamic breadcrumbs

    I want that the breadcrumbs in my UIX aplication grows dynamically while you are visiting pages and i would like specify the text to show.
    So, i have created an UIX template for all my pages like this:
    <provider>
    <data name="breadCrumbs">
    <method class="view.BreadCrumbs"
    method="obtieneListaLinks"/>
    </data>
    </provider>
    <breadCrumbs>
    <contents childData="${uix.data.breadCrumbs}">
    <link text="${uix.current.titulo}" destination="${uix.current.URL}"/>
    </contents>
    </breadCrumbs>
    with java class BreadCrumbs.java with a method:
    public static Object obtieneListaLinks(RenderingContext context, String namespace, String name)
    BajaContext ctx=BajaRenderingContext.getBajaContext(context);
    String pagina = new String(ctx.getServletRequest().getRequestURL());
    Page page=BajaRenderingContext.getPage(context);
    String nombrePagina = page.getName();
    //Se crea un nodo de la lista con la dirección actual
    HashMap pareja=new HashMap();
    pareja.put("titulo", nombrePagina);
    pareja.put("URL", pagina);
    int indice=listaLinks.indexOf(pareja);
    //Se recorre la lista de links para ver si el nodo ya existía
    if (indice>-1)
    //Y si existía, se elimina ese nodo, y todos los siguientes
    for (int i=listaLinks.indexOf(pareja); i<listaLinks.size(); indice++)
    listaLinks.remove(i);
    //Se añade al final de la lista el nodo actual
    listaLinks.add(pareja);
    //y por último el nodo ficticio vacío que no se visualizará
    listaLinks.add(a);
    return listaLinks;
    But I can´t obtain any page's property. If i try to do a "page.getProperties()" i get null.
    What's wrong? Am I trying to reinvent the wheel?
    Thank's in advance
    Carlos
    PD. JDev 10.1.2

    OK, I have a followup question...I thought that maybe if I could keep track of the previous page I might be able to do something with the breadcrumbs. So I created an Application Process that fires on Submit.
    The problem is the process never runs. I've done a lot of testing and the application level process does not fire. If I change the process to run on load, it runs fine. I created a link on a column and use that to link to the page on my interactive report.
    Can anyone tell me why my application level process is not being executed? Oh, and let me know if I am on the right track to create dynamic breadcrumbs :)
    Thanks,
    -- John

  • UIX/XML BC4J - Dynamic breadcrumbs

    We have a page that contain a dynamic breadcrumbs (stored in session) that is populated at runtime with the PageDescription class. We need to add the next element to session from a value of a BC4J views. How we can interact with the RegistryDefs from the PageDescription to do this?
    Anyone can explain the sequence of the rendering phase, especially when is executed the RegistryDefs and the DataBinding to interact with it from the PageDescription?

    We have implemented a class that extends the page description and must add the link to the breadcrumbs using a description of the current element displayed (for example if the page display information about an employee, its name and surname must appear on the breadcrumbs).
    To do this, we have used the procedure described in chapter 16 (dynamic structure for uix pages), subclassing the method getRootUINode: the problem encountered is that we need to use a view object to obtain the description of the link to be added to breadcrumbs, for example with this registry def:
    <bc4j:registryDef>
    <bc4j:rootAppModuleDef name="TipoPunteggioViewAppModule"
    defFullName="com.websiteitalia.valutazioni.modules.TipoPunteggioAppModule"
    configName="TipoPunteggioAppModuleLocal"
    releaseMode="stateful" >
    <bc4j:viewObjectDef name="TipoPunteggioView" >
    <bc4j:rowDef name="UpdateTipoPunteggioView" autoCreate="false" >
              <bc4j:propertyKey name="keyTipoPunteggio" />
    </bc4j:rowDef>
    </bc4j:viewObjectDef>
         <bc4j:viewObjectDef name="DecodeStatoView"/>
    </bc4j:rootAppModuleDef>
    </bc4j:registryDef>
    The servlet binding utils seems to be useful in event handler java code but not in PageDescription, because dosn't require the view name, but uses the view object currently scoped!
    How we can do?
    About the rendering process, it is useful an explanation of the sequence of method that are called from the invocation of the page to its visualization to the browser (sequence diagram?) with a summary of the data structure in memory and/or the classes that interact with it.
    For example I cant resolve this problem because I dont know when registry def is loaded, when can I interact with it in the processing phase and which classes are involved.

  • How to do dynamic breadcrumbs?

    I would like to be able to do dynamic breadcrumbs ... the dialog to create a breadcrumb region sets up a static hierarchy of pages. In my case I have a cluster of 4 screens which are "subroutine" screens that are transferred to from multiple query screens. Hence, when I'm on a "subroutine" screen, I'd like the breadcrumb display to reflect the query screen from where the most recent "transfer" originated.
    Example:
    P1>P40>P41>P92 or P93 or P94 or P95
    P1>P20>P21>P91>P92 or P93 or P94 or P95
    etc.
    Any suggestions? BTW, I'm currently using rel 2 of ApplExpress.
    Thanks,
    George Sundell

    Here is an old post with some information about creating a custom lookup field:
    Re: Lookup properties not configured correctly
    And this will list you all the past posts that contain "Lookup Query" which is a required property in creating the lookup.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=%22Lookup+Query%22&objID=f47&dateRange=all&userID=&numResults=15&rankBy=10001
    -Kevin

  • Dynamic action with set value on date field

    Hi,
    I'm using APEX 4.02
    I'm trying to calculate the age based on the date of birth dynamically on a form. I'm trying to do this with a (advanced)dynamic action with set value.
    I'm able to get this kind of action working based on a number field etc, but NEVER on a date field.
    I've read all posts on this subject but so far no solution. Even if I try to simply copy the value over to another date field or typecast it to a string ( to_char function ) it does not work. So for me the problem seems to be in the source field being a date field.
    I've tried using the source value as is in a select statement :
    select :P33_GEBOORTEDATUM from dual;
    and also type casted based on the date format :
    select TO_DATE(:P33_GEBOORTEDATUM,'DD-MON-YYYY') from dual
    but still no luck.
    On the same form I don't have any issues as long as the calculation is based on number fields, but as soon as I start using dates all goes wrong.
    Any suggestions would be greatly appreciated. If you need any extra info just let me know.
    Cheers
    Bas
    b.t.w My application default date format is DD-MON-YYYY, maybe this has something to do with the issue .... ?
    Edited by: user3338841 on 3-apr-2011 7:33

    Hi,
    Create a dynamic action named "set age" with following values.
    Event: Change
    Selection Type: Item(s)
    Item(s): P1_DATE_OF_BIRTH
    Action: Set value
    Fire on page load: TRUE
    Set Type: PL/SQL Expression
    PL/SQL Expression: ROUND( (SYSDATE - :P1_DATE_OF_BIRTH)/365.24,0)
    Page items to submit: P1_DATE_OF_BIRTH
    Selection Type: Item(s)
    Item(s): P1_AGE
    Regards,
    Kartik Patel
    http://patelkartik.blogspot.com/
    http://apex.oracle.com/pls/apex/f?p=9904351712:1

  • How to clear grey loading screen and animated gif (Dynamic Action with "Show Processing" on submit)

    APEX V4.2.3
    DB 11.2
    I have a classic report on page 1.  I have a region button called "Export" (defined by a submit dynamic action with "show processing=Yes") that submits the page and then via a branch directs me to page 2 which has a slightly different version of the report on page 1 (i.e. no breaks) which I want to capture as a CSV export.  Therefore I've set the report template on page 2 to " Export:CSV".
    Now when I click on the page 1 export button the grey screen and loading gif appears indicating that the report is executing and then as expected, page 2 doesn't appear but instead the standard open/save window's dialog box appears asking to open or save the generated CSV file.  All good..but the grey loading screen remains.  How do I clear this loading screen and get back to the context of page 1 ?
    thanks in advance
    PaulP

    Hi PPlatt,
    We would love to help but you left out one crucial part of the puzzle: namely how does your CSV report get exported. With the way it is setup (a redirect to another page), I'm going to assume you do that because you have some PL/SQL on that page that prints the CSV.
    Now there are two questions that are crucial here:
    - How do we stop the icon from bugging us on the screen
    - How do we communicate with the browser that it should no longer display the loading icon
    The first question is rather easy, two simply lines of codes can do that:
    $('#apex_wait_popup').hide();
    $('#apex_wait_overlay').hide();
    But when do we use this code? Quite simple when the document is downloaded. When is it downloaded? At the end of the PL/SQL code that prints the document to the browser.
    What you could do is at the end of that code give an application item a certain value. For example :AI_PRINTED := 'Y';
    Then all you need to do is let the browser ask for the value. You could do this by using JavaScript to continuously fire AJAX to the server using a JS timing event:
    http://www.w3schools.com/js/js_timing.asp
    Better would be a Server send event, but since you left out another crucial piece of information: your browser, I will not go deeper into this.
    Start this timing event when someone asks for the document, and end it as soon as the process returns that :AI_PRINTED equals 'Y'.
    Despite the lack of information, I hope I have given, or at least inspired you to get to the solution.
    Regards,
    Joni

  • How to create dynamic DataTable with dynamic header/column in JSF?

    Hello everyone,
    I am having problem of programmatically create multiple DataTables which have different number of column? In my JSF page, I should implement a navigation table and a data table. The navigation table displays the links of all tables in the database so that the data table will load the data when the user click any link in navigation table. I have gone through [BalusC's post|http://balusc.blogspot.com/2006/06/using-datatables.html#PopulateDynamicDatatable] and I found that the section "populate dynamic datatable" does show me some hints. In his code,
    // Iterate over columns.
            for (int i = 0; i < dynamicList.get(0).size(); i++) {
                // Create <h:column>.
                HtmlColumn column = new HtmlColumn();
                dynamicDataTable.getChildren().add(column);
                // Create <h:outputText value="dynamicHeaders"> for <f:facet name="header"> of column.
    HtmlOutputText header = new HtmlOutputText();
    header.setValue(dynamicHeaders[i]);
    column.setHeader(header);
    // Create <h:outputText value="#{dynamicItem[" + i + "]}"> for the body of column.
    HtmlOutputText output = new HtmlOutputText();
    output.setValueExpression("value",
    createValueExpression("#{dynamicItem[" + i + "]}", String.class));
    column.getChildren().add(output);
    public HtmlPanelGroup getDynamicDataTableGroup() {
    // This will be called once in the first RESTORE VIEW phase.
    if (dynamicDataTableGroup == null) {
    loadDynamicList(); // Preload dynamic list.
    populateDynamicDataTable(); // Populate editable datatable.
    return dynamicDataTableGroup;
    I suppose the Getter method is only called once when the JSF page is loaded for the first time. By calling this Getter, columns are dynamically added to the table. However in my particular case, the dynamic list is not known until the user choose to view a table. That means I can not call loadDynamicList() in the Getter method. Subsequently, I can not execute the for loop in method "populateDynamicDataTable()".
    So, how can I implement a real dynamic datatable with dynamic columns, or in other words, a dynamic table that can load data from different data tables (different number of columns) in the database at run-time?
    Many thanks for any help in advance.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    flyeminent wrote:
    However in my particular case, the dynamic list is not known until the user choose to view a table. Then move the call from the getter to the bean's action method.

  • Problem in aligning dynamic UI with the static UI

    Hi All,
    I have problem in aligning dynamic UI with the static UI, I am using Matrix layout.
    Static fields are spread over 2 colums and 3 rows:
    lableA SPACE input field SPACESPACE lable B SPACE input field
    lableC SPACE dropdown SPACESPACElableD SPACE dropdown
    lableE SPACE dropdown SPACESPACElableF SPACE dropdown
    Now when a value is selected in C, than E becomes visible, and depending on the values selected in E, there are dynamic UI generated, i.e dynamic lables and depending on some validation it will be either a dropdowns or input fiels or both.
    at run time screen is like this:
    lableA SPACE input field SPACESPACE lable B SPACE input field
    lableC SPACE dropdown SPACESPACElableD SPACE dropdown
    lableE SPACE dropdown SPACESPACElableF SPACE dropdown
    dynaSPACEdropdown
    dynbSPACEinput field
    if I change my selection in E than layout looks like:
    lableA SPACE input field SPACESPACE lable B SPACE input field
    lableC SPACE dropdown SPACESPACElableD SPACE dropdown
    lableE SPACE dropdown SPACESPACElableF SPACE dropdown
    dynaSPACESPACEdropdown
    dynbSPACESPACEinput field
    Requirment: I need all the lables as well as dropdown/ input fiels in line with the static fields irrespective of my selection in E.
    Something like this:
    lableA SPACE input field SPACESPACE lable B SPACE input field
    lableC SPACE dropdown SPACESPACElableD SPACE dropdown
    lableE SPACE dropdown SPACESPACElableF SPACE dropdown
    dyna   SPACEdropdown
    dynbSPACESinput field
    dyncSPACESdropdown
    All this elements are in a group and that group has 2 transparent containers, 1 for static and for holding dynamic UI.
    I tried playing with the container properties, and also tried fixing width of dynamic UI but still the alignment issue is encountered.
    Can U guys plz give in ur valuable inputs as i need to fix this urgently.
    Regards,
    JJ

    Hi Armin,
    Can you please elaborate your solution ?, I do not have an idea of InvisibleElement & IWDView.resetView() ,
    If you can give me the exact pointer than it would be great and a good learning exp. for me.
    Thanks for the action assignment part, it worked.
    if (wdContext.nodeMaterialClass().size() > 0 && wdContext.currentContextElement().getActionMatCls()) {
         if (wdContext.currentMaterialClassElement().getMaterialClass_Description() != null || !wdContext.currentMaterialClassElement ().getMaterialClass_Description().equalsIgnoreCase(" ")) {
               IWDGroup Searchgroup = (IWDGroup) view.getElement("DynGroup");
    Searchgroup.destroyAllChildren();
    view.getContext().reset(false);
                                                      for (int i = 0; i < wdContext.nodeMaterialCharateristcs().size(); i++) {
                                  //this for label
         IWDLabel CharLabel = (IWDLabel) view.createElement(IWDLabel.class, "label" + i);
         CharLabel.setText(wdContext.nodeMaterialCharateristcs().getMaterialCharateristcsElementAt(i).getDescr_Char());
         CharLabel.setDesign(WDLabelDesign.EMPHASIZED);
         CharLabel.createLayoutData(MatrixHeadData.class);                              CharLabel.setWidth("154px");                              Searchgroup.addChild(CharLabel);
                 further there are conditions to create either dropdown or input field
    Can you please point where and how to apply your solution.
    Regards,
    JJ

  • Dynamic Table with two columns

    Hi!
    i have to create a Dynamic Table with two columns having 5-5 links each with some text...... three links r based on certain conditions....they r visible only if condition is true...
    if the links r not visible in this case another links take it's place & fill the cell.
    links/text is coming from database.
    i am using Struts with JSP IDE netbeans
    Please help me
    BuntyIndia

    i wanna do something like this
    <div class="box_d box_margin_right">
              <ul class="anchor-bullet">
              <c:forEach items="${data.faqList}" var="item" varStatus="status"
                        begin="0" end="${data.faqListSize/2-1}">
                        <li>${item}</li>
                   </c:forEach>
              </ul>
              </div>
              <div class="box_d">
              <ul class="anchor-bullet">
              <c:forEach items="${data.faqList}" var="item" varStatus="status"
                        begin="${data.faqListSize/2}" end="${data.faqListSize}">
                        <li>${item}</li>
                   </c:forEach>
              </ul>
              </div>
    wanna divide table in two columns....if one link got off due to condition other one take it's position...
    I have created a textorderedlist
    Bunty

  • Dynamic stamps with Acrobat Pro X

    Help needed!
    How to create own dynamic stamps with Acrobat Pro X, without any knowledge of programming.
    It was very easy with the program used before (Nuance); unfortunally it's not possible to export from Nuance to Acrobat.
    Thanks in advance
    vtosi

    It can't be done without using a script, and not a very simple one, either.
    There are detailed tutorials about how to do it, for example here:
    http://acrobatusers.com/tutorials
    If you're interested in someone to create the stamp (and all the required
    scripts) for you, feel free to contact me by PM or at [email protected] .

  • Dynamic table with dynamic drop-down list values

    Hi,
    I need to display a dynamic table with 2 columns on an interactive form.
    My Context is defined as below:
    Root
    StudentData     0..n
    StudentName
    StudentCourses     0..n
    Text
    Value
    The 1st column should display student name, 2nd column should display student courses. The courses will be different for each student. I populated the context properly. I checked it by printing them. My DDL is bound to "Student Courses".
    When there is one row -> The DDL is populated with the courses of student 1 (as there is only one).
    When there are more rows -> The DDLs for all the students are populated with all the courses of all the students.
    I want to see the data populated like:
    TEXTFIELD    DROP-DOWN LIST
    Student 1------Student1-Course1
    Student1-Course2
    Student1-Course3
    Student 2------Student2-Course1
    Student2-Course2
    Student2-Course3
    I tried to do this in plain web dynpro using SVS.. it is also working similarly.
    I have set the singleton property of nodes "StudentData" and "StudentCourses" to false.
    Could any one tell me where I am going wrong?
    Thanks
    Ram

    Ram,
    I'm not sure how much this will help, but I know I had the same problem as you when I tried to get a similar thing working, but I can't remember which of the many changes I made fixed the problem, so I'll just show you my code and perhaps you can see if anything is different than yours.
    Here's where I'm creating my dropdown - in my case EastNew_RegOut is the same as your StudentData, and RateTypeDropValues is the same as your StudentCourses (the comments in the code are not meant to sound bossy to you, this is actually an example piece of code that other developers in my company "steal", so I have to put very specific instructions in there!):
    int nodeSize = wdContext.nodeEastNew_RegOut().size();
    for (int i = 0; i < nodeSize; i++) {
         //create an element called "table", that's the element at i.  So, basically it's a row.  Maybe I should have
         //called it "row" instead of table.
         IPublicDeviceExchange.IEastNew_RegOutElement table = (IPublicDeviceExchange.IEastNew_RegOutElement)wdContext.nodeEastNew_RegOut().getElementAt(i);
         //this line of code just executes an rfc that finds out what rates need to be in the dropdown for this particular row
         executeRateTypeDropdown(rateCategory, table.getNum(), wdContext.currentEastNew_MeterOutElement().getReggrp());
         //clear out what's already in there before we re-populate it.
         table.nodeRateTypeDropValues().invalidate();
         //now, I'm looping through all the values in the *actual* rate type dropdown (the one that's an RFC, populated by the above "execute" method)
         for (int j = 0; j < wdContext.nodeEastRatetype_DropdownOut().size(); j++) {
              //for each element in the *actual* Rate type dropdown, I'm going to create an element in my node that I created
              //and set the values from the *actual* one as the values in my node.
                        IPublicDeviceExchange.IRateTypeDropValuesElement element = wdContext.createRateTypeDropValuesElement();
              IPublicDeviceExchange.IEastRatetype_DropdownOutElement rateTypeOut = (IPublicDeviceExchange.IEastRatetype_DropdownOutElement)wdContext.nodeEastRatetype_DropdownOut().getElementAt(j);
              element.setText(rateTypeOut.getText());
              element.setValue(rateTypeOut.getRatetype());
              //here's another key - notice how I don't say wdContext.nodeRateTypeDropValues() - it's the one that's
              //directly off that table I created earlier - the thing that's essentially a row in my newReg table.
              //So, what I'm doing here is adding that new element I created to the dropdown FOR THAT ROW!               
              //(btw, if you're trying to duplicate this, and this method does not exist for your "table" object, it's
              //probably because you didn't listen to me above and you didn't create your node with the singleton property
              //set to false.)
              table.nodeRateTypeDropValues().addElement(element);
    As for my layout... my table is bound to the EastNew_RegOut node, and the column with the dropdown is bound to RateTypeDropValues.Value  (that's probably obvious, but there you have it anyway)
    Finally, in my context, EastNew_RegOut is singleton = true (I was surprised about this, actually, I would have assumed it was false) with a selection of 0..1 and RateTypeDropValues has singleton set to false with a selection of 0..1
    I hope that helps to some degree!
    Jennifer

  • Dynamic table with drop down lists

    I have a Dynamic table with a header row, Section and footer row.
    Section has the following cells(columns): Cell1 (drop down with locations), button (to remove row), CCode (Color Code RAL), CName (color name).
    I'm starting with 1 row.
    now what I want to do is, when they select in CCode e.g. RAL 1003 (rawValue "1") then in CName the name "signal yellow" (rawValue "1") should appear.
    I'm using javascript
    My first problem is how do I know which value is chosen, because this isn't working:
    if  (this.rawValue == 1)
    xfa.host.messageBox('Today')
    and second how do I set the value in CName
    because this only sets it in the first CName cell:
    xfa.form.DataSheet.TechnicalInformation.Markings.THatchPatterns.Section.CName.rawValue = '1';
    Please help me, I'm totally lost

    solved the problem, instead on change event put script on exit event.
    and the following line does the trick:
    xfa.resolveNode("THatchPatterns.Section[" + this.parent.index + "]").CCode.rawValue = this.rawValue

  • How to save a completed form that was created as a dynamic form, with expandable files?

    I have created a dynamic PDF form with expandable fields etc. As this is to be accessible for customers to completed, how can they save a completed copy on their own PC?
    I tried it myself and I receive an error msg stating that I can only save a Blank Copy of this Form:  Data typed into this form will not be saved. Adobe Reader can only save a blank copy of this form.
    How can I create a dynamic form (with expandable fields/flowable layout etc) that allows the applicant to not only complete the form but also, to save a completed copy?

    Thanks! That worked , however I now have an additional issue.
    While the form works in Internet Explorer (I'm using IE11), in that it's viewable, it opens and allows me to save etc) it doesn't work in Google Chrome and I'm getting the below error message:
    Any ideas on why it doesn't display in Chrome and does in IE (I'm using the same PC and I'm using Adobe Reader XI)!
    there are other PDF forms on site that are not dynamic but are fillable, and these are opening!
    Thanks

  • Draw Dynamic Column with Static Columns

    Hi All
    I have to show dynamic columns with static columns including column header and I am choosing the Cross Tab style. I have done this already in SSRS but failed to do in Crystal Report version (Crystal Report Basic for Visual Studio 2008).
    Name             Hair Color      City        Age           Mobile                        Email
    Jannie            Brown          Dublin        15         +353 122 1234567     Email Address
    John               Black            Dublin       20          +353 145 1234567      Email Address
    Dynamic Columns
    Name , Hair Color , City Age
    Static Column
    Mobile, Email
    I also face empty rows in cross tab report.
    Please help and give me a chance of thanks.

    Thank you very much for your kind response. Actually i have dynamic Store Procedure  results based on parameters and yes static column will never changed
    Store Procedure Result
    Mobile                        Age            Email                       Key              Value
    +3531221234567     15             Email Address         Name           Jannie
    +3531221234567     15             Email Address         Hair Color    Brown
    +3531221234567     15             Email Address         City              Dublin
    +3531451234567     20             Email Address         Name           John
    +3531451234567     20             Email Address         Hair Color     Black
    +3531451234567     20             Email Address         City              Dublin
    And I want to draw report in following style
    Name     Hair Color     City      Age      Mobile                       Email
    Jannie   Brown          Dublin   15     +3531221234567       Email Address
    John     Black             Dublin   20     +3531451234567       Email Address

Maybe you are looking for

  • Why did I have a kernel panic?

    I was in the process of disconnecting my Nikon D40 (a procedure I have done many times without incident). Usually I shut the camera off and pull out the USB connector once the volume disappears from my desktop, with no problem. This time, as soon as

  • 2 Tool Questions

    1- The Shift key doesn't cycle hidden tools even tho the preference to select with the shift key is selected. Does anyone know how to make this work? 2- Can the tool palettes be detached to use separately as I was able to in Photoshop CS2? I'm using

  • (Solved)--Cannot install libva-sds

    Hi guys im trying to install mplayer-vaapi but it depends on this package and its refusing to install properly. Heres what i get roughly: patching file i965_drv_video/shaders/h264/mc/writeRecon_Y_16x8.asm patching file i965_drv_video/shaders/render/e

  • Video said do not touch layout.css, what then?

    I was watching a video on the DW part of this site and the guy says no matter how tempting DO NOT edit the .css file made when creating the fluid grid (I called mine fluid-grid.css. He says DW's fluid grid component is too unstable so he makes his ow

  • Want to use bluetooth speakers with volume control, don't want the iPad internal speaker sound, is this possible?

    want to use bluetooth speakers with volume control, don't want the sound at the iPad internal speakers, only on the external speakers.  is the possible? and how