J'ai un contrôle utilisateur "SettingsControl" contenant un ajax: CollapsiblePanelExtender qui à son tour a un GridView (gridView) et checkBoxes. En plus de GridView, nous avons deux LinkButtons "Select All" et "Clear All". J'ai écrit pour activer tout sélectionner et effacer toutes les fonctionnalités. Sélectionner tout doit sélectionner toutes les lignes de la grille en appelant le code JavaScript suivant écrit sur le fichier .aspx Client.Impossible d'accéder au contrôle enfant avec le contrôle utilisateur en utilisant javascript
function SelectAll(chk)
{
//get reference of GridView control
var grid = document.getElementById('<%= SettingsControl1.FindControl("gridView").ClientID %>');
//variable to contain the cell of the grid
var cell;
if (grid.rows.length > 0)
{
//loop starts from 1. rows[0] points to the header.
for (i=1; i<grid.rows.length; i++)
{
//get the reference of first column
cell = grid.rows[i].cells[0];
//loop according to the number of childNodes in the cell
for (j=0; j<cell.childNodes.length; j++)
{
//if childNode type is CheckBox
if (cell.childNodes[j].type =="checkbox" && cell.childNodes[j].id.indexOf('chkSel')!=-1)
{
//assign the status of the Select All checkbox to the cell checkbox within the grid
cell.childNodes[j].checked = chk;
}
}
}
}
}
Je ne suis pas en mesure d'accéder à la commande usercontrol ou à tout élément de contrôle utilisateur du côté client. Je ne suis pas sûr de savoir comment réaliser cette fonctionnalité.
La page .aspx cal contrôle utilisateur comme:
<uc1:SettingsControl ID="SettingsControl1" runat="server" />
!!!! S'IL VOUS PLAÎT AIDER