Problem with how help works

Hi;
I have the help system up for the JSF tutorial. I then move my mouse to the tag library and click on the info icon for the "Import CSS File" two problems with this:
1. It takes you to help for Link (which is the next item).
2. It jumps to that page in the help window I had up for the JSF tutorial and wipes the history so I can't go back to the JSF tutorial. This is a giant PITA.
??? - thanks - dave

Hi,
#1 is not an issue; the HTML anchor tag has been named Link within Tag Libraries view. The info icon on Link tag leads you to <A> element help page.
The CSS file (using Import CSS file) is indeed defined by <link> tag.
An issue has been logged regarding back button navigation.
Try the following steps to workaround this issue,
* When you are in JSF tutorial help page, click on Bookmark Document icon
* And when you loose the page, you can navigate back switching to "Bookmarks tab" (Synchronize from "Show in Table of Contents")
Thanks,
M7 Support

Similar Messages

  • Problem with how AppXray works...?

    After defining my application in NitroX/Eclipse and building, I receive errors
    of this type:
    Error
    The file "/resources/images/trans1x1.gif" does not exist.
    brandEditorList.html
    Nsyrinx/templates/cat/admin/brand
    The html file in question contains this html fragment:
         <img width="4" src="/resources/images/trans1x1.gif" border="0">
    IMHO these should not be listed as errors because based on the server.xml that
    I'm using, these image files are located in the "ROOT" webapp, and they do exist
    in the file system.
    Any thoughts?
    -Mike

    This is now fixed to be a "warning" instead of "error" in the 143 build. The
    fix will be available in the release build.
    I believe the warning is valid. In your example NitroX would look for the
    file "resources/images/trans1x1.gif" in the (NitroX) web application root
    (i.e the directory containing the WEB-INF folder) and complains if it does
    not find it.
    I understand that in your case the file does not exist where it is expected
    at design time but it will exist at runtime, but it could have been a real
    mistake.
    M7 Support
    "Michael Schulz" <[email protected]> wrote in message
    news:409bb181$[email protected]..
    After defining my application in NitroX/Eclipse and building, I receiveerrors
    of this type:
    Error
    The file "/resources/images/trans1x1.gif" does not exist.
    brandEditorList.html
    Nsyrinx/templates/cat/admin/brand
    The html file in question contains this html fragment:
    img width="4" src="/resources/images/trans1x1.gif" border="0"
    IMHO these should not be listed as errors because based on the server.xml
    that
    I'm using, these image files are located in the "ROOT" webapp, and they do
    exist
    in the file system.
    Any thoughts?
    -Mike

  • Please Help:  A Problem With Oracle-Provided 'Working' Example

    A Problem With Oracle-Provided 'Working' Example Using htp.formcheckbox
    I followed the simple steps in the Oracle-provided example:
    Doc ID: Note:116534.1
    Subject: How to use checkbox in webdb for bulk update using webdb report
    However, when I select a checkbox and click on the Update button, I get a "ORA-01036: illegal variable name/number" error. Please advise. This was a very promising feature.
    Fred
    Below are step-by-step instructions provided by Oracle to create this "working" example:
    How to use a checkbox in WEBDB 2.2 report for bulk update.
    PURPOSE
    This article shows how checkbox can used placed on WEBDB report
    and how to use it.
    SCOPE & APPLICATION
    The following example to guide through the steps to create a working
    example of this.
    In this example, the checkbox is used to select the records. On clicking
    the update button, the pl/sql procedure is called which will update col1 to
    the string 'OK'.
    After the update is done, the PL/SQL procedure calls the report again.
    Since the report only select records where col1 is null, the updated
    records will not be displayed when the report is called again.
    Step 1 - Create Table
    From Sqlplus, log in as scott/tiger and execute the following:
    drop table chkbox_example;
    create table chkbox_example
    (id varchar2(10) not null,
    comments varchar2(20),
    col1 varchar2(10));
    Step 2 - Insert Test Data
    From Sqlplus, still logged in as scott/tiger , execute the following:
    declare
    l_i number;
    begin
    for l_i in 1..50 loop
    insert into chkbox_example values (l_i, 'Comments ' || l_i , NULL);
    end loop;
    commit;
    end;
    Step 3 -Create SQL Query based WEBDB report
    Logon to a WEBDB site which has access to the database the above tables are created.
    Create a SQL based Report.
    Name the report :RPT_CHKBOX
    The select statement for the report is :
    select c.id, c.comments, c.col1,
    htf.formcheckbox('p_qty',c.id) Tick
    from SCOTT.chkbox_example c
    where c.col1 is null
    In Advanced PL/SQL, (REPORT, Before displaying the form), put the following code
    htp.formOpen('scott.chkbox_process');
    htp.formsubmit('p_request','Update');
    htp.br;
    htp.br;
    Step 4 - Create a stored procedure in the database
    Log on to the database as scott/tiger and execute the following to create the
    procedure.
    Note: Replace WEBDB to the appropriate webdb user for your installation.
    In my database, I had installed webdb using WEBDB username, hence user webdb owns
    the packages.
    create or replace procedure chkbox_process
    ( p_request in varchar2 default null,
    p_qty in wwv_utl_api_types.vc_arr ,
    p_arg_names in wwv_utl_api_types.vc_arr ,
    p_arg_values in wwv_utl_api_types.vc_arr
    is
    i number;
    begin
    for i in 1..p_qty.count loop
    if p_qty(i) is not null then
    begin
    update chkbox_example
    set col1 = 'OK'
    where chkbox_example.id = p_qty(i);
    end;
    end if;
    end loop;
    commit;
    /* To Call Report again after updating */
    SCOTT.RPT_CHKBOX.show
    (p_request=>'Run Report',
    p_arg_names=>webdb.wwv_standard_util.string_to_table2(' '),
    p_arg_values=>webdb.wwv_standard_util.string_to_table2(' '));
    end;
    Summary
    There are essentially 2 main modules, The WEBDB report and the pl/sql procedure (chkbox_process)
    A button is created via the advanced pl/sql coding which shows on top of the report. (The
    button cannot be placed at the bottom of the report due to the way WEBDB creates the procedure
    internally)
    When any button is clicked on the report, it calls the pl/sql procedure chkbox_process.
    The procedure is called , WEBDB always passes the parameters p_request,p_arg_names and o_arg_values.
    p_qty is another parameter that we are passing additionally, This comes from the checkbox created
    using the htf.formcheckbox in the report select statement.
    The pl/sql procedure calls the report again after processing. This is done to
    show how to call the report.
    Restrictions:
    -The Next and Prev buttons on the report will not work.
    So it is important that the report can fit in 1 page only.
    (This may mean that you will not select(not ticked) 'Paginate' under
    'Display Option' in the WEBDB report. If you do this,
    then in Step 4, remove p_arg_names and p_arg_values as input parameters
    to the chkbox_process)

    If your not so sure you can use the instanceof
    insurance,
    Object o = evt.getSource();
    if (o instanceof Button) {
    Button source = (Button) o;
    I haven't thoroughly read the thread, but I use something like this:if (evt.getSource() == someObjRef) {
        // do that voodoo
    ]I haven't looked into why you'd be creating a new reference...

  • ITunes has stopped working.  Problem with iTunes Helper Module

    After i installed the 7.3.1 iTUNES update for my windows VISTA, i keep getting iTunes has stopped working, and a message saying there is a problem with iTunes Helper Module.. I've tried to re-install and everything.. Can anyone help me out?

    here you go
    Problem signature
    Problem Event Name: APPCRASH
    Application Name: iTunesHelper.exe
    Application Version: 7.3.1.3
    Application Timestamp: 468d67e8
    Fault Module Name: QuickTimeStreamingAuthoring.qtx
    Fault Module Version: 7.2.0.240
    Fault Module Timestamp: 4684a83a
    Exception Code: c0000005
    Exception Offset: 00016c09
    OS Version: 6.0.6000.2.0.0.768.3
    Locale ID: 1033
    Additional Information 1: 18fe
    Additional Information 2: f42ba5cd8b2ed31f18b99a5ea46137af
    Additional Information 3: 4735
    Additional Information 4: ae0a749503b699b3b75d581a3dbfd557
    Extra information about the problem
    Bucket ID: 466198587

  • Since upgrading my Macbook pro with Yosemite, I have problem with my Xerox Work Centre 3045 - the printer works normally but it does not recognise the scanner, can you help with this?

    Since upgrading my Mac book pro with Yosemite, I have problems with my Xerox Work Centre 3045 printer. The printer works normally but it does not recognise scanner, I can not scan anything. Can you help?

    Open Disk Utility and select your hard drive, then Repair Permissions, it will probably return a very large number of errors, primarily printer and library errors, so run it a second time.  Then restart the MacBook Pro.  If it still will not scan, try using Image Capture from Finder > Applications and see if that will work.  If not, contact Xerox about updated drivers.

  • I can't delete my bt emails or move them to folders, other emails from tiscali no problem with, anyone help please

    I can't delete my bt emails or move them to folders, other emails from tiscali no problem with, anyone help please

    I did that and it is currently whirring away, had over 16000 emails as everything got imported when I set emails up (only had this computer 5 days). So will see what happens when it stops doing whatever it is doing. Sorry if I appear stupid but first Mac I have owned so everything a bit new. Have managed to get most things working correctly just can't sort this BT email problem out. Will report back later!

  • I am getting problem with internal table & work area declaration.

    I am working with 'makt' table ..with the table makt i need to work with styles attributes ..so i declared like this
    TYPES : BEGIN OF ty_makt,
             matnr TYPE makt-matnr,
             spras TYPE makt-spras,
             maktx TYPE makt-maktx,
             maktg TYPE makt-maktg,
             celltab TYPE lvc_t_styl,
           END OF ty_makt.
    DATA : i_makt TYPE TABLE OF ty_makt.
    DATA : wa_makt TYPE ty_makt .
        But end of program i need to update dbtable "makt"...i am getting problem with internal table & work area declaration.
    i think makt table fields mapping and internal table/work area mapping is not correct. so please help me to get out from this.

    Hi Nagasankar,
    TYPES : BEGIN OF TY_MATNR,
                  MATNR TYPE MAKT-MATNR,
                  SPRAS TYPE MAKT-SPRAS,
                  MAKTX TYPE MAKT-MAKTX,
                  MAKTX TYPE MAKT-MAKTG,
                  CELLTAB TYPE LVC_T_STYL,  " Its Working perfectly fine..
                 END OF TY_MAKT.
    DATA: IT_MAKT TYPE STANDARD TABLE OF TY_MAKT,
              WA_MAKT TYPE TY_MAKT.
    Its working perfectly fine. if still you are facing any issue post your complete code.
    Thanks,
    Sandeep

  • Has anyone ever had a problem with your iphone working outside your home but not inside. The internet works fine in and outside of the house

    Has anyone had problems with your iphone working outside of the house, but not inside? Cannot make or receive calls, nor can I send or receive any text messages. This is something that just happened out of nowhere. Can I get some help please?

    Did you used to have service and now suddenly you don't?
    This happened to me a few years back, and several other iPhone users in my neighborhood, and after a while on the phone with AT&T they figured out that a technician had recently adjusted the receiver/sender on the tower and it was slightly off. They sent them back up and I actually had a better signal after than I did before it went out.
    I would call AT&T and explain the issue you are having and see if they can fix it.
    If you never had service there then like wjosten said it's probably just a bad zone.
    Hope you get it sussed out.
    -PM

  • Problem with Adobe Help Online

    Dear sir,
    Hi, My name is Palm.
    I have a problem with Adobe Help. Every time I use the function "Leyer Style" >> "Gradient Overlay".
    Adobe Help Online is often displayed without my pressing or click anything.
    It was a problem with my work.
    I have to restart the program. To work again.
    Thanks for the help.

    Thank you.
    It's excellent for this solution.
    I have solved the problem as suggested.
    Now the problem is still not found but I will monitor this issue further.

  • Problems with "Mac Help"

    My help files, especially "Mac Help", no longer work properly since upgrading to Tiger. If I open "Mac Help", for example, the help window will pop up, but the links will not work (nothing happens when I click on them) and the search feature in help will not work either (the little gray "clock" just spins next to the help bar and nothing else ever happens). Any suggestions on this one? As I'm a relatively recent Mac convert, the help feature was something that I came to rely on. Thanks!

    Hi CP,
    This is a common problem with Mac Help. When it happens, try first (quit Help) deleting this folder:
    Home/Library/Caches/com.apple.helpui
    If Help still doesn't work, try then deleting those files:
    Home/Library/Preferences/com.apple.helpviewer.plist
    Home/Library/Preferences/com.apple.help.plist
    (and this one if you find it):
    Home/Library/Preferences/com.apple.helpui.plist
    See also this KB article for more info
    - Mac OS X 10.2, 10.3: Mac Help Viewer unexpectedly quits
    and this excellent X Lab FAQ
    - Troubleshooting Help Viewer
    It seems (not sure about that), that Help caches get easily corrupted when interrupting searches instead of patiently waiting for its internet accessings etc?
    Good luck!
    Axl

  • I'm having constant problems with pages not working. I.E.: I cannot fill in writeable fields, click on buttons... or anything... nothing on the page works. And, this is not exclusive to a particular site. I can, however, work well in Explorer.

    For the last few weeks I have had constant problems with pages not working. I.E.: I cannot fill in writeable fields, click on buttons... or anything... nothing on the page works. And, this is not exclusive to a particular site. It does seem to be a browser issue, because I can work well in Explorer.

    Both the Yahoo! Toolbar extension and the Babylon extension have been reported to cause an issue like that. Disable or uninstall those add-ons.
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Problem with Adobe Help in Creative Cloud

    I'm using Mac OSX 10.9 but this problem has been here before that.
    My Adobe Help application says "No Adobe Products are currently installed." which is completely wrong. If I look at the "Local Content tab there is nothing displayed. I did have the "Display Local Help Content only" set to "yes, because it annoyed me to be taken to SLOW website whenever I clicked help. But now I have no other options and it seems to have mucked uo the help system altogether. I have changed it to "No" now so that it will display online content, but the real problem is that it does not recognise ANY of the installed CC applications.
    Any clues as to what the problem is or how I can make Adobe Help recognise my installed applications? Adobe Help has SUCKED BADLY for local help content for a long now.

    i too have issues with the help the tech sopport for Adobe. When i last tried to call i was told it would be a hour wait. Using the online chat was useless as well. Then to top things off my code for the ID theft monitering servies is not valid. Now i have to call and deal with that, there is another half a day wasted. I think its time to hack the software, YES adobe i have the .DLL files needed to have creative cloud or windows 7. Unless i get better help im going to cancle my subscription and just intall the hacks so the software still works. who needs support they are useless anyway.

  • Strange problem with how my iPhone (4S) sees a friend who recently moved his number from his old network and device to a new network and iPhone 3GS

    This is a weird one, so bear with me.
    My friend recently got an iPhone 3GS with a new SIM in it (3 network in the UK). I helped him set up the iPhone and got iMessage working between my mobile and his temporary number (07429...)
    In my Contacts I had two separate phone numbers for him: 07903... (his old number, on an old Sony Ericsson mobile with T-Mobile UK) and 07429... (the number that came with the 12-month contract I purchased for him; we called this his "temporary" number).
    His old number (07903...) was transfered over to his iPhone with no problems. His iPhone has worked flawlessly.
    But since that day I've had some really strange behaviour on my iPhone (a 4S, also on 3 UK): I removed his temporary number (07429...) from my contacts. But now when I try to text him at the old number (07903...) it bounces back at me as if the number doesn't exist. But if I try to text him at the temporary number (07429...) it works just fine and in my contacts and within Messages it appears as an iMessage-connect number.
    So I tried deleting everything and starting from scratch. Still the same behaviour.
    No one else is having this problem with him. I can call his old number (07903) just fine, I just can't text it.
    I'm guessing that there's something with the way Contacts works with iMessage that's caused the problem. It's as if my contacts have updated properly under-the-hood (iMessage *does* work just not with the right number).
    And yes, when I (or anyone) tries calling the temporary number (07429...) it's out of service. Which is correct. So it's not simply a case of *both* numbers being active.
    So this is very peculiar.
    In typing up this message it occured to me that I ought to try creating an all-new contact with some slight change in the name fields (e.g. include the middle initial) and see if I can get it to work properly. Then I ought to be able to change the name field (or just leave it alone, touch wood!).
    Thanks in advance for reading this far. It's difficult to explain this problem succintly!
    Cheers,
    Carey

    I've fixed my own problem.
    In the end, the issue was with iMessage on the other phone, not mine.
    While I had it connected to iTunes (the other phone, not mine), I could see that iTunes thought it was the temporary number (07429...). I turned iMessage off and back on again and the phone number in iTunes changed to the old (i.e correct) number (07903...).
    Subsequently, texts from my phone to the other phone showed up as blue-bubbled iMessages.
    Hope this helps someone!
    Thanks for reading, if you did.

  • Problem with printing help plz

    Hi Folks,
    Got a problem with printing hope you can help. I have just got back from an online printers some 40 prints. There is a big difference between the brightness of the print (it being a lot darker) and the elements screen. The company I used comes highly reccomended by many different sources. What am I doing wrong and how do I fix?
    Thanks

    which online service provider are you using?

  • Problems with the help menu.

    Hi. I'm a new iMac user and have had problems using the help menu on my computer. Every time I click on help and search a topic I get a blank untitled window. Nothing ever opens up in the window and then the spinning beach ball comes up. It is only in the blank window and I am still able to use the computer normally. I am unable to close or force quit the program and have to restart to get rid of it. I have called tech support and spent over an hour on the phone with no help and ended up reinstalling the operating system. Still having the same problem. Anyone have some advice or have had a similar problem?

    Welcome to Apple Discussions!
    Try reindexing the hard drive via Apple menu -> System Preferences -> Spotlight.
    Drag the hard drive into the Privacy section, and the select it in that section, and select the minus sign in the bottom left corner below the field holding the drive.
    Click then on Spotlight every half hour to wait until the Indexing status no longer shows up.
    If Help still doesn't come up entirely, try clicking on the clear jewel in the upper right corner of the Help menu. It may reveal the search field. If it doesn't, quit from the Help Viewer application menu, and then go to com.apple.helpviewer.plist and delete it. Help should then load normally.
    If it still doesn't, try repairing permissions with Applications -> Utilities -> Disk Utility.
    In the end, if that still doesn't work, let us know, and we might suggest something else.

Maybe you are looking for