Click here to Skip to main content
16,004,977 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to change the stored procedure dynamically? Pin
Affan Toor28-Sep-07 0:23
Affan Toor28-Sep-07 0:23 
QuestionASP.net TreeView Problem in Mozilla Pin
kapil bhatnagar26-Sep-07 0:42
kapil bhatnagar26-Sep-07 0:42 
QuestionDataGrid 's Checkbox checked on Button click Pin
That's Aragon25-Sep-07 23:50
That's Aragon25-Sep-07 23:50 
AnswerRe: DataGrid 's Checkbox checked on Button click Pin
varshavmane25-Sep-07 23:55
varshavmane25-Sep-07 23:55 
AnswerRe: DataGrid 's Checkbox checked on Button click Pin
Sathesh Sakthivel25-Sep-07 23:56
Sathesh Sakthivel25-Sep-07 23:56 
AnswerRe: DataGrid 's Checkbox checked on Button click Pin
monu nair26-Sep-07 0:02
monu nair26-Sep-07 0:02 
AnswerRe: DataGrid 's Checkbox checked on Button click Pin
Imran Khan Pathan26-Sep-07 0:24
Imran Khan Pathan26-Sep-07 0:24 
AnswerRe: DataGrid 's Checkbox checked on Button click Pin
kapil bhatnagar26-Sep-07 0:56
kapil bhatnagar26-Sep-07 0:56 
pass the datagrid name via the codebehind: btnCheckAll.Attributes.Add("OnClick","javascript:return CheckAll("dgdGrid");");

function CheckAll(dataGridName)
{
var ChkState = true;
//count the no. of rows in the DataGrid List
var count = document.getElementById(dataGridName).rows.length;
for(i = 2;i<=count+1; i++)
{
var id = dataGridName+"__ctl" + i + "_chkSelect";
var elem = document.getElementById(id);
elem.checked = ChkState ;
}
}

where "chkSelect" will be the name of the checkbox as mentioned in the item tempelate column in the html code for the datagrid.


Hope this helps !!
AnswerRe: DataGrid 's Checkbox checked on Button click Pin
That's Aragon26-Sep-07 2:17
That's Aragon26-Sep-07 2:17 
QuestionMoving data from one Listbox to another Listbox Pin
Sivan.G25-Sep-07 23:46
Sivan.G25-Sep-07 23:46 
AnswerRe: Moving data from one Listbox to another Listbox Pin
Sandeep Akhare25-Sep-07 23:51
Sandeep Akhare25-Sep-07 23:51 
AnswerRe: Moving data from one Listbox to another Listbox Pin
here2learn26-Sep-07 0:33
here2learn26-Sep-07 0:33 
AnswerRe: Moving data from one Listbox to another Listbox Pin
sudhasini26-Sep-07 0:38
sudhasini26-Sep-07 0:38 
GeneralRe: Moving data from one Listbox to another Listbox Pin
Sivan.G26-Sep-07 0:45
Sivan.G26-Sep-07 0:45 
Questionhow to change activeviewindex of a multiview from javascript Pin
here2learn25-Sep-07 23:39
here2learn25-Sep-07 23:39 
Questionenterprise library doubt Pin
saravanan0525-Sep-07 23:18
saravanan0525-Sep-07 23:18 
AnswerRe: enterprise library doubt Pin
Sandeep Akhare25-Sep-07 23:20
Sandeep Akhare25-Sep-07 23:20 
AnswerRe: enterprise library doubt Pin
monu nair25-Sep-07 23:28
monu nair25-Sep-07 23:28 
AnswerRe: enterprise library doubt Pin
Sathesh Sakthivel25-Sep-07 23:29
Sathesh Sakthivel25-Sep-07 23:29 
AnswerRe: enterprise library doubt Pin
saravanan0525-Sep-07 23:33
saravanan0525-Sep-07 23:33 
GeneralRe: enterprise library doubt Pin
monu nair25-Sep-07 23:37
monu nair25-Sep-07 23:37 
GeneralRe: enterprise library doubt Pin
saravanan0525-Sep-07 23:47
saravanan0525-Sep-07 23:47 
GeneralRe: enterprise library doubt Pin
Sathesh Sakthivel25-Sep-07 23:52
Sathesh Sakthivel25-Sep-07 23:52 
GeneralRe: enterprise library doubt Pin
saravanan0526-Sep-07 0:14
saravanan0526-Sep-07 0:14 
GeneralRe: enterprise library doubt Pin
Sathesh Sakthivel26-Sep-07 0:20
Sathesh Sakthivel26-Sep-07 0:20 

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.