Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Pichdude

    Warning about insecure content

    I think I have located the problem, however I do not know how to solve it. The warning about unsecure content only appears in IE6, not in IE7 and FF. In the the calender javascript an iframe is created if browser is IE6 or less: if (navigator.appVersion.indexOf("MSIE")!=-1){...
  2. Pichdude

    Warning about insecure content

    Hi, I run my web-app in https. On one jsp i present a javascript with a calendar. This calender has relative links to images. When calendar is loaded I get a warning about insecure content in IE (not in FF). I thought that since my img tags are relative the would also be https, but I guess I...
  3. Pichdude

    Tab to iframe

    Hi, I have a texteditor that and uses iframe. Is it possible to include this iframe in tabindex? I want it to be number three after two input fields. Best regards Pichdude
  4. Pichdude

    JavaScript to set default submit button

    Actually I use JSF and are able to have multiple submit buttons which do different actions with the post. So that does not cover it for me.
  5. Pichdude

    JavaScript to set default submit button

    Hi, Does anybody know of a way, that works both in IE and FF, to define which of my buttons that should be used to post a form when the user hits Enter? As default I guess the first button is fired. Best regards Pichdude
  6. Pichdude

    Remove onlick attribute

    Thank you all very much! On this printer friendly page I also would like to "convert" all drop-down lists to only show the selected value as a text, i.e. no selection available. Is this also possible in some nice way? Best regards Pichdude
  7. Pichdude

    Remove onlick attribute

    Hi, I am wondering if anyone can help me. I have a print version of a page, displayed in a popup window. In this page I want to disable all links. My links have their "action" specified in "onclick". Is it possible to remove that attributes somehow? Best regards Pichdude
  8. Pichdude

    Conversion on itemLabel in selectItem

    Hi! I have a h:selectOneMenu and a couple of f:selectItem tags. I use the itemLabel and itemValue attributes. Is it possible for format the output of the itemLabel in the outcoming drop down? The drop down is presenting account numbers and these should be presented in a specific way. I do not...
  9. Pichdude

    Pass div content as parameter

    Is it possible to retrieve a div from the original page (with the print-link) on print.jsp? I.e. not passing the div-content on a request parameter, instead getting it by using something like getElementById that looks in the original page. Best regards Pichdude
  10. Pichdude

    Pass div content as parameter

    Worked like a charm! Thanks a lot.
  11. Pichdude

    Pass div content as parameter

    Hi, I am wondering if it is possible to pass the content of div as a request parameter to another page? If I do this... var printDivContent = document.getElementById("testDiv").innerHTML; <a href="#" onclick="window.open('print.jsp?param=printDivContent', 'Help'...
  12. Pichdude

    Automatic link click in Mozilla

    Hi, I use this javascript to force a link click once the page is loaded. document.getElementById('theLink').click(); But this only work in IE, does anybody know of a solution that also works for Mozilla? Regards Pichdude
  13. Pichdude

    Create JSF managed bean

    Hi, Does anybody know if it is possible to instantiate a JSF managed bean using java code (e.g. not via faces-config.xml)? Regards Pichdude
  14. Pichdude

    JSF link to local file

    Hi, How can I use outputLink, or equivalent tag, to link to a local file on my computer? Regards Pichdude
  15. Pichdude

    Start exe-file from jsp page

    Thanks, but I want to run to run it on the client. Is that possible at all or are there restrictions for this in Windows or IE?
  16. Pichdude

    Start exe-file from jsp page

    Hi, First I would like to say that I am not writing any malicious code. Now to my issue that I hope someone can help me with. Is it possible to have a link, on a jsp-page, to an exe-file located on a common resource and have that software started? I do not want the exe to be downloaded to the...
  17. Pichdude

    Confirm JSF button click

    No, I think it is more of a JSF question. If any JSF implementation has this feature already or if its possible to use javascript on a JSF component to achive this.
  18. Pichdude

    Confirm JSF button click

    Hi, I am not sure if this is the correct forum for my JSF question, but I hope someone can answer me or direct me to the correct forum. Is it possible to have a confirm popup (for example use javascript confirm) on a button. The functionality I am looking for is that the user can click a button...
  19. Pichdude

    What does screenTop do?

    Stupid me forgot to post the link to the script I found using screenTop. http://blogs.x2line.com/al/articles/756.aspx The reason I use it is that I only want to run onunload when the user closes the browser with the "X", not the close-button I also have on the page. What I was wondering is...
  20. Pichdude

    What does screenTop do?

    Hi, I am using this script to capture the event when a user shuts down the webbrowser window using the "X". But is there anyone that can explain what "screenTop" actually do that makes this work? Regards Pichdude

Part and Inventory Search

Back
Top