1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
function requeteAjaxCompte(rAPage,ligne,redirection)
{
var xhr = getXhr();
xhr.onreadystatechange = function()
{
if(xhr.readyState == 4)
{
if(xhr.status == 200)
{
var leselect = xhr.responseText;
if(redirection=='liste')
{
if(leselect.indexOf('/')==-1)
{
var tLigne = new Array();
tLigne[0]=leselect;
}
else
var tLigne = leselect.split('/');
var eCheck = document.getElementsByName('checkPermissions[]');
alert(leselect);
for(var i = 0; i < eCheck.length; i++)
if(tLigne.in_array(eCheck[i].value))
eCheck[i].checked=true;
else
eCheck[i].checked=false;
}
}
else
alert('status : '+xhr.status+'\n reponse : '+xhr.statusText);
}
}
var selection=document.getElementById('select_compte');
ligne+='&idStyleCompte='+selection.options[selection.selectedIndex].parentNode.id+'&idCompte='+selection.options[selection.selectedIndex].value;
xhr.open("POST",rAPage,true);
xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
xhr.send(ligne);
} |