Wizard progress list not linking

Hi I am using a list to show progress through a wizard with the wizard progress template. It shows what part of the wizard the user is in by highlighting the correct entry in the list.
I would like the user to be able to click on the wizard progress item to be able to move between the wizard section and when u add an item to the list u can give it a target url or page number but it dosnt seem to redirect to this ? Have i got the wrong end of the stick or what am i doing wrong.
Thanks in advance

Hi Allen,
If you go to your List template; Wizard Progress List change #TEXT# to
<a href="#LINK#">#TEXT#</a>Dimitri

Similar Messages

  • Order list not linking through to detail view

    Hi all, I'm creating an order list in a secure zone, each order needs to link to the invoice of that order (the detail view). I have read:
    http://forums.adobe.com/message/4348407#4348407
    and
    http://kb.worldsecuresystems.com/838/cpsid_83807.html?bc-partner#main_Displaying_Order_His tory
    but cant seem to link from the order list to the detail view.
    My list template is:
    <li>
    <span class="col1">{tag_invoicedate}</span>
    <span class="col2">{tag_invoicenumber}</span>
    <span class="col3">{tag_invoicetotal}</span>
    <span class="col4">{tag_status}</span>
    </li>
    Are any of these tags meant to link to the detail view? I have looked for further tags which link to the detail view but cant find any.
    Thanks for your reply in advance.
    Karl

    Yea, best is to wrap {tag_productimage} in a div with a class, i.e. <div class="order-image">{tag_productimage}</div> and "shrink" it with css:
    .order-image {
         width:80px;
         height:80px;
    .order-image img {
         width:100%;
    You can not define a template for the detail view (I wish...), it is using the default template.
    Nicole - BCGurus.com   |  http://bcgurus.com/Business-Catalyst-Templates for only $7

  • Contact list not linking to composing a message

    When composing a message or making a phone call, my contact list no longer comes up to pick the address.  This is just started after the Desktop Mnager upgraded itself.  My phone is a BB 8703, DeskManger is now 5.0.1.18.  How do I fix this?
    Thank you,
    SL

    Can you first try resetting the device? With the device powered on try removing the battery for 30 seconds and replacing it. After the device reboots see how it responds.
    If someone has been helpful please consider giving them kudos by clicking the star to the left of their post.
    Remember to resolve your thread by clicking Accepted Solution.

  • My iMac apps are not linking to relevant files in ICloud

    IMac applications not linking to relevant iCloud files
    My iMac and relevant software apps will not link to my files and documents in iCloud. This includes Apple apps i.e. pages, numbers etc and 3rd party app i.e. pixelmator etc.
    Also back to my mac will not work getting a "iCloud server not responding" message every time I deselect and then try to reselect.
    The iMac is linked to my apple ID and shows the files are there against each relevant app listed in the 'manage' pane for the iCloud system preferences.
    All the files show on my iPad and can be opened there.
    If I save a file eg a page document to iCloud it just show waiting even after hours. It's still on my hard drive, but does not upload.
    My mail and calendars are fine and linked to iCloud &amp; iPad etc
    I have tried
    1/ repairing permissions
    2/ checking key chain
    3/ reinstalling the apps
    4/ reinstalling OSX ML
    5/ formatting the hard drive and reinstalling OSX ML
    6/ logging out of my account and relinking many times
    7/ said prayers etc . .
    I have all ML updates that are available

    Try booting into the Safe Mode.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application uninstaller. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode
    Safe Mode - About

  • How to Open a New window from a List region Link, Please help

    I am trying to get a new full window( Not popup window) open from a list region link. The list region entry is an Image. I get the new page open, but it is not in new window, it is in the same window.
    I know I have to give the target = "_blank" somewhere. But In List region, I dont know where to add this.
    Please help
    George

    Yes, you are right Arun. That is more elegant way of
    doing it. Keep it up. thankx..
    Btw, why do you hate javascripts? Can you imagine the
    internet world without javascript (or ant scripting
    language)?yep i agree... but i try my best to avoid scripts.. as i had been workin around some japanese technologies... and there are three major mobile market players there... who has their own content type and all those devices never support javascript..
    more over i donno that... in all 3 yrs i have never used that ;-))

  • Cascading Select Lists - Not Working for me

    I am trying to implement Denes Kubicek's Ajax Cascading Select List solution.
    http://apex.oracle.com/pls/otn/f?p=31517:119
    But it is not working for me.
    I'm a newbie to APEX and checked the forum for advice on cascading select lists. I saw the thread for
    "Cascading Select Lists - Not Working" posted by sue and the replies by Varad Acharya, but I'm still
    having issues of not seeing the alerts, not able to run the pl/sql process in SQL Workshop, and not
    getting the expected results.
    I have a list of countries (US - USA, CA - CANADA, etc.) and a list of states for each country. When a
    user selects a country I would like to show the list of states within that country.
    This is what I've done so far:
    Defined an application process:
    Process Point: On Demand: Run ... by a page process.
    Name: CASCADING_SELECT_LIST1
    Process Text:
    BEGIN
    OWA_UTIL.mime_header ('text/xml', FALSE);
    HTP.p ('Cache-Control: no-cache');
    HTP.p ('Pragma: no-cache');
    OWA_UTIL.http_header_close;
    HTP.prn ('<select>');
    HTP.prn ('<option value="' || 99 || '">' || '- All States -'
    || '</option>'
    FOR c IN (SELECT state_code || ' - ' || state_desc d, state_code r
    FROM tbk_state
    WHERE country_code = :cascading_selectlist_item_1)
    LOOP
    HTP.prn ('<option value="' || c.r || '">' || c.d || '</option>');
    END LOOP;
    HTP.prn ('</select>');
    END;
    defined and application item:
    Name: CASCADING_SELECTLIST_ITEM_1
    Build Option: - No Build Option -
    Created a 'Form on a table with report' as follows:
    Page 5: Report on TBK_HARDWARE_LOCATION
    Page 6: Form on TBK_HARDWARE_LOCATION
    in HTML Header of the page attributes for 'Form on TBK_HARDWARE_LOCATION' I have:
    <script language="JavaScript" type="text/javascript">
    <!--
    htmldb_delete_message='"DELETE_CONFIRM_MSG"';
    //-->
    </script>
    <script>
    function get_select_list_xml1(pThis,pSelect){
    var l_Return = null;
    var l_Select = html_GetElement(pSelect);
    alert ('Dept no=' + pThis.value);
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,
    'APPLICATION_PROCESS=CASCADING_SELECT_LIST1',0);
    get.add('CASCADING_SELECTLIST_ITEM_1',pThis.value);
    gReturn = get.get('XML');
    // gReturn = get.get();
    alert('Enames=' + gReturn);
    if(gReturn && l_Select){
    var l_Count = gReturn.getElementsByTagName("option").length;
    l_Select.length = 0;
    for(var i=0;i<l_Count;i++){
    var l_Opt_Xml = gReturn.getElementsByTagName("option");
    appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
    l_Opt_Xml.firstChild.nodeValue)
    get = null;
    function appendToSelect(pSelect, pValue, pContent) {
    var l_Opt = document.createElement("option");
    l_Opt.value = pValue;
    if(document.all){
    pSelect.options.add(l_Opt);
    l_Opt.innerText = pContent;
    }else{
    l_Opt.appendChild(document.createTextNode(pContent));
    pSelect.appendChild(l_Opt);
    </script>
    On Page 6: 'Form on TBK_HARDWARE_LOCATION' I have the following items (plus some others):
    Name: P6_COUNTRY_CODE
    Display as: Select List
    HTML Form Element Attributes: onchange="get_select_list_xml1(this,'P6_STATE_CODE');"
    Source Used: Only when current value in session state is null
    Source Type: Database Column
    maintain session state: Per session
    Source value or expression: COUNTRY_CODE
    Named LOV: LIST OF COUNTRIES
    Name: P6_STATE_CODE
    Display as: Select List
    Source Used: Only when current value in session state is null
    Source Type: Database Column
    maintain session state: Per session
    Source value or expression: STATE_CODE
    Named LOV: - Select named LOV -
    List of Values definition:
         select state_code || ' - ' || state_desc d, state_code r
         from tbk_state
         where country_code = :P6_COUNTRY_CODE
         order by 1
    LIST OF COUNTRIES is defined as:
    select country_code || ' - ' || country_desc d, country_code r
    from tbk_country
    order by 1
    Now to the problem:
    I run page 5 (the report) to see the list of locations and then I try to edit a record (page 6). When I
    try to select a different country I get the following error (on IE):
    "Problems with this web page might prevent it from being displayed properly or functioning properly.
    In the future, you can display this message by double-clicking the warning icon displayed in the status
    bar.
    Line: 17
    Char: 5
    Error: Object expected
    Code: 0
    URL: http//cmrac4.cm.timeinc.com:7777/pls/htmldb/f?
    p=114:6:1413254636072443110::::P6_HARDWARE_LOCATION_ID:2
    I don't see any of the alert messages.
    I also tried to run the application process code in the SQL - Command Processor (I replaced
    :cascading_selectlist_item_1 with 'CA' or 'US') and got the following:
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh
    button, or try again later.
    Only one top level element is allowed in an XML document. Error processing resource
    'http://cmrac4.cm.timeinc.com:7777/pls/...
    <select><option value="99">- All States -</option><option value="X1">X1 - X1</option><optio...
    Can someone help me please?

    Varad,
    First, thank you for taking the time to try to help me with this problem.
    When I view the page's source code (here are the first few lines):
    <html lang="en-us">
    <head>
    <script src="/i/javascript/core.js" type="text/javascript"></script>
    <link rel="stylesheet" href="/i/css/core.css" type="text/css" />
    <script language="JavaScript" type="text/javascript">
    <!--
    htmldb_delete_message='Would you like to perform this delete action?';
    //-->
    </script>
    <script>
    function get_select_list_xml1(pThis,pSelect){
    var l_Return = null;
    var l_Select = html_GetElement(pSelect);
    //alert ('Dept no=' + pThis.value);
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,
    'APPLICATION_PROCESS=CASCADING_SELECT_LIST1',0);
    get.add('CASCADING_SELECTLIST_ITEM_1',pThis.value);
    gReturn = get.get('XML');
    // gReturn = get.get();
    //alert('Enames=' + gReturn);
    if(gReturn && l_Select){
    var l_Count = gReturn.getElementsByTagName("option").length;
    l_Select.length = 0;
    for(var i=0;i<l_Count;i++){
    var l_Opt_Xml = gReturn.getElementsByTagName("option");
    appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
    l_Opt_Xml.firstChild.nodeValue);
    get = null;
    function appendToSelect(pSelect, pValue, pContent) {
    var l_Opt = document.createElement("option");
    l_Opt.value = pValue;
    if(document.all){
    pSelect.options.add(l_Opt);
    l_Opt.innerText = pContent;
    }else{
    l_Opt.appendChild(document.createTextNode(pContent));
    pSelect.appendChild(l_Opt);
    </script>
    It looks like line 17 is:
    var l_Select = html_GetElement(pSelect);
    I'm still not sure why I'm getting this error and why it's not working?
    Thanks,
    Eti

  • Long list of links

    I'm writing a site that has a long list of links.(approx 150)
    They are
    broadly in 3 categories. What is the best way to display
    these without
    too much scrolling etc. Currently I have the major links as
    icons
    surrounding an Iframe containing the rest of the links.
    I had thought about dropdown lists, and collapsible lists,
    but I wounder
    if there is any other way to achieve this. I would prefer not
    to have to
    use javascript, and my hosting package does not have any
    inbuilt
    database support.
    Hope this makes sense.
    James

    If it were me, I would probably just create a main page
    linking to 3 pages
    for the 3 categories, and simply list the links on each page,
    with a little
    set of navigation links on each page, something like:
    LINKS MAIN PAGE | CATEGORY 1 | CATEGORY 2 | CATEGORY 3
    I'm kind of Amish about these things, but I think most users
    much prefer a
    straightforward HTML interface than iframes, etc.
    Patty Ayers | www.WebDevBiz.com
    Free Articles on the Business of Web Development
    Web Design Contract, Estimate Request Form, Estimate
    Worksheet
    "James Hutton" <[email protected]>
    wrote in message
    news:eaiql8$l30$[email protected]..
    > I'm writing a site that has a long list of links.(approx
    150) They are
    > broadly in 3 categories. What is the best way to display
    these without too
    > much scrolling etc. Currently I have the major links as
    icons surrounding
    > an Iframe containing the rest of the links.
    >
    > I had thought about dropdown lists, and collapsible
    lists, but I wounder
    > if there is any other way to achieve this. I would
    prefer not to have to
    > use javascript, and my hosting package does not have any
    inbuilt database
    > support.
    >
    > Hope this makes sense.
    >
    > James

  • Need Help: Pics not linking with edits

    Hope I can be clear here...
    I changed the top folder - deleted it. Mistake on my part, learned my lesson. This made the corresponding pix in LR go red - LR can't find where the original files are. My LR edits are still there though if you click on "develop" on any of the red files.
    Is there a way to link my work to the files? Where are the file changes stored? Can I override this mistake? When I reimport the files they do import but do not link up with my LR edits.
    SO, my database is a long list of red files with no top level folder. Underneath that long list is another long list of active files with the top level folder but no LR edits. I need to sync my original files with the LR edits.
    Two years of work! Need to fix this. Ack. I refuse to let this go. There must be a way to fix this.
    Thanks,
    Jessica

    I think I may have a new insight. it's not so simple b/c a hard drive died and i had to relocate the images to another hard drive. the red folders, with the edits, is referencing a dead hard drive. the white folders, below it, which are all the same folders and pics, references the new active drive.
    i think i need to know how to find the edits. to answer the other question, i did try to load the backups but it didn't work. i think they were too recent and were backups of the current drive.
    what i think i need to do is find the old drive with the edits, but once i do, do i try to find the backups and then drag them to the new drive? i'm perplexed.
    thoughts?
    jessica

  • Preloader progress bar not move in IE, but move well in Firefox

    I have been in this problem for several days. I really got
    frustrated about it. Pls. anybody can give me some help.
    I created a general preloader using movieClipLoader object
    and draw a progress bar using movieClip. I set the progress bar's
    progress by setting bar_mc._x = percentage, and created as a swf
    file. when test it , it works well, when open it using firefox, it
    still work well, can show the gradual progress in the bar, but if I
    using IE 6 or 7 to open it, it will not show the gradual progress ,
    just jump from 0% to 100% after the whole file is completely
    loaded.
    I saw a note about progress bar not show graduate progress in
    Flash Player 9, so I uninstall it and install Flash Player 8 again,
    it is still like that.
    I really don't know what 's the problem. Could any friends
    give me some suggestion or idea, that will be greatly helpful.
    Thanks.

    Have you contacted Project VII support or searched their knowledge base?
    http://www.projectseven.com/support/index.htm
    Also, is there any way to remove unused styles (in an external CSS) in DW? Just it would be a pain to go through and remove the styles I've tried, but then later decided not to use.
    Not exaclty a DW answer, but I've used the free FireFox add-on to help me find unused selectors. Point it to a sitemap.xml and it can spider the whole site (as listed in that xml file).
    https://addons.mozilla.org/en-US/firefox/addon/5392
    But be careful with it. It apparently doesn't read JavaScript and your PMM triggers are actually used.
    Mark A. Boyd
    Keep-On-Learnin' :-)
    If you are reading this via email, be aware that it may not be an accurate representation of my message. Login to read the actual message and/or to reply.

  • Action List Not Found

    I am trying to install flash player on Windows 7 and I keep getting "action list not found".    I am showing that it is installed in my control panel, but when I try to open a program from home school it is saying that I do not have flashplayer.

    Download the Adobe Flash Player installer directly by clicking one of the following links.
    Flash Player for ActiveX (Internet Explorer)
    Flash Player Plug-in (All other browsers)
    Save the file.
    Close your browser.
    Run the installer

  • Cant Install Adobe Flash Player 10.3.181.34 - Action List Not Found

    Hi, I am trying to install this new version of adobe flash, yet when I  am in the process of installing it says "Installation Encounter  Occurred" then below that it says, "Action List Not Found". Once I hit  done it just takes me to the trouble shooting page. I have uninstalled  the previous version already, also ran CCleaner scan and registry, and  in the alternative installation page (http://http://www.adobe.com/products/flashplayer/fp_distribution3.html)  I only found links for Adobe Flash 10.3 but not 10.3.181.34? I'm not  the most internet savvy person around but I am good at following  instructions and am willing to sit this out until I fix it if anyone  knows how to help me. Searching around on the internet didn't help me  much and I didn't want to pay the $39 for telephone support so I figure  this is the last alternative .  Any help asap would be much appreciated I have a program that says it  will only run with the latest update of flash. Thank you. Also my browser is running in 64 bit mode if that means anything, although I am not sure how to check if it is or not.

    http://www.adobe.com/products/flashplayer/fp_distribution3.html contains the latest Flash Player 10.3.181.34 installers.
    This release will only work on 32-bit browsers.
    If you still have problems, please specify your operating system and browser.

  • EA1 - bug: copy wizard connection list is out of order

    the "select schema" pulldowns on the copy wizard normally list the connections in alphabetical order. If you create new connections, these are not in alphabetical order but instead are at the bottom of the list.

    I am sorry about that I have been so heads down testing EA2 that I mixed up my dates and thought it had already pushed to OTN.
    I have done a number of changes to the copy wizard and while I can replicate this issues one EA1 I can not on EA2 ( which is due very very soon).

  • New price list not in action

    Hi team,
    I have created a new price list and linked that in BP master date for one BP, when I am doing sales order or AR invoice system still not picking the new price list price which I have linked to this BP. what is the reason? where I have to link this new price list?
    If I want all BPs to be affected by this new price list for AR invoice where I have to fix this?
    Thanks for your assistance always.
    Rgds
    Suman

    Hi,
    Check this:
    Item prices in sales and purchasing documents are automatically taken from the price list selected in this field. Therefore, when you link a certain price list to a business partner, make sure that the item prices are defined in this price list. Otherwise, no price is displayed for the item in documents related to the business partner.
    Thanks & Regards,
    Nagarajan

  • Action list not found error when trying to install Flash 11. I have IE8 and windows 32 bit. What can

    action list not found error when trying to install Flash 11. I have IE8 and windows 32 bit. What can I do? Thanks

    Hi, Please try to download the installer from the links provided in the following page: http://helpx.adobe.com/content/help/en/flash-player/kb/installation-problems-flash-player- windows.html#main-pars_header
    Thanks,
    Sunil

  • Query to get list of linked server tables referenced inside a stored procedure

    Hi,
    SQL Server 2005 sp4
    I have a requirement to get list of linked server tables referenced insider a stored procedure
    Ex:
    Databases       DB1          DB2
    Tables:            T1             T2                            
    Use DB1
    Go
    Create proc P1
    begin
    select * from T1
    select * from DB2.dbo.T2
    end
    I am looking for a query which can return a result with output as below. sp_depends is not helping here as it does not work for cross DB objects, any other thoughts.
    Tables
    T1,
    DB2.dbo.T2

    On SQL 2005, you will have to do it manually.
    On SQL 2008 or later, you could have used sys.sql_expression_dependencies.
    Erland Sommarskog, SQL Server MVP, [email protected]

Maybe you are looking for

  • Full outer join unexpected results

    Warning, long message - I've searched the forums and found nothing similar. I've cut out as much as possible. We have been given the following schema to work with: CREATE TABLE CALLS ( TRUNKIN VARCHAR2 (10), TRUNKOUT VARCHAR2 (10), DURATION FLOAT) He

  • Solaris 10 Live Upgrade with Veritas Volume Manager 4.1

    What is the latest version of Live Upgrade? I need to upgrade our systems from Solaris 8 to Solaris 10. All our systems have Veritas VxVM 4.1, with the O.S disks encapsulated and mirrored. Whats the best way to do the Live Upgrade. Anyone have clean

  • Deleted Allocation Table in vendor PO items

    Hi guys, I write because it is having the problem I describe below: It creates an allocation table referencing a vendor PO. STO´s are created for each store included in the allocation rule in the allocation table. It is noted that there was an error

  • XSLT stylesheet template for Endeca Records

    Endeca Forge provides a Record Adapter which can load XML data, transformed (if required) to Endeca's XML record format by an XML Stylesheet Template (XSLT). This provides a way of getting XML into Endeca with a minimum of fuss, for data analysis, Po

  • Multiple servers hung on reboot after installing the following April 2014 Updates. Anyone else?

    We installed the following updates last night via WSUS.  All of our Windows 2012 R2 servers rebooted but then stuck with the swirling logo and never booted back in to Windows.  We had to power them off and back on again. Anyone else find issues with