Building on the tremendous success of the first release of Struts Studio and incorporating substantial feedback from the Struts community, Exadel, Inc. has now unveiled a powerful new Web Integrated Development Environment (WIDE) for Jakarta Struts:
Struts Studio Professional
Struts Studio...
I prefer method that Adobe Photoshop generates for roll-over images. I.e.
var preloadFlag = false;
function preloadImages() {
if (document.images) {
anyname1 = newImage("path_to_image_1");
anyname2 = newImage("path_to_image_2");
...
preloadFlag = true;
}
}
It...
Struts Studio is a GUI development tool for Jakarta Struts Framework. This tool allows to create new projects from scratch or work with already existing projects.
Using Struts Studio, you can view and edit struts-config.xml visually.
To read more about this IDE, go to...
You are right. Netscape 4.* does not like when popup window tries to close it. However, even Netscape leaves without noties if the close method is calling inside the parent window. So, if you want to close parent window just after the popup appears, you can insert the following code into the...
The parent window available from pop-up window with using window.opener. So, you try to close parent window with window.opener.close();
However, in this way parent window will rise a message box and ask do you really want to close parent window. To avoid this message for most browser use...
May be the following example help you:
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<TITLE></TITLE>
<SCRIPT>
function DeleteThing(){
document.all.iTable.innerHTML="";
}
function existingTest() {
alert("Table...
Apache is a Software Foundation Organization. Read www.apache.org for details.
Apache drives some Projects. One of the project is Jakarta - a Java-oriented project.
Tomcat is one of the Jakarta product. Read more here - http://jakarta.apache.org/tomcat/
Regards,
Sergey Smirnov...
<a href="hiddenlink.html" style="cursor: default">This is not a link, just underlined blue text :- )</a>
P.S. Some browsers, such Netscape 4.* and Opera 6.* do not support this style.
Regards,
Sergey Smirnov
http://forum.exadel.com
How many persons (e-mails) you have in your DB. If you have less than 100 records, it is possible to take them at once and put onto the page. In this way, you can use code shown above.
Otherwise, if you have huge number of records or you have another reason do not show emails on page, you...
When you use Response.write "postagin();", it does not mean that you call javascript function posttagin() from ASP. It just means that you insert some portion of code into the result page. This code will be executed later on client site (in client browser)
Browser constructs each page...
You try to submit the form when the form does not exist yet.
Create a javascript function and call it from body onload
Regards,
Sergey Smirnov
http://forum.exadel.com
Use value property to store e-mails and put selected value into text field when selected name is changed.
Example:
<form name="frm">
Select Person:
<select name="person" onchange="document.forms.frm.email.value=this.options[this.selectedIndex].value">...
One possible way is to use onload function for images. If image exists the onload events occurs. I used this method for our Product CD to check the new product version.
Look the following example:
<Script LANGUAGE="JavaScript">
function check(imgURL) {
var img=new Image()...
Just a small trick :-)
<Script LANGUAGE="JavaScript">
var wid=window.open(.........);
window.opener=wid;
window.close();
</script>
Regards,
Sergey Smirnov
Ask me directly at
http://forum.exadel.com
According to the source of the page, your input fields have the same name "T1". At least, they should be difference, such as T1, T2, T3
Aslo:
1) Add FORM tag around the table. It is not necessarily sometimes, but some browser will ignore the input field without FORM
2) Add javascript...
Usually, Refresh means reloading the current page into the browser. Current page is a page B in your case. What do mean when you say "refresh A"?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.