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. palchuri

    Display images dynamically with various colors

    I don't think you understood my question correctly, May be I haven't explained it correctly. My requirement is to have a single GIF file which is common to all clients and should be able to pass colors to render the image. If I can do some how then I don't need to maintain multiple copies of...
  2. palchuri

    Display images dynamically with various colors

    Hi All, I don't know this is the right place to post this question. Here is my requirement. We are building an application which supports multiple clients. In our application there are about 50-60 images. As of now we are building all these images for each client because each client uses...
  3. palchuri

    How to detect/set JRE

    I found a interesting link of Sun's site, I am not sure How can I use it. http://forum.java.sun.com/thread.jspa?threadID=168544&start=0
  4. palchuri

    How to detect/set JRE

    Hi All, I have a strange requirement. I have mulitple JRE's installed on my system like microsoft,sun ...etc. I have to connect two external applications, one application works with microsoft while as other only works with sun jre. When I open new popup window, some how I have to set...
  5. palchuri

    How to access URL parameters

    May be it is my ignorance. How do I know the user has clicked on that link. Somehow I would be able to identify that action has performed on the function handleOnClose() which will be invoked on onbeforeunload. Regards Shri
  6. palchuri

    How to access URL parameters

    document.location.search is giving the content of address bar not the URL I am trying to invoke in a popup. Any other suggestions.
  7. palchuri

    Expected ; JS Error on SRC tag with external URL

    You are correct, looks like it is bacause of authentication.
  8. palchuri

    How to access URL parameters

    I don't think so QueryString works in this scenario. In the example it was given reading the parameter from the form submission. var qs = new Querystring(); var face=qs.get('face','Times New Roman'); Here "face" is one of the form parameter. My requirement is read the parameter from the...
  9. palchuri

    How to access URL parameters

    I tried , I am getting the value of Action parameter as null. Here is how I did. function handleOnClose() { alert("123"); // I want to access the value for Action Parameter of the URL alert("value="+ new Querystring().get("Action")); } Am I doing something wrong? Shri
  10. palchuri

    How to access URL parameters

    Hi All, I did some research on the internet before posting the question on this forum. I didn't find useful link. Any help is appreciated. javascript function handleOnClose is invoked on body onbeforeunload. In that I would like access value for the action parameter the url...
  11. palchuri

    Expected ; JS Error on SRC tag with external URL

    Snippet which is giving JS error. <tr> <td align="right"> <%if(_ddStatus == ARebalanceLookup.DOC_DEVELOPER_ENABLED){ %> <script language="javascript" src="https://www28.qa.advisorcompass.com/adv_capl/applauncher/launcher.js"> ---This part is giving error? Error apprears on window status bar...
  12. palchuri

    Expected ; JS Error on SRC tag with external URL

    In the same JSP file I am changing the SRC URL. This is JS located on external application, I don't even know what would be the content of JS file. I can't reach from our dev environment. Still my question is why I getting error during the include because I am not invoking any functions on the...
  13. palchuri

    Expected ; JS Error on SRC tag with external URL

    Hi, I have a requirement to invoke external js on a given JSP. This is how I am including the javascipt. <script language="javascript" src="https://www28.qa.xxx.com/adv_capl/abc/abc.js"></script> I am getting the following error. Line 4 Char 13 Expected ; Code 0 URL xxxxxxxxxxxxx...
  14. palchuri

    How to handle external application unavialability

    Thanks guys for your help. I used try block because it is simple.
  15. palchuri

    How to handle external application unavialability

    <HTML> <HEAD> <TITLE>A document with SCRIPT</TITLE> <META http-equiv="Content-Script-Type" content="text/tcl"> <SCRIPT type="text/javascript" src="http://someplace.com/laucher.js"> </SCRIPT> </HEAD> <BODY> <SCRIPT type="text/javascript"> if(isAppAvailable('code')){ // do something }else{...
  16. palchuri

    clone index in WebSphere5

    How to find clone index in WebSphere5. I do have documentation for was3.5, But I don't find for was5. http://www-128.ibm.com/developerworks/library/it/it-0801art30/

Part and Inventory Search

Back
Top