Help with TP-Link W8960N

Keith_Beddoe's guide to replacing HH3 with W8960N seemed very thorough, but I still can't make it work. Please tell me where I'm going wrong.
1. I assume the BT red cable can be used to connect the modem to the TP-link router?
2. Is the userid/password actually "broadbanduser@..." or do I substitute my own username & password?
3. In section 4.4.2.6 (adding WAN over ETH interface) I can set up the ETH interface but the next step fails: Pressing the ADD button on figure 4-7 (ATM-EoA-PPPoE) just results in an error message saying "cannot use DSL & ETH together" [or something to that effect]
Any ideas what I have missed?
Solved!
Go to Solution.

Thanks for replies so far.  Q1 & Q2 seem to be sorted.
I think I set it up exactly as in the thread with Kazhop but ....
After setting up the Layer2 interface I have:
atm0....... and
eth0.2/LAN4
Do I remove either of these at this stage?
When I go to WAN Service set-up it displays the PPPoE but pressing ADD just results in:
  "No available interfaces. DSL wan connection and ETH layer2 interface coexist"
Pressing Edit allows me to set the parameters in the table for username, password, MTU, Full Cone NAT,....IGMP Multicast
Save and apply seems OK but displays "Choose Add, or Remove to configure a WAN service over a selected interface.
ETH and PTM/ATM service can not coexist." above the table entry.
Maybe it's right but it seems like it is complaining about something.
BTW I tried a static DNS of 8.8.8.8 and now using DNS supplied by WAN. I'll switch to open DNS when I have the rest of it working.
Also, I have not yet connected the red cable to test internet connection as it is currently in use by others.
Is that right?  I got this far last night but when I tried to connect it failed.

Similar Messages

  • Please help with a link!!

    Hi All,
    I am having a problem with a link on this site that I am working on. http://msp005revised.businesscatalyst.com/index.html   I would like to have  "Learn more about Mary" as a link which scrolls horizontally to the "About Mary"   page. All the pages are part of a tooltip composition widget. I tried using anchors unsuccesfully. I would be ever so grateful for any help.
    Rita

    Hi Rita
    With Anchors what happens if you apply that ? It should work as the page should scroll up to menu options that you have placed on main page.
    But it seems you are using full screen slideshow and wants to link the text with the slideshow on Mary using the triggers.
    My suggestion would be to create a page or image/document about marry and then hyperlink the text with that page, this way users will be directed to About Mary page not the actual slideshow but the contents can be made same or insert the same slideshow on About Mary page, the effect would be same.
    Thanks,
    Sanjit

  • Can you help with D-link and two airport express stations

    I currently run a Dlink 604 wireless and 1 Airport express for iTunes in my front room.
    A Express is also linked to the Dlink via a cable.
    All works fine - G4 dual running OS x 10.3.9
    I would like help with a couple of things please:-
    1. I have no current security on my Express, so anybody can use the net connection through it. How do I change this and still be able to use my tower and laptop?
    2. I have a second Express from work that I would like to use upstairs. It does work but requires me to swap the network to use it for iTunes and then I have no internet.
    It was formatted at work so has different ip numbers etc.
    Can I make this station join my exisitng network?
    As my lap top is wireless will I be able to surf through it upstairs?
    Thanks
    JohnO

    1. You need to open the Express's configuration in Airport Admin Utility and change the Wireless Security settings to WEP or, preferably, WPA or WPA2. When you attempt to connect to the network from your computers, you will be prompted for the password.
    2. The easiest thing to do is to hard reset the second Express and then use the Airport Setup Assistant to configure the second Express to join and extend the first Express's network. To do a hard reset, hold down the reset button until the LED starts flashing rapidly.
    BTW, I know it can work because I have the exact same setup (D-Link DI-604 and two Expresses in an extended wireless network).

  • Need help with href link that submits

    I need some help. I dynamically create HTML that displays a horizontal row of page numbers in Position 8. Although they look like page numbers to the use, are not true Apex pages, but rather "logical" pages that change the content in a single Apex physical page. The URL that gets returned from the HREF sets a variable in the page. Then I need a submit to occur so that all my "after submit" processes run, and the page re-renders. Is this even possible? I've been unsuccessful so far.
    Thanks.

    Martin,
    Two things...
    1. Be careful about "hard coding" values in a link. I don't know if you've already done this, but the link should use substitution variables as so...
    f?p=&app_id.:&app_page_id.:&app_session.::NO::P94000_LOGICAL_PAGE_NUM:2
    When the page renders each substitution variable will be replaced with the correct value.
    2. Not that it really matters, but you named your variable starting with P94000. Typically this would indicate the variable appears on page 94000. Is this the case?
    The problem with what you want to do is that it can be done so many different ways. Each way is not necessarily better than the other. Number 1 above is using a link in the traditional sense. It's a link to the same page (achieved by using app_page_id). It will not submit the page but it contains enough information to set the value of a variable and you can code off of that variable's value.
    You could use a JavaScript trick, but I wouldn't bother for this. In addition, you could use the request value over a variable value to feed off of but since you already started with the variable I'd stick with that.
    The first thing you need to do is figure out if your variables value is being set with the link... Let me know if you have more questions.
    Regards,
    Dan

  • I need help with circular linked list

    Hi,
    I need help with my code. when I run it I only get the 3 showing and this is what Im supposed to ouput
    -> 9 -> 3 -> 7
    empty false
    9
    empty false
    3
    -> 7
    empty false
    Can someone take a look at it and tell me what I'm doing wrong. I could nto figure it out.
    Thanks.This is my code
    / A circular linked list class with a dummy tail
    public class CLL{
         CLLNode tail;
         public CLL( ){
              tail = new CLLNode(0,null); // node to be dummy tail
              tail.next = tail;
         public String toString( ){
         // fill this in. It should print in a format like
         // -> 3 -> 5 -> 7
    if(tail==null)return "( )";
    CLLNode temp = tail.next;
    String retval = "-> ";
         for(int i = 0; i < -999; i++)
    do{
    retval = (retval + temp.toString() + " ");
    temp = temp.next;
    }while(temp!=tail.next);
    retval+= "";}
    return retval;
         public boolean isEmpty( ){
         // fill in here
         if(tail.next == null)
              return true;
         else{
         return false;
         // insert Token tok at end of list. Old dummy becomes last real node
         // and new dummy created
         public void addAtTail(int num){
         // fill in here
         if (tail == null)
                   tail.data = num;
              else
                   CLLNode n = new CLLNode(num, null);
                   n.next = tail.next;
                   tail.next = n;
                   tail = n;
         public void addAtHead(int num){
         // fill in here
         if(tail == null)
              CLLNode l = new CLLNode(num, null);
              l.next = tail;
              tail =l;
         if(tail!=null)
              CLLNode l = new CLLNode(num, null);
              tail.next = l;
              l.next = tail;
              tail = l;
         public int removeHead( ){
         // fill in here
         int num;
         if(tail.next!= null)
              tail = tail.next.next;
              //removeHead(tail.next);
              tail.next.next = tail.next;
         return tail.next.data;
         public static void main(String args[ ]){
              CLL cll = new CLL ( );
              cll.addAtTail(9);
              cll.addAtTail(3);
              cll.addAtTail(7);
              System.out.println(cll);          
              System.out.println("empty " + cll.isEmpty( ));
              System.out.println(cll.removeHead( ));          
              System.out.println("empty " + cll.isEmpty( ));
              System.out.println(cll.removeHead( ));          
              System.out.println(cll);          
              System.out.println("empty " + cll.isEmpty( ));
    class CLLNode{
         int data;
         CLLNode next;
         public CLLNode(int dta, CLLNode nxt){
              data = dta;
              next = nxt;
    }

    I'm not going thru all the code to just "fix it for you". But I do see one glaringly obvious mistake:
    for(int i = 0; i < -999; i++)That says:
    1) Initialize i to 0
    2) while i is less than -999, do something
    Since it is initially 0, it will never enter that loop body.

  • No Qualified People Here?   Need Help with Contact - Linking Email

    I have two pages - XML, I'll post photos . Just need to link it to my email and also I page to link social buttons.

    It is getting late here, nearly 3:00 am.
    I'll get back to you later on. But I am still in a quandary regarding the question. What I have now is
    you post photos, presumably to the website
    you send an email to yourself with a link to the image
    somewhere (please state where) you want social media images with their relative links
    I just want to link it to my own email - probably refers to point 2 above
    so when someone sends it to me - someone sends what to you. Do you post the iphoto or does it get uploaded by someone else.
    we need to disregard the XML-file

  • Need help with different link styles on same page

    Hello,
    I'm using Dreamweaver CS4 on a PC.
    I have searched through a lot of posts over the last couple of days, I've tried the projectseven.com tutorial, google'd, etc. but still can't figure it out.....
    All I want to do is apply a different link colour to some links in the footer of my page. Elsewhere through the site I have set the colour to blue (for the link) and orange (for the hover) - for the footer links I want the link to be white and the hover colour to stay orange.
    The problem with the projectseven tutorial is that it doesn't seem to apply to CS4 and I kept getting error messages when trying to apply a new CSS rule - there's no Class|Tag|Advanced options as per the instructions ....
    I've copied the code of my page to this. The links which I want to apply a different style to are contained in the Div Tag called "Footer-Navigation-Bar" .
    Could someone please give me some instructions or point me in the right direction please??
    Many thanks,
    Vickie
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <!-- saved from url=(0014)about:internet -->
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Subscribe to Family Australia - it's free!</title>
    <!-- TemplateEndEditable -->
    <link href="../family-subscribe.css" rel="stylesheet" type="text/css" />
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <style type="text/css">
    <!--
    a:link {
    color: #30C;
    text-decoration: none;
    a:hover {
    color: #F30;
    text-decoration: none;
    a:visited {
    text-decoration: none;
    a:active {
    text-decoration: none;
    -->
    </style></head>
    <body>
    <div id="container">
      <div id="banner">
        <ul id="family-subscribe-menu" class="MenuBarHorizontal">
          <li><a href="../index.html">Home</a>      </li>
          <li><a href="../subscribe.html">Subscribe</a></li>
          <li><a href="../family-advertise.html">Advertise</a>      </li>
          <li><a href="../family-articles.html">Articles</a></li>
    <li><a href="../family-sign-in.html">Issues</a></li>
          <li><a href="../family-contribute.html">Contribute</a></li>
    <li><a href="../family-contact.html">Contact</a></li>
        </ul>
    </div>
        <div id="sidebar"><a href="../family-sign-in.html"><img src="../images/launch-issue.jpg" alt="launch-issue" width="220" height="380" hspace="4" /></a>
          <div id="sidebar-image2">
            <p><img src="../images/Sleeping bag for web.jpg" width="220" height="151" alt="sleeping-bag" /></p>
            <p>Kozy Koala™ Pillow Sleeper is ideal for those  summer nights when the kids want to sleep out or when you go camping. The  all-in-one pillow camper consists of …. [MORE]</p>
          </div>
          <div id="sidebar-image3">
            <p><img src="../images/solrx for web.jpg" width="220" height="164" alt="sunscreen" /></p>
          SolRX® Sunscreens are very sweat and water  resistant – ideal for anyone who leads an active outdoor lifestyle … whether  you’re in the water or not! [MORE]</div>
      </div>
        <!-- TemplateBeginEditable name="main-content-region" -->
        <div id="main-content">main content</div>
        <!-- TemplateEndEditable -->
      <div id="footer">
    <div id="footer-navigation-bar"><a href="../family-about.html">about</a> | <a href="../family-advertise.html">advertise</a> | <a href="../family-contribute.html">contribute</a> | <a href="../family-contact.html">contact</a> | <a href="../family-unsubscribe.html">unsubscribe</a></div>
          <div id="footer-text">Family Australia | ABN 33150685385 | For all advertising enquiries please contact <a href="mailto:[email protected]">[email protected]</a><br />
    Copyright © 2010 Family Australia. All rights reserved.
    </div>
      </div>
      </div>
    </div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("family-subscribe-menu", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    </body>
    </html>

    The links which I want to apply a different style to are contained in the Div Tag called "Footer-Navigation-Bar" .
    a:link {
    color: #30C;
    text-decoration: none;
    a:hover {
    color: #F30;
    text-decoration: none;
    a:visited {
    text-decoration: none;
    a:active {
    text-decoration: none;
    Hello
    You can see above the CSS that applies to your links.  If you have links that you want to style in a diferent way, just write the rule Like this:
    #Footer-Navigation-Bar a:link {
    color: red;
    text-decoration: none;
    Or whatever.  There are other ways but this will do you as you already have those links you want styled differently in a div with its own ID.  The new rule should come after the other rules in your CSS I think to make sure of the cascade although thinking about it,  there's something called specificity in CSS which means that the rule that I suggest will win out anyway.  All that you are doing in my suggestion is selecting the a:link that is a descendant of an element with that particular ID.
    I hope that helps.  I'm a bit of a novice and might have got a bit jumbled with the cascade/specficity thing but hey, I reckon that will get you where you want to go....
    Martin.

  • Help with Re-Linking Navigation Buttons

    I have Adobe Flash CS3 Pro.
    I have a navigation header flash file that came with my website template and I am having difficulty making sense of the actionscript. It has a logo section with effects, 5 main nav buttons that move, and two extra link buttons above the navigation bar. Let’s focus on just the Navigation buttons for now. Here is what I have gathered. I have multiple text buttons on one movieclip, and I have successfully edited the text for each button. If I look at the actionscript in the top layer of this movieclip I see:
    “gotoAndStop(parent._parent.num);”
    I also have a separate movieclip symbol (with effects) with 5 buttons layers listed in the actionscript with the following actionscript tied to each button from numbers 1 through 5:
    onClipEvent (load) {
                num=1;
    onClipEvent (load) {
                num=2;
    onClipEvent (load) {
                num=3;
    onClipEvent (load) {
                num=4;
    onClipEvent (load) {
                num=5;
    On the top layer of these 5 buttons I have the following actionscript:
    stop();
    this["item"+_root.button].gotoAndPlay("s1");
    _root.link = _root.button;
    I also have a separate button symbol with the following actionscript:
    on (rollOver) {
                if (_root.link<>1) {
                            menu.item1.gotoAndPlay("s1");
    on (releaseOutside, rollOut) {
                if (_root.link<>1) {
                            menu.item1.gotoAndPlay("s2");
    on (release) {
                if (_root.link<>1) {
                            _root.menu["item"+_root.link].gotoAndPlay("s2");
                            _root.link = 1;
                            getURL("index.html");
    Now my website template came with 5 html pages that my flash navigation buttons correspond to: (index.html, index-1.html, index-2.html, index-3.html, index-4.html, index-5.html). My problem is that I have created new pages (index.html, about.html, featured.html, projects.html, contact.html). I would like each of the 5 buttons to correspond to these pages, not the existing standard “index-n.html” pages. 
    Also, this is probably not relevant, but each html page has something to this affect so I can see how they correspond to each button.
    <script type="text/javascript">
              var fo = new FlashObject("flash/menu_vf8.swf?button=2", "head", "100%", "144", "7", "");
              fo.addParam("quality", "high");
                        fo.addParam("wmode", "transparent");
                            fo.addParam("scale", "noscale");
              fo.write("head");
            </script>
    I guess my real question is: What actionscript do I need to update or remove for the nav button LINKS to work with my new html pages rather than the standard 5 index-n.html pages that it automatically wants to link to?
    When I try and add a “getURL” command to each of the 5 buttons and test preview the movie, the links work, but it messes up the effects of the movieclip. In other words, the buttons don’t move, they are motionless, however the links work. If I added this command to each button in some way, what actionscript would I need to remove so there weren’t any complications? I need some expert help here for it would be much appreciated. I am a novice with Flash script and its killing me that I can’t figure it out. I asked for help from the template support and all they came back with was the following message and it wasn’t helpful:
    You need to duplicate each button you are editing - it is very important.
    2) Update the scripting to look similar way:
    on (release) {
    if (_root.link<>num) {
    _parent["item"+_root.link].gotoAndPlay("s2");
    _root.link = num;
    if (num == 1) {
    getURL("index.html");
    } else {
    getURL("index-"+Number(num-1)+".html");
    Update it to:
    on (release) {
    getURL("http://www.google.com");
    Also, I read through the following discussion, which was helpful to a degree, but it still didn’t answer my questions about getting the links to work.
    http://forums.adobe.com/message/3614092#3614092

    First of all, thank you for showing interest and helping out in my dilemma here. I wish I understood your meaning behind “on” because with my luck there is probably some hidden way of placing script on an object that I don’t understand or haven’t discovered yet.
    This is what I know:
    I have multiple text buttons on one movieclip entitled “textbutton1” (see previous picture), and I have successfully edited the text for each button and created two extra frames/buttons to make 7 total. If I look at the actionscript in the top layer of this movieclip I see:
    “gotoAndStop(parent._parent.num);”
    But there is no action on each individual frame (all 7 of them) on that layer.
    Like I mentioned before I have a separate movieclip symbol (entitled “menu effect”) with 7 button movieclip layers listed in the actionscript with the following actionscript on each layer.
    onClipEvent (load) {
                num=1;
    onClipEvent (load) {
                num=2;
    onClipEvent (load) {
                num=3;
    onClipEvent (load) {
                num=4;
    onClipEvent (load) {
                num=5;
    onClipEvent (load) {
                num=6;
    onClipEvent (load) {
                num=7;
    On the top layer (layer 4 frame 25) of these 5 buttons I have the following actionscript:
    stop();
    this["item"+_root.button].gotoAndPlay("s1");
    _root.link = _root.button;
    I can upload another particular image of the movieclip/actionscript if it would be helpful. Let me know.

  • Help with Page Link

    Have inserted a hyperlink to a page on the B Master of my file, when the Hyperlink is checked in the file it is directed to the correct place, when I do  Folio Preview the link goes to a different page and when I Create an App the link is still incorrect, can anyone help please?????? The Preflight Check displays no errors!

    Creating an IPad app. The issue is with the alternate layout. I have a a
    small graphic which when tapped takes the user back to the home page of the
    alternate layout.
    I have checked the link in the Hyperlinks Panel and it links to the correct
    page. When I produce a Folio Preview the link goes to the last page of the
    alternate layout instead of the first page. Hope this clarifies
    Thanks Barb

  • Help with Blackberry Link

    Hello - I just upgraded to the Q10 from the Bold 9000, and I am having problems getting the BlackBerry Link to work properly.  I successfully downloaded the application (Version 1.1.1 build 13) to my MacBook, but it does not recognize my Q10 when I use the USB cable to plug into the Mac - the tab for it never appears at the bottom of the screen. It only shows up if I select "Show Disconnected Devices".  It advises me to reset the Q10 to the factory settings, but I will lose all of the vacation photos and other data that I have added to the device since I bought it.
    So, in a nutshell, I can't back up my data because the BlackBerry Link won't work properly, and if I reset the phone I lose it all.  BlackBerry Protect no longer backs up my data for me.  I could e-mail all of my photos to myself, but that seems to be a tedious last resort.  Does anyone have any suggestions? Please help!

    Hello witchland and welcome to the BlackBerry Support Community Forums.
    Sorry to hear you're experiencing an issue with your device connecting to BlackBerry Link.
    Disconnect your device from your Mac and restart your Mac.
    On your device, go to Settings>Storage and Access and ensure Access to Storage shows USB Connection as Connect to Mac. Keep scrolling to the bottom and ensure USB Mass Storage is Off.
    Launch BlackBerry Link then connect your device. Does it now detect in Link? Does the lightening bolt appear to indicate your device is charging?
    Thanks!
    -HMthePirate
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Help with Web link sharing

    I run an organization where documents are gathered and viewed
    on our website. Adobe.com has the perfect design and feel. But when
    i 'Copy URL' to the website link, I get an 'invalid address'
    message. The people at Wix told me it is probably because the
    address is secure ('https"). I have other links to the site with no
    problems. Is there something I'm missing? Please help! I'd like to
    be able to ues my Adobe.com docs (that's why I signed up!)
    f.

    Hello swordglint,
    Thanks for your posts!
    I think what wkreps was suggesting, is If you put the url
    that you copy into Another web browser window, or maybe a separate
    browser all together, you will experience what others experience
    when clicking the same link.
    So the question is, what happens when you paste your copied
    link into a fresh browser window?
    Do you get invalid address there? or any errors? Start here.
    How the Wix.com page is handling the input of web addresses
    is beyond our scope here, but hopefully it will accept it, if it
    works for you in another browser. At least then you know if it's a
    valid url or not!
    Cheers,
    Pete

  • Help with Library link lists ..

    Hi ,
    I am working with Scott Mazur on a incorporating 8.1.7 in our code bace for our next product release. I am having problems with defining the library link list needed for builds. In the documentation it makes referance to $ORACLE_HOME/precomp/demo/proc which I cannot find. I have installed the 8.1.7 on 3 platforms (Solaris, AIX and NT ) and none of the system have this information. Can you please point me to where I may find some help in this area. We are in a critical path right now so I would appreciate any help you could give me. The sooner the better.
    Thank you for your time and help ,
    Cheryl Pollock
    Lockheed Martin Global Telecommunications .
    Formtek
    Pittsburgh office .
    (412) 937-4970
    null

    You actually shouldn't try to get the library link lists directly. Rather, you should use the $ORACLE_HOME/rdbms/demo/demo_rdbms.mk makefile like this:
    make -f $ORACLE_HOME/rdbms/demo/demo_rdbms.mk build EXE=yourexecutable OBJS="object list"
    where yourexecutable is the name for your executable and the OBJS= includes a quoted list of all your object and library files.
    null

  • Help With Dynamically Linking Premiere With After Effects

    Recently, I edited some video footage in Adobe Premiere, dynamically linked it with After Effects, and added several effects and transitions within the latter application. However, after I thoroughly finished with my effects editing, I wished to place my After Effects Composition once more into Premiere, but this task met to no avail.
    Whenever I copied, dragged, or dynamically linked the After Effects project into Premiere, the footage showed up displaying either "Media Offline" or a series of colors that you sometimes see when a tv channel is offline. Now, I did read several posts describing the dynamic link as being only ONE WAY, but is there no possible way to move my After Effects composition back into Premiere? Or do I have to start from scratch by copying the Premiere footage into After Effects, THEN dynamically linking it to Premiere?
    Any help would be hugely appreciated!

    Right, I realize that now, but that would require deleting the current dynamically linked After Effects project, right?
    Also, I think the solution to my problem would be found if I could find a way to remove the dynamic link between After Effects and Premiere. Any ideas?

  • Help with putting links on graphics in spry accordion

    I have a sidebar with a spry accordian. Each content area has an image in it. I want users to be able to click on the image (after the accordian is open to it) and link to another page. But I can't find anyway to attach a link to the image, inside the accordian. Please Help!!
    Thank you.

    Also, after a panel is opened and clicked on, it closes and the first panel opens. I have compared the code on the style sheet with the code from Backyard furniture but it looks identical. Where is the code that tellls a panel to stay open?
    There are three accordion panels for the backyardfurniture.com.au menu systems. Each page uses a unique set of instructions within the constructors of each panel.
    For the home page the constructors (near the bottom of each document) look like
    var Accordion1 = new Spry.Widget.Accordion("Accordion1", { useFixedPanelHeights: false, useFixedPanelHeights: false, defaultPanel: 0 }); /* open 1st panel */
    var Accordion2 = new Spry.Widget.Accordion("Accordion2", { useFixedPanelHeights: false, useFixedPanelHeights: false, defaultPanel: -1 }); /* all panels closed */
    var Accordion3 = new Spry.Widget.Accordion("Accordion3", { useFixedPanelHeights: false, useFixedPanelHeights: false, defaultPanel: -1 }); /* all panels closed */
    For the Product->Your Backyard Furniture page it looks like
    var Accordion1 = new Spry.Widget.Accordion("Accordion1", { useFixedPanelHeights: false, useFixedPanelHeights: false, defaultPanel: 2 }); /* open 3rd panel */
    var Accordion2 = new Spry.Widget.Accordion("Accordion2", { useFixedPanelHeights: false, useFixedPanelHeights: false, defaultPanel: 0 }); /* open 1st panel */
    var Accordion3 = new Spry.Widget.Accordion("Accordion3", { useFixedPanelHeights: false, useFixedPanelHeights: false, defaultPanel: -1 }); /* all panels closed */
    You can follow the other pages and see the same kind of constructors for each of the pages.
    Gramps

  • Help with Column Link

    Using APEX 3.2.1
    I have an updatable report where I have a column link (using edit icon) on one field. This is a 4000 char field so I want to go to another page where the users can easily read and/or update the field. This works and the field can be updated on the new page (with submit). However, when you branch back to the original page after the submit and then modify another field, you get the error
    Error in mru internal routine: ORA-20001: Error in MRU: row= 1, ORA-20001: ORA-20001: Current version of data in database has changed since user initiated update process. current checksum = "1E30D234E78C21CE2B8BC54798889D9C", item checksum = "0E8201F749D53031EB3F3C557B50D387".,
    Even if I get out of the updatable report or log off and on in, I still get the error. I thought maybe I could just bring the field value back to the originating page and do a submit from there, but not able to bring the value back without doing a submit.
    Any ideas/help would be really appreciated!
    Thanks,
    Sandie

    Hi ,
    y dont u create the another field in the chhild table and dont use it in this table ,
    or create view and mintain a foriegn with child and parent relation and then create the master detail form ,
    as in ur case the report is displayed iwth older value hence given error when page is submited .
    Else
    u can use the functions md5 etc.,, to mainatain the consistency.
    Regards,
    Nandini

Maybe you are looking for

  • Ipod won't sync after restoring it

    ok, I just left the apple store & my Ipod touch was in recovery mode, the guy "restored" it, told me to go home & that all I had to do was hook it back up & it would charge & sync all at ther same time, it acts like it's syncing, then it pops up & sa

  • Best Practise for connecting to Ethernet based device

    Hi, I have inherited a system where we have a cDAQ-9181 controlling an vehicle access barrier, with a LabView application on  a PC talking to it via Ethernet. (The application is very simple - press a button > send a value to the 9181 unit > opens th

  • How to create a evenly spaced grid of rectangles

    Ok Im having difficulty in creating 5x5 rectangles with rounded corners, which themselves have a specific height and width and the spacing (rows and columns) inbetween are evely spaced. How would i acheive this???

  • Opening iPhoto from a time machine backup

    Is it possible to open the iPhoto application from a time machine backup? Here is my problem and what I am trying to do: I created a sample book (prior to an actual book) to practice with some settings--photos, layouts, fonts, backgrounds, etc. Then

  • Direct selection tool problems

    My selection tool isn't working properly. I can select an object and resize it, but I cannot move it. I have reset preferences and even reinstalled InDesign, to no avail. The objects are not locked and they aren't on master pages. If I use the Direct