Click here to Skip to main content
15,906,463 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Opening different files from the browser Pin
Anuradha61219-Dec-07 20:10
Anuradha61219-Dec-07 20:10 
GeneralRe: Opening different files from the browser Pin
N a v a n e e t h19-Dec-07 20:21
N a v a n e e t h19-Dec-07 20:21 
QuestionHow to call a javascript function from App_Code class [modified] Pin
Niya19-Dec-07 17:39
Niya19-Dec-07 17:39 
GeneralRe: How to call a javascript function from App_Code class Pin
N a v a n e e t h19-Dec-07 20:14
N a v a n e e t h19-Dec-07 20:14 
GeneralRe: How to call a javascript function from App_Code class Pin
Niya19-Dec-07 23:29
Niya19-Dec-07 23:29 
Questionhow to call a server side sub procedure through a javascript function Pin
jagan12319-Dec-07 17:37
jagan12319-Dec-07 17:37 
AnswerRe: how to call a server side sub procedure through a javascript function Pin
_AK_19-Dec-07 19:08
_AK_19-Dec-07 19:08 
GeneralChecking pbm in checkboxlist when we check the checkbox in grid Pin
SreejithAchutan19-Dec-07 17:09
SreejithAchutan19-Dec-07 17:09 
function ChkDelete(Value)
{
var ValChecked=Value.checked;
var ValID=Value.id;
var form=document.forms[0];
for(i=0;i<form.length;i++)
{
if(this!=null)
{
if (ValID.indexOf('CheckAll') != - 1)
{
if (ValChecked)

form.elements[i].checked = true;

else
form.elements[i].checked = false;
// alert('hai');
}
else if(ValID.indexOf('Delete')!=-1)
{
if(form.elements[i].checked==false)
form.elements[1].checked=false;
}

}
}
}



Hello Good Morning Everybody.


I put a grid view in a page ang put checkboxes in it to delete the particular row in grid.Also i put a checkall checkbox in the header template of grid.The javascript code for checking all the checkboxes are attached above.

My issue is ,also i insert a checkbox list in the same page below the gridview.When i click the checkall checkbox in the grid the chckbox list also will be checked and unchecked.For single selection its not a pbm.But for checking all its a big pbm .How i solve it.Please help me.Is any changes in the above code will cancel the effect of checking the checkboxlist.or any otehr javascript code will help it.Please help me.
GeneralObtaining the Request Object for a Web Service Pin
Skippums19-Dec-07 13:34
Skippums19-Dec-07 13:34 
AnswerRe: Obtaining the Request Object for a Web Service Pin
Skippums20-Dec-07 8:50
Skippums20-Dec-07 8:50 
GeneralAccessing Control from Master Page Pin
DotNetXenon19-Dec-07 10:04
DotNetXenon19-Dec-07 10:04 
GeneralRe: Accessing Control from Master Page Pin
pmarfleet19-Dec-07 10:55
pmarfleet19-Dec-07 10:55 
GeneralProblem Calling Web Service From Production Environment Pin
AdamNThompson19-Dec-07 10:01
AdamNThompson19-Dec-07 10:01 
GeneralTransparent GIFs Pin
Monin D.19-Dec-07 9:12
Monin D.19-Dec-07 9:12 
GeneralLinq Query to sort in Column-Header in GridView Pin
Terppe19-Dec-07 5:59
Terppe19-Dec-07 5:59 
Questionhow to convert .aspx page to .pdf document in asp.net [modified] Pin
gopal_Pandey19-Dec-07 4:12
gopal_Pandey19-Dec-07 4:12 
QuestionProblem With RegisterClientScriptResource Pin
scorpion_man198219-Dec-07 3:58
scorpion_man198219-Dec-07 3:58 
GeneralRe: Problem With RegisterClientScriptResource Pin
ToddHileHoffer19-Dec-07 4:44
ToddHileHoffer19-Dec-07 4:44 
GeneralRe: Problem With RegisterClientScriptResource Pin
scorpion_man198219-Dec-07 9:46
scorpion_man198219-Dec-07 9:46 
GeneralRe: Problem With RegisterClientScriptResource Pin
ToddHileHoffer20-Dec-07 1:22
ToddHileHoffer20-Dec-07 1:22 
GeneralGC.Collect question Pin
V.19-Dec-07 3:45
professionalV.19-Dec-07 3:45 
GeneralRe: GC.Collect question Pin
Paddy Boyd19-Dec-07 3:56
Paddy Boyd19-Dec-07 3:56 
GeneralRe: GC.Collect question Pin
V.19-Dec-07 4:18
professionalV.19-Dec-07 4:18 
GeneralRe: GC.Collect question Pin
ToddHileHoffer19-Dec-07 4:37
ToddHileHoffer19-Dec-07 4:37 
GeneralRe: GC.Collect question Pin
V.19-Dec-07 4:45
professionalV.19-Dec-07 4:45 

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.