I am current running MetaFrame XPe SP3 feature release 3 with Citrix Program Neighborhood (ICA Client)v10. Is their a way to have them all ready configured with an application set? I find myself having to go to each users account and configure the settings there.
I am trying to use the onClick event in a form to test to see how to to prevent the form action form be perfromed.
I the onClick line:
<input type="submit" name="submit" value="Submit" onClick="testaction()" /></p>
The form starts with:
<form name="appts" method="post" action=...
Found some reading material that helped solve the issue.
<script type="text/javascript">
function passVals(){
//used to get text of selected item in select tag
reqList = document.getElementById("req");
var full_name = reqList.options[reqList.selectedIndex].text;
//separate...
I have a simple select tag on a form
<select name="req" id="req' >
<option value="1">James Young</option>
<option value="2">Kebu Steward</option>
<option value="3">Randy Clarke</option>
</select>
How can I capture the text of the selected item.
example suppose "Kebu Steward" was selected by...
I tried code on the child form
function passVals() {
document.appts.req_f_name.value ='testing';
}
//appts is the name of the parent form
//req.f_name is the name of a text box on the parent form
Any ideas what I am missing?
thanks Glen, I am trying to build an external script and thus that example is one way to validate but I was look to validate it in the external script
I changed my tack to: <form onSubmit="passVals()" >
In the head of the html doc I have
<script>
function passVals() {
alert('testing');
}...
I am trying to test to see if a submit button was pressed on a form using
<script>
if(document.req.submit){
alert('testing');
}
</script>
the form code start with <form method="post" action="">
the submit button code is <input type="submit" id="submit" value="submit"
What am I missing...
I created a function to open another html page, I currently use the following code to accomplish this task
HTML code:
<input type="text" name="test" onclick="opentime()" />
External JS file code:
function opentime()
{...
I create a simple form that contains two text boxes and two radio buttons. Please view at the link below.
http://nucitytech.com/forms/TimeAMPM.htm
I added left margin space with "margin: 0 0 0 2em;" In Firefox and Netscape I get no padding with the added margin but in IE6 it creates padding...
I have a basic script that disable and enables twp input text boxes. It works in Firefox and Netscape but on in Internet Explorer 6
I call the external script in the html head using:
<script type="text/javascript" src="./include/enable_disable.js"></script>
I call the function using the...
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.