How to move a table with N rows and find the values specific to each DropDownList ?
Itriedthecodebelow,butwithoutsuccess.
functionValidarStatusGrid(){vartemp,td;vartable=$("tbPedidos");
var status = $("#sclStatusGrid");
temp = document.getElementById('tbPedidos').getElementsByTagName('tr');
for (var i = 0; i < temp.length + 1; i++) {
td += temp[i];
}
}