Click here to Skip to main content
15,911,360 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: How to Commnuicate with .net to javaServlat Pin
Nitin S30-Oct-09 6:57
professionalNitin S30-Oct-09 6:57 
GeneralRe: How to Commnuicate with .net to javaServlat Pin
Abhishek Sur30-Oct-09 9:41
professionalAbhishek Sur30-Oct-09 9:41 
GeneralRe: How to Commnuicate with .net to javaServlat Pin
Oakman3-Nov-09 12:12
Oakman3-Nov-09 12:12 
QuestionWhether API can be used in Javascript Pin
sanuji29-Oct-09 17:51
sanuji29-Oct-09 17:51 
AnswerRe: Whether API can be used in Javascript Pin
Christian Graus29-Oct-09 19:00
protectorChristian Graus29-Oct-09 19:00 
GeneralRe: Whether API can be used in Javascript Pin
sanuji29-Oct-09 22:55
sanuji29-Oct-09 22:55 
GeneralRe: Whether API can be used in Javascript Pin
Covean30-Oct-09 1:59
Covean30-Oct-09 1:59 
QuestionCheck all doesn't work with one row in javascript Pin
condemnity28-Oct-09 17:59
condemnity28-Oct-09 17:59 
Check this out. I find it to be extremely peculiar and very frustrating. I've downloaded a few scripts to check all of the checkboxes in a form. All of them have had the same issue. When I have one value for a checkbox, the function to check all no longer works. When I have more than one value for the checkbox, it works. Take the code below as an example. If you click the "Check All" button, it's not working. Yet, take the line of HTML that has the checkbox, copy it to the line after, reload and click the button again. It will work! What kind of crazy voodoo is this? One checkbox value isn't valid or something?




<HTML>

<head>

<SCRIPT LANGUAGE="JavaScript">

<!-- 	
// by Nannette Thacker
// http://www.shiningstar.net
// -->

<!-- Begin
function checkAll(field)
{
for (i = 0; i < field.length; i++)
	field[i].checked = true ;
}

function uncheckAll(field)
{
for (i = 0; i < field.length; i++)
	field[i].checked = false ;
}
//  End -->
</script>

</head>
<body>
Here is the HTML:

<form name="myform" action="checkboxes.asp" method="post">
<b>Your Favorite Scripts & Languages</b><br>
<input type="checkbox" name="list" value="1">Java<br>

<input type="button" name="CheckAll" value="Check All" onClick="checkAll(document.myform.list)">
<input type="button" name="UnCheckAll" value="Uncheck All" onClick="uncheckAll(document.myform.list)">
<br>
</form>

</body>
</html>




AnswerRe: Check all doesn't work with one row in javascript Pin
enhzflep29-Oct-09 2:23
enhzflep29-Oct-09 2:23 
GeneralRe: Check all doesn't work with one row in javascript Pin
condemnity29-Oct-09 4:22
condemnity29-Oct-09 4:22 
GeneralRe: Check all doesn't work with one row in javascript Pin
enhzflep29-Oct-09 9:00
enhzflep29-Oct-09 9:00 
GeneralRe: Check all doesn't work with one row in javascript [modified] Pin
boopathiduraisamy30-Oct-09 2:10
boopathiduraisamy30-Oct-09 2:10 
GeneralRe: Check all doesn't work with one row in javascript Pin
enhzflep30-Oct-09 2:28
enhzflep30-Oct-09 2:28 
QuestionEnabling Default Document Pin
www.Developerof.NET28-Oct-09 9:17
www.Developerof.NET28-Oct-09 9:17 
AnswerRe: Enabling Default Document Pin
Marc Firth28-Oct-09 23:09
Marc Firth28-Oct-09 23:09 
QuestionCrystal Reports Export to PDF not working Pin
Tamimi - Code28-Oct-09 8:07
Tamimi - Code28-Oct-09 8:07 
QuestionRe: Crystal Reports Export to PDF not working Pin
Jörgen Andersson29-Oct-09 1:49
professionalJörgen Andersson29-Oct-09 1:49 
AnswerRe: Crystal Reports Export to PDF not working Pin
Tamimi - Code30-Oct-09 0:49
Tamimi - Code30-Oct-09 0:49 
GeneralRe: Crystal Reports Export to PDF not working Pin
Jörgen Andersson30-Oct-09 1:09
professionalJörgen Andersson30-Oct-09 1:09 
GeneralRe: Crystal Reports Export to PDF not working Pin
Tamimi - Code30-Oct-09 3:57
Tamimi - Code30-Oct-09 3:57 
GeneralRe: Crystal Reports Export to PDF not working Pin
N.Surendra Prasad12-Nov-09 0:34
N.Surendra Prasad12-Nov-09 0:34 
QuestionASP(Tinymceeditor) Pin
rajiv_kadam28-Oct-09 1:03
rajiv_kadam28-Oct-09 1:03 
AnswerRe: ASP(Tinymceeditor) Pin
Ashfield29-Oct-09 2:57
Ashfield29-Oct-09 2:57 
QuestionOnly 1st page of wikipedia gets printed Pin
Sharadb.adobe27-Oct-09 23:48
Sharadb.adobe27-Oct-09 23:48 
QuestionWhat is the common Calendar synchronization principle? Pin
Pradeep kumar.V27-Oct-09 22:15
Pradeep kumar.V27-Oct-09 22:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.