Jump to content

karthiseenu

Members
  • Posts

    14
  • Joined

  • Last visited

About karthiseenu

  • Birthday 09/07/1982

Contact Methods

  • AIM
    seenukarthi
  • MSN
    seenukarthi
  • Website URL
    http://
  • ICQ
    0
  • Yahoo
    seenukarthi

Profile Information

  • Location
    Chennai

karthiseenu's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Hai friends, I have to increse the page loading time out for internet explorer coz i am having a huge process which may take more than one hour to finish. Now it says page cannot be found after some time but the process is running in back ground. Please help me to solve this problem
  2. Hai Can any one help me in bulding charts in ajax
  3. Thanks is there any other way with out textbox
  4. No it should be like a text box i wants that type of editing
  5. Hai friends, I want to make the combobox as editable is there any way to do this
  6. Thanku My application is only works on internet explorer
  7. Thanku for ur reply. I am working in Java Server Faces in that every event like clicking a button post some value to the same page. I have to do some operation when closing that window. If there is any way to disable the window close button it is also helpfull for me.
  8. Hai the above solution is not working while i am post to the same page it is important because i am working with jsf.I try the following accordind to dan replyParent <html> <head> <script> var child; function childOpen(){ child = window.open("ClosingChild.html"); } function chkChild(){ alert(child.closed); } </script> </head> <body> <input type="button" onClick="childOpen();" value="Click"> </body></html> Child <html> <head> <script> var flag=0; function onClosing(){ if(flag == 1) { alert("Refreshed"); flag = 0; } else { alert("Closed"); var parent = window.opener; alert(parent); parent.chkChild(); } } function onPreClosing(){ flag = 1; } </script> </head> <body onDeactivate="onPreClosing()" onUnload="onClosing();"> <a onClick="window.navigate('ClosingChild.html?name=karthi');" style="cursor:hand">Same Page</a> </body></html>
  9. Hai Dan i did that with out any parent window <html> <head> <script> var flag=0; function onClosing(){ if(flag == 1) { alert("Refreshed"); flag = 0; } else { alert("Closed"); } } function onPreClosing(){ flag = 1; } </script> </head> <body onDeactivate="onPreClosing()" onUnload="onClosing();"> </body></html>
  10. Hai friends, I want to capture the window closing event. I tried the onUnload event but it also fired on document refresh. I wants to capture only window closing. can any one lead me to do this
  11. I want to place a div dynamicaly in the document occarding to the anchor tag which i clcked
  12. Hai friends i want to get the default height of the input text boxif any one know about that plz tell me
×
×
  • Create New...