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

    HTML Text Area + Edit text

    Hi, I am using HTML Text Area, inside the text area I disply some text in HTML with some span tags inside it. As it is a HTML text area the user cannot see those tags and I do not want the user to edit or delete those tags form the text area. What is the better way to handel this issue. Ex...
  2. gorgered

    Set the Focus on WYSIWYG Editor

    Hi, Thanks for the response, I have to change there code which I dont like but works for now :-) Thanks
  3. gorgered

    Keydown ESC capture function call

    Hi, I am using overlib.js lib to display the popups when clicked on a link. I am tyring to close the popup using ESC key. The blow code works but when I tab over the link and hit enter key to open the popup I have to press ESC key twice. Can I make it close by pressing ESC key only once...
  4. gorgered

    Set the Focus on WYSIWYG Editor

    Hi, We are currenlty using jspell Iframe WYSIWYG Editor in our applicaiton. I am trying to set the foucs inside the editor after the page loaded. onLoad of the body I am setting the foucs on to the textarea. It is seting the foucs but the WYSIWYG Editor loads after that the focus is getting...
  5. gorgered

    Eval to evaluate javascript function

    Hi, We are currently using some UI framework called UIX. This UI will write all the JavaScript functions on the generated HTML page. What this UI is doing is it is writting some javascript functions on to the page which I want to use in my javascript. On the HTML page it writes function as a...
  6. gorgered

    Calculate time taken to load a page

    Hi, I would like to know the time taken to render the page on to browser using javascript? How can I do this I need some hints so that I can start off. Thanks Gorge
  7. gorgered

    innerHTML not getting quotes ?

    Hi, Thanks for quick responses, Well what I am trying to do? I have some HTML content that comes from the DB which has span tag's and id of each span tag is PK of the table. Using the JavaScript I have to modify the innerHTML of the each span tag and with dynamic values that user enters into...
  8. gorgered

    innerHTML not getting quotes ?

    Hi, I have iFrame in which I have a div and the contents of the div are dynamically changed using javascript. When I use innerHTML it clears quotes. So is there any way that I can get the contents of the tag? <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE>...
  9. gorgered

    Changing Font for the generated number in Numbered List using iText

    Thanks for the response, I am using iText not JFO and apparently iText is not so good with RTF yet but when I run the same code generation PDF it does a great job. Gorge
  10. gorgered

    Extract HTML tags from String using Regular Expression

    Hi, I am very new to regular expressions and I need some of your help. String htmlString = "The values for Key1 is <span id=\"key1\">value1</span> and for Key2 is <span id=\"key2\">Value2</span>."; Output form the reg exp should be the html tags. key1:value1 key2:value2 I looked at the...
  11. gorgered

    Changing Font for the generated number in Numbered List using iText

    Hi, I am creating a Numbered List in RTF using iText. It generates the list properly but the numbering is in different font i.e.., "Times New Roman" and text is in "Arial". The question is how do I set uniform font for the list for both generated numbers and list text? Help is greatly...
  12. gorgered

    Dynamic Rows + Ajax InplaceEditor

    Hi, I am using Ajax.InPlaceEditor from http://script.aculo.us/ to edit a row in a table. I also have a requirment to create dynamic rows to the table. I am able to create the rows but I am unable create new Ajax.InPlaceEditor class instance for each row. Here is the code <html> <head>...
  13. gorgered

    Prompting a User to Save When Leaving a Page

    Hi, I wanted to some thing similar to what this article was doing, http://www.4guysfromrolla.com/webtech/100604-1.shtml Is there any better solution than this? As it is difficult to impelement this is in each and every page for a project which is alreay in production and which has more than 50...
  14. gorgered

    How to make sure Popup window remains on Top?

    Hi, On a page I have a button onClick of the button I open a popup window and at the same time I submit the parent window. How do I make sure the popup window stays on top. /* This function will check the status and opens a new popup 1. Status == Pending open new popup window...
  15. gorgered

    set focus on popup window

    Hi, Sorry there is a typo in the function call Plz ignore that var flag = window.confrim("This will set the status as Active");
  16. gorgered

    set focus on popup window

    Hi, On a page I have a button onClick of the button I open a popup window and at the same time I submit the parent window. How do I make sure the popup window stays on top. /* This function will check the status and opens a new popup 1. Status == Pending open new popup window...
  17. gorgered

    Ajax Autocompleter passing params (script.aculo.us )

    Hi, Got the solution, had to change the source of the lib. I defenetly would like to know how to extend Autocompleter insted fo changing the code. Thanks Gorge
  18. gorgered

    Ajax Autocompleter passing params (script.aculo.us )

    Hi, I am using script.aculo.us javascript for Autocompleter for Suggest Field. Doc is below http://wiki.script.aculo.us/scriptaculous/show/Ajax.Autocompleter It works fine, but I have an issue for which I need help. Here is what I am doing. I have a state select box, when user selects the...
  19. gorgered

    How to set a value from opener window

    Hi, The problem is that the form is generated dynamically from DB. I cannot change it now as a lot of other things are depedent on that. But I can pass a id for the text field as param. But the question is can I access that element with ID using window.opener Thanks Gorge
  20. gorgered

    How to set a value from opener window

    Hi, I have to set the value of a textbox in a parent window from child window. The problem I am having is that the text field names in the parent window are numaric and when I am trying to set the value its not able to identify that html element. Here is what I have, the openWindow will popup...

Part and Inventory Search

Back
Top