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 dencom 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: *

  • Users: Pichdude
  • Content: Threads
  • Order by date
  1. 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...
  2. 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
  3. 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
  4. 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
  5. 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...
  6. 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'...
  7. 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
  8. 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
  9. 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
  10. 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...
  11. 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...
  12. 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
  13. Pichdude

    EHcache in Hibernate

    Hi, This question is about using EHcache in Hibernate. I am wondering if it is possible to use the query cache for Hibernate when there are different user, with different sessions, that should get different results depending on user. My application retrieves a list from the database, and this...
  14. Pichdude

    Problems with special characters (åäö) in JavaScript

    Hi, I am having problem using special swedish charcters (åäö) in a javascript. I have a link name stored in a database, e.g. "Överföringar". When I use it in a Javascript on my jsp-page it turns out like this: &Ouml;verf&ouml;ringar. I have tried using character referencs instead, but i does...
  15. Pichdude

    Button open page i new window

    Hi, Is it possible to use the button-tag to open the page in a new window instead of in the same window? Regards Pichdude
  16. Pichdude

    Change places on parts on webpage

    Hi, I have a webpage that presents information in to columns, like this: | Information1 | Information2 | | 111 | 222 | | 111 | 222 | | 111 | 222 | | 111...
  17. Pichdude

    Compare dates

    Hi, I want to compare a date (that a user inputs) and validate that it is today or later. I create a Date from what the user inputs, but I want to know how I can compare it with the Date of today. If I user Calendar.getInstance().getTime() I get the exact time of now, e.g. 2006-01-16 13:01:40...
  18. Pichdude

    Run method at a certain time of the day

    Hi, I am wondering if it is possible to have a method run at a certain time of a day? I want to send and e-mail to all users that have an unanswered message stored in the database of the CRM system I am building. The message should be sent i.e. at 3PM every day. Regards Pichdude
  19. Pichdude

    Remove line breaks

    Hi, I am wondering if there is a tool in JBuilder for removing linebreaks in code? I have imported classes and now the code looks like this: import xxx; import xxx.xxx; import xxx.xxx.xxx; /** * Class description */ public class TestClass { private String xxx; private String yyy...
  20. Pichdude

    Switch ssi with javascript

    I want to be able to control which file is to be included in a page by help of javascript. Can I have links on index.htm, e.g. index.htm?id=page1 and index.htm?id=page2. Then when the visitor clicks a link the id-parameter is taken from the request and somehow placed in <!--#include...

Part and Inventory Search

Back
Top