Navigation menu active page color not behaving as it should

I created an unordered list for the mainnav links. I use the following lines in the code:
<li><a href="../index.html" class="thispage">Home</a></li>
        <li><a href="#">Events</a></li>
        <li><a href="#">Music</a></li>
        <li><a href="#">Agenda</a></li>
        <li><a href="../Pages/artists.html">Artists</a></li>
The Home button shows the color for 'active', but if I go to the artists page it first shows the hover color, then the page opens but does not show the active color.... I.o.w. the Home button stays on active though it is not active.
Please see the effect on my testsite: www.adrianrooymans.nl

armona22 wrote:
I'm sorry, but I tried that already, and it does not solve the problem. If I do that I get TWO active pages, but clicking anywhere on the artists page makes the blue color go away, except for the Home button.... I could temporarily put that on the testserver so that you could see what happens (unless you beleive me).
You will get two active menu items unless the class is removed from the links that you don't want it on.
If you look at the example page code in the 'completed' folder of the Bayside Beat tutorial you will see on the 'index' page the class has been added to the 'index' link:
<nav id="mainnav">
      <ul>
        <li><a href="index.html" class="thispage">Home</a></li>
        <li><a href="sightseeing.html">Sightseeing</a></li>
        <li><a href="#">Eating Out</a></li>
        <li><a href="#">What's On</a></li>
        <li><a href="#">Where to Stay</a></li>
      </ul>
    </nav>
Whilst on the 'sightseeing' page the class has been moved to the 'sightseeing' link:
<nav id="mainnav">
        <ul>
            <li><a href="index.html">Home</a></li>
            <li><a href="sightseeing.html" class="thispage">Sightseeing</a></li>
            <li><a href="#">Eating Out</a></li>
            <li><a href="#">What's On</a></li>
            <li><a href="#">Where to Stay</a></li>
        </ul>
    </nav>

Similar Messages

  • Navigation menu - current page = HOW??

    I've been pulling my hair out for days over such a simple thing as having a navigation page with page links, and wanting the current page to stand out in the navigation menu (a different style from the other links).
    I created a html content layout template to achieve this. In my template (which my page link items use) I have tried to figure out what page I am on. Nothing works at all. I've googled the hell out of this forum and the internet at large, and no go. How do I get the value (url) of the current page? as in http://myserver.com/myportal/mypage/mysubpage sot hat I may compare it to the items destination url?
    In my template, I have an if else construct, but since I don't know what to compare my #item.pageurl# (or some such) to, I'm getting absolutely nowhere. owa_util.get_cgi_env is not helping, nothing useful can be grabbed from those headers (just urls for individual portlets or items etc).
    I do not administer this server myself, nor do I have access to it other than this one pagegroup through the navigator/builder GUI. My permissions are pretty restricted too I guess.
    So is there a simple way to get the url of the page I'm on? Or has someone already done this and I've been at it for naught? Help! :(
    Portal version is OracleAS Portal 10g Release 2 (10.1.4)

    >
    by saying html content layout template, do you mean that on Navigator, you using html template (in the pageGroups tab/any-pageGroup/html templates) or a User Interface Template (within the providers tab options)?Yes, my page group -> html templates -> HTML Content Layout
    I'm using this template to style the page link items in my navigation page (you know, some divs, css and so on), my template looks like this (ignore the if construct owa_util.bla_blah('BLAH'), it obviously doesn't work but it's there to illustrate exactly what I need:
    <oracle>
    declare
    luokka varchar2(300);
    begin
    htp.p('page_url: #PAGE.EDITPAGE.URL#');
    if  owa_util.get_cgi_env('BLAH')='#ITEM.PAGENAME#' then
    class:= 'active';
    else
    class:='nonactive';
    end if;
    htp.p('<div style="padding-left:15px; font-weight:bold;background-image: url(https://myportal.com/portal/pls/portal/docs/1/1911205.PNG);background-repeat: no-repeat;background-position:left;" class='|| class||'>#ITEM.CONTENT#</div>');
    end;
    </oracle>
    if you are using the first one of them, then try the following to get page_url;
    - in the body section of the template, use <ORACLE> </ORACLE> tags-pair to write a plsql code;
    <oracle>
    declare
    v_pageUrl varchar2(50):= '#PAGE.EDITPAGE.URL#';This doesn't give me anything, and #PAGE.EDITPAGE.URL# is not available in the substitution string list. I only have substittion strings that begin with #ITEM
    begin
    htp.p('page url = '||substr(v_page_url,1,instr(v_page_url,'?',1)-1 )||'<br>');
    end;
    </oracle>
    this should give you the url of the page you are on.
    hope that helps!Edited by: Baguette on 25-Feb-2009 09:02
    Edited by: Baguette on 25-Feb-2009 09:05

  • Spry Menu Bar link colors not consistent

    I have a horizontal Spry menu bar set up with 4 items in it.
    The first item is the Home link and does not have a submenu, but
    the other 3 items do. What I want is when you roll over the main 4
    items the text link color will be purple (#583399). When an item
    has a submenu the rollover text link on the submenu links will be
    green (#89b11a).
    My current code almost works, but the problem I am having is
    that the Home link
    without the submenu changes to a green color instead of
    purple like the other 3 main links. If I add a test submenu to the
    Home link then it turns purple like the other links. How can I get
    the Home link to change to purple like the others without having a
    submenu attached to it?
    Here is my html code that refers to the menu:
    <ul id="MenuBar1" class="MenuBarHorizontal">
    <li><a href="index.html"
    class="MenuBarItemSubmenu">HOME</a></li>
    <li><a href="about.html"
    class="MenuBarItemSubmenu">ABOUT</a>
    <ul>
    <li><a
    href="services.html">services</a></li>
    <li><a
    href="bios.html">bios</a></li>
    <li><a
    href="news.html">news</a></li>
    </ul>
    </li>
    <li><a href="work.html" class="MenuBarItemSubmenu"
    >WORK</a>
    <ul>
    <li><a href="design.html">design</a>
    </li>
    <li><a
    href="advertising.html">advertising</a></li>
    <li><a href="casestudies.html">case
    studies</a></li>
    </ul>
    </li>
    <li><a href="contact.html"
    class="MenuBarItemSubmenu">CONTACT</a>
    <ul>
    <li><a href="#">.</a></li>
    <li><a
    href="location.html">location</a></li>
    <li><a
    href="opportunities.html">opportunities</a></li>
    </ul>
    </li>
    </ul>
    Here is the Spry CSS code that pertains to the links:
    /* Menu items are a light gray text with padding and no text
    decoration */
    ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    padding: 0.5em 0.75em;
    color: #666666;
    text-decoration: none;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    /* Menu items that have mouse over or focus have green text
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    color: #89b11a;
    /* Menu items that are open with submenus are set to
    MenuBarItemHover with purple text */
    ul.MenuBarHorizontal a.MenuBarItemHover,
    color: #583399;
    /* Menu items that are open with submenus are set to
    MenuBarItemHover with purple text */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover,
    ul.MenuBarHorizontal a.MenuBarSubmenuVisible
    color: #583399;
    And
    here
    is a link to my test file so you can see what I am talking
    about.
    Thanks for any help and let me know if you need anything else
    to help with it.

    Anyone??

  • Navigation between different pages is not getting recorded in opescript

    Hi,
    when i tried to record few different pages of an application at a time it wa snot happening in Openscript.Is there any settings that needs to be done to enable this in Openscript.I am using Tester perspective,it is OATS 9.3 version.
    Please help me on this.
    Thanks,
    sai.

    Hi,
    I just enabled a Navigation option for one object in another master and selected the same in the cube. I reactivated the master , cube and checked to see if this navigation values are pulled. But my cube is not pulling the navigation values for this object too.
    Do i need to delete the cube data and load it again in order to get the values of Navigation attribue object? or i just re activate the cube.
    Or there is some problem with my cube. I have copied the standard  cube and i am workin on it.
    Rgds,
    Anup

  • A page does not behave the same in every case

    Hi,
    I am using adfbc and jsf/adf pages.
    I have an entity called Parish (CountryId, CityId, AreaId, ParishName), and created a simple validation method (if the parish name is equal to "test" then to show an error by returning false).
    I created a custom validation method in my AppModule that i just simply get the record id, find the entity and set the values with the method parameters
    I then created a view based on the entity and dragged my view object on my jsf page. I created a button and i binded my custom edit method to the command button, setting the appropriate parameters to bindings on the form. I then double clicked by button and created a binding for the method in a bean.
    When i edit a record and change for example the CountryId, CityId, AreaId and set the ParishName to test (so to force my validation method fire), i am shown the error but the data that i last inputed are lost, and the original are show.
    In another case where i am doing the same thing, the data are kept.
    For example, i have a record with CountryId:UK, CityId:London, AreaId:Finchley, ParishName: North Finchley and when i edit the record and define CountryId:USA, CityId:New York, AreaId:Manhattan, ParishName: test, i get the error message but the data are the original (CountryId:UK, CityId:London, AreaId:Finchley, ParishName: North Finchley). I want to keep the last entered data. In some forms this is done automatically, but in this form i didn't do anything, just dragged and defined, and is not working.
    Anyone please help?
    Antonis

    I apologize for insisting on this, but in my humble opinion it's not useful to try and figure out why your hand-written example is not working if already the declarative way is not working as we expect. We need to figure out why the declarative way is not working first.
    One of my primary jobs is helping customers use ADF correctly and understand how it works internally.
    The code in your updateParish() method is redundantly applying updates to entity attributes that ADF will already have applied to the entity for you. To see this for yourself, you can set a breakpoint in one of the setter methods of your entity object and you'll see that your code is applying the updates a second time.
    I see one reason why your error reporting won't be working as expected, which is that you are directly using the entityImpl object to apply the values. The ADF bundled exception mode only works when you use the view object row to apply the updates to the entities indirectly. Howing using the view object row to apply the values is what ADF will have already done automatically for you, so it's not necessary to do that.
    It's also not a best practice to pass a literal integer value for the first argument of setAttribute(). If for any reason the constant values change, then your code will break. You should call setAttribute("TheAttributeName",thevalue) instead for more robust code.
    Finally, your programmatically setting the user principal name and current date time can also be handled for you automatically by ADF by setting those attributes to be of the correct "History Attribute" type. See section "6.6.3.10 History Attributes" in the ADF Developer's Guide for Forms/4GL Developers on the ADF Learning Center at http://www.oracle.com/technology/products/adf/learnadf.html
    Set a breakpoint in your validation method and debug the completely declarative edit form with the simple (Commit) button. We need to understand if the:
    (a) validation is executing, failing, but the validation error is not being reported correctly, or
    (b) validation is never being enaged at all.

  • 500k Unique Limit not behaving as it should?

    Hoping to get an official "Adobe" answer here as results via Twitter were not too successful, plus this is just too detailed to be accurately articulated in 140 character chunks.  Anyways, the problem comes with an instance I am working on where unique page views for URLs that are well over 500K are not being bucketed in to the "low traffic" category as they should be per this adobe documentation:
    Uniques Exceeded (Low-Traffic) Logic
    I've attached a screenshot, these URLs all only have 1 view per the month, and are not previously recorded, so these should all be falling into the low bucket traffic, but they are not, and this number continues to grow.  Anyone experienced this before, and if you have, do you have insights on to why the software is behaving as such?
    Thanks!

    This forum section is for the analytics of Business Catalyst, One of Adobe's CMS's. IT is not the Adobe Marketing Cloud software forum.

  • NIC Bonding not behaving as it should

    Hi Folks, am trying to setup NIC bonding on my VM (OEL5u6) having two virtualised NICs, i have done the setup which is quite simple however my active-backup mode is not working as expected.
    My Bonded interface
    [root@Gateway network-scripts]# cat ifcfg-bond0
    DEVICE=bond0
    IPADDR=192.169.25.2
    NETMASK=255.255.255.248
    ONBOOT=yes
    BOOTPROTO=none
    USERCTL=no
    BONDING_OPTS='mode=active-backup miimon=1000'
    TYPE=Ethernet
    individual interfaces
    [root@Gateway network-scripts]# cat ifcfg-eth2
    DEVICE=eth2
    HWADDR=08:00:27:1e:57:cf
    MASTER=bond0
    SLAVE=yes
    ONBOOT=yes
    BOOTPROTO=none
    USERCTL=no
    [root@Gateway network-scripts]# cat ifcfg-eth4
    DEVICE=eth4
    HWADDR=08:00:27:46:69:69
    MASTER=bond0
    SLAVE=yes
    ONBOOT=yes
    BOOTPROTO=none
    USERCTL=no
    Bonding status (looks good)
    [root@Gateway network-scripts]# cat /proc/net/bonding/bond0
    Ethernet Channel Bonding Driver: v3.5.0 (November 4, 2008)
    Bonding Mode: fault-tolerance (active-backup)
    Primary Slave: None
    Currently Active Slave: eth2
    MII Status: up
    MII Polling Interval (ms): 1000
    Up Delay (ms): 0
    Down Delay (ms): 0
    Slave Interface: eth2
    MII Status: up
    Link Failure Count: 0
    Permanent HW addr: 08:00:27:1e:57:cf
    Slave Interface: eth4
    MII Status: up
    Link Failure Count: 0
    Permanent HW addr: 08:00:27:46:69:69
    I am doing a continous ping from another host in the same n/w to this bonded interface IP to check if the ping streak breaks when i test this setup
    Testing -
    [root@Gateway network-scripts]# ifenslave -c bond0 eth4
    and that's it my SSH connection is gone, and ping is broken with "Request timed out"
    when i check the bond status now -
    Bonding Mode: fault-tolerance (active-backup)
    Primary Slave: None
    Currently Active Slave: eth4
    MII Status: up
    MII Polling Interval (ms): 1000
    Up Delay (ms): 0
    Down Delay (ms): 0
    Slave Interface: eth2
    MII Status: up
    Link Failure Count: 0
    Permanent HW addr: 08:00:27:1e:57:cf
    Slave Interface: eth4
    MII Status: up
    Link Failure Count: 0
    Permanent HW addr: 08:00:27:46:69:69
    am afraid there's not much help in the message log to debug this.
    Any views what's wrong and how to resolve? appreciate ur replies. Thanks
    Regards Amit

    Hi,
    I'm having the same problem, when i disconnect the cable from the eth0 (active slave) stop receiving respond
    I have tried bridged conf and interal net.
    I'm using VirtualBox 4.1.16
    This is my conf:
    [root@integrador ~]# cat /etc/sysconfig/network-scripts/ifcfg-bond0
    DEVICE=bond0
    IPADDR=10.10.0.2
    NETWORK=10.10.0.0
    NETMASK=255.255.255.0
    BONDING_OPTS="mode=1 miimon=100"
    BOOTPROTO=none
    ONBOOT=yes
    [root@integrador ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
    DEVICE=eth0
    ONBOOT=yes
    BOOTPROTO=none
    MASTER=bond0
    SLAVE=yes
    USERCTL=no
    [root@integrador ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth1
    DEVICE=eth1
    ONBOOT=yes
    BOOTPROTO=none
    MASTER=bond0
    SLAVE=yes
    USERCTL=no
    [root@integrador ~]# cat /etc/modprobe.d/bonding.conf
    alias bond0 bonding
    [root@integrador ~]# ifconfig -a
    bond0 Link encap:Ethernet HWaddr 08:00:27:5C:C5:BA
    inet addr:10.10.0.2 Bcast:10.10.0.255 Mask:255.255.255.0
    inet6 addr: fe80::a00:27ff:fe5c:c5ba/64 Scope:Link
    UP BROADCAST RUNNING MASTER MULTICAST MTU:1500 Metric:1
    RX packets:402 errors:0 dropped:0 overruns:0 frame:0
    TX packets:92 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:39487 (38.5 KiB) TX bytes:11045 (10.7 KiB)
    eth0 Link encap:Ethernet HWaddr 08:00:27:5C:C5:BA
    UP BROADCAST RUNNING SLAVE MULTICAST MTU:1500 Metric:1
    RX packets:211 errors:0 dropped:0 overruns:0 frame:0
    TX packets:89 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:23061 (22.5 KiB) TX bytes:10863 (10.6 KiB)
    eth1 Link encap:Ethernet HWaddr 08:00:27:5C:C5:BA
    UP BROADCAST RUNNING SLAVE MULTICAST MTU:1500 Metric:1
    RX packets:191 errors:0 dropped:0 overruns:0 frame:0
    TX packets:3 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:16426 (16.0 KiB) TX bytes:182 (182.0 b)
    eth2 Link encap:Ethernet HWaddr 08:00:27:DF:11:A2
    inet addr:192.168.57.1 Bcast:192.168.57.3 Mask:255.255.255.252
    inet6 addr: fe80::a00:27ff:fedf:11a2/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0
    TX packets:1142 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:0 (0.0 b) TX bytes:119508 (116.7 KiB)
    eth3 Link encap:Ethernet HWaddr 08:00:27:D1:41:9A
    inet addr:192.168.1.50 Bcast:192.168.1.255 Mask:255.255.255.0
    inet6 addr: fe80::a00:27ff:fed1:419a/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:825 errors:0 dropped:0 overruns:0 frame:0
    TX packets:625 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:563221 (550.0 KiB) TX bytes:85914 (83.9 KiB)
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:25 errors:0 dropped:0 overruns:0 frame:0
    TX packets:25 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:2690 (2.6 KiB) TX bytes:2690 (2.6 KiB)
    [root@integrador ~]# cat /proc/net/bonding/bond0
    Ethernet Channel Bonding Driver: v3.6.0 (September 26, 2009)
    Bonding Mode: fault-tolerance (active-backup)
    Primary Slave: None
    Currently Active Slave: eth0
    MII Status: up
    MII Polling Interval (ms): 100
    Up Delay (ms): 0
    Down Delay (ms): 0
    Slave Interface: eth0
    MII Status: up
    Speed: 1000 Mbps
    Duplex: full
    Link Failure Count: 0
    Permanent HW addr: 08:00:27:5c:c5:ba
    Slave queue ID: 0
    Slave Interface: eth1
    MII Status: up
    Speed: 1000 Mbps
    Duplex: full
    Link Failure Count: 0
    Permanent HW addr: 08:00:27:fc:6b:f6
    Slave queue ID: 0
    [root@integrador ~]# lsmod | grep -i bond
    bonding 109558 0
    ipv6 264641 39 cnic,bonding,ip6t_REJECT,nf_conntrack_ipv6,nf_defrag_ipv6
    [root@integrador ~]# uname -a
    Linux integrador 2.6.32-220.el6.i686 #1 SMP Tue Dec 6 16:15:40 GMT 2011 i686 i686 i386 GNU/Linux
    Sorry for my english!

  • Combo box not behaving like it should

    I have a form in which I have 4 combo boxes that have more or less the same choices, however there is one that is common to all 4 (E078).
    When "E078" is selected in any of the combo box, a new combo box will appear (and a white rectangle will be hidden so that the new combo box title can be seen). It works when I select that in one or more combo box, however to make it disappear I have to select some other choice in the same combo box twice!!! If I select anything only once, it will not make the new combo box hidden, but if re-select something (same or another choice) then the combo box will disappear!
    I am at lost, and would be very thankful if someone could make it work seamlessly. I mean it works, nut it is just inconvenient and I cannot tell the user to make select something else twice if they want the field to disappear.
    Here is my form:
    https://workspaces.acrobat.com/?d=WjF6aV8IUuBX2w8iZN3k0g

    When you use event.value in a combo box's Validate event it does not give you the export value, which is what you want. It is easier to use place the code in a custom Keystroke script where you can use the event.changeEx property to retrieve the export value of the selected item. See the documentation for more information: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.607.html

  • Rephrase my previois post: why mustsaslserver not behaving as it should be

    Shane,
    I think it is better to rephrase my question:
    In a previous answer you said the following:
    An email server/client was able to connect to your server on port 25
    You can enforce SASL on port 25 connections from non-local hosts (not defined in INTERNAL_IP) by modifying the imta.cnf configuration file and changing the tcp_local channel definition. Replace the "maysaslserver" keyword with "mustsaslserver".
    But I've just found this on my testing server:
    After changing the maysaslserver to mustsaslserver for the tcp_local
    stanza,
    PC clients CANNOT connect to my testing server (for mail relaying)
    , which is correct.
    But mails from email servers
    ^^^^^^^^
    CAN, becos incoming mails are still able to come in and sent to
    the local users.
    The mapping file is okay as the stanza is :
    INTERNAL_IP
    $(ip.of.this.host/24) $Y
    127.0.0.1 $Y
    * $N
    Why?

    Okay, Shane.
    Let me describe what I've tried on this JSMS server.
    But before I do so, here is the relevant lines in my mappings file:
    INTERNAL_IP
    $(158.182.1.76/24) $Y
    127.0.0.1 $Y
    * $N
    My line in imta.cnf , i.e. before I've changed it looks like:
    ! tcp_local
    tcp_local smtp mx single_sys remotehost inner switchchannel identnonenumeric sub
    dirs 20 maxjobs 7 pool SMTP_POOL maytlsserver maysaslserver saslswitchchannel t
    cp_auth missingrecipientpolicy 0 loopcheck
    When I tested it by sending mail to one of its users from outside, the mail was received
    okay. This is expected.
    Now according to the manual, if I change the "maysaslserver" in the line above
    to "mustsaslserver", then if I did the same test mentioned above,
    it will reject the mail because it won't accept any smtp connection from
    anything other than its own IP (158.182.1.76) or 127.0.0.1
    Is my understanding CORRECT ?
    But when I did the same test (i.e. sending mail to it like I've described above,
    there's no difference. In other words. it did not reject the mail but received it)
    Why?

  • IMAP Mailbox not behaving as it should with Mac

    Hi all,
    Hope you can help.
    Have recently set up an IMAP email account for my business on both my Mac and my iPhone.
    Anything read or deleted on my Mac syncs with my iPhone as it should but when I read the email on my iPhone it does NOT appear as 'read' on my Mac. In fact, it marks itself as unread again if left for a while. Also mail deleted on the phone does not appear deleted on my Mac.
    Any help anyone could give would be greatly appreciated.
    Many thanks in advance,
    Nigel

    My Discover Card App.
    It's frozen... Can't delete it or anything. Just stuck in "waiting" mode...won't open... Nothing.

  • IPhoto is not behaving as it should!

    It's really slow to load.
    iCloud sharing doesn't seem to work properly although I followed the help instructions meticulously.
    When I click "share" it takes ages to load and "iCloud" is grayed out and the only option given is email.
    It won't let me set up a new stream- or rather it won't let me load anything into a new stream.
    At the moment I've given up and am sharing via a memory stick which is useless for videos!!
    Help!

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen. Click the Clear Display icon in the toolbar. Then take one of the actions that you're having trouble with. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • For loop is not behaving as it should

    Hi,
    Please help me if you can.
    I'm using netbeans, I have a Dog class with a bark() method which contains an If/Else Statement:
    void bark() {
    if (size > 60) {
    System.out.println("Woof! Woof!");
    } // If
    if (size > 14) {
    System.out.println("Ruff! Ruff!");
    } // If
    else {
    System.out.println("Yip! Yip!");
    When I call this method from the Dog class with a new Dog object (after I have initialised it with a value of 64, the If statements execute If size > 60 AND if size > 14 and it didn't before! Why is this? It used to just execute the top If statement.
    The only thing I can think of is that I was trying to define set CLASSPATH on the command prompt the other day (to no success even though it was pointing right to the folder for javac etc) but I don't think this would cause an If statement to execute like this?

    Akhkhi wrote:
    Check the value of size variable in your method..I think its finding somthing different value what u r expecting ...what the heck are you talking about? This has absolutely nothing to do with the original poster's problem.

  • App not behaving as it should

    One of my apps is stuck in waiting mode for days now. It appears as though it got stuck during an update.

    My Discover Card App.
    It's frozen... Can't delete it or anything. Just stuck in "waiting" mode...won't open... Nothing.

  • How to render side navigation menu programmatically.

    Hi all,
    I Have standard pages (i.e Customer online pages ) when I navigate one page to another page 2nd page have side navigation menu
    This page is attached as first page in side navigation menu so by default this menu is displaying if I navigate from this page to
    Author pages using keep_menu_context it is displaying to all author pages.
    Now my requirement is I need to go 3rd page from 1st page on that time the menu is not displaying (side navigation menu).
    Thanks in advance....
    Regards,
    Sridhar.

    If I understand your requirement you're looking for something like this: http://deluxe-menu.com/sound-support-sample.html
    Under 10.1.3 using ADF Faces I don't believe there is a component available to achieve this. Potentially under 10.1.3 you'll need to look to a 3rd party Javascript solution. Whether this will work with ADF Faces + JSF navigation is questionable. Potentially others on the forum can comment.
    As an alternative solution under 10.1.3 you may want to look at using an af:tree component instead. It wont be as nice as the solution shown above, but will give you a multilevel menu selection.
    Regards,
    CM.

  • New page does not show up

    Hello: I have a web site hosted on Mobile Me. Tonight I added a new page to it. I placed the new page as the first page. I saved the site and published it, but the new page does not show up on the internet. Using the Inspector, i "included the page in the navigation menu," although i do not have the navigation menu displayed.  Even with this step, the new page is not visible on the website on the internet. I cannot figure out what else to try.  I have hit "publish entire site" and that did not make any difference.
    any advice would be much appreciated
    Thank you.

    Some hosting services are more problematic than others and it's difficult to choose.
    I use Host Excellence because they have all the features you need and really good 24/7 tech support - better than GoDaddy.
    The ultimate business account gives you way more than MobileMe for about the same price....
    http://www.iwebforbusiness.com/Tools-Resources/Website-Hosting.html
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

Maybe you are looking for

  • Extreme base station worked, but no internet,... now locked out.

    Situation: Cable modem connected to Extreme base station. Powerbook G4 with 10.3.9 and iMac with 10.3.9 connected by airport to base station. This has been working for more then a year. This morning I had no internet connection on the G4 or the iMac.

  • How to enter my password after replacing keyboard batteries

    I have just replaced the batteries in my keyboard (first time I've done this). The Mac was asleep and needs a password to wake up, but the keyboard "pairing needed" light is flashing and I cannot enter the password as the keyboard cannot transmit to

  • Is it possible to change the prompt of StaticStyledTextBean in CO

    Hi Gurus, I want to change the prompt of StaticStyledTextBean by extending CO. But i am not getting setPrompt for StaticStyledTextBean. OAStaticStyledTextBean staticstyletextbean = (OAStaticStyledTextBean)oawebbean.findIndexedChildRecursive ("ShopOth

  • How do I add Adobe to the allowed list as required by firefox?

    Instructions for Adobe Flash Player update say, Mozilla Firefox will not install Adobe Reader from web sites until you add them to the Allowed List. Please follow the steps below.Mozilla Firefox will not install Adobe Reader from web sites until you

  • Share Monitor will not open up

    I have burned dvds using FCPX before but today it is not happening  The Share Monitor Window that usually pops up is not coming up.  There was a m2v file created on my hard drive but i specifically selected the optical drive for the output.  any sugg