You need to sign in to do that
Don't have an account?

Get the row value of dyanamically generated table in javascript
Hello All,
I am displaying the values list of object using pageblock table.I have checkbox for eachrow in generated table now i want get the value of row whose checkbox is selected in javascript when user submits the form.
Please help me..
Thanks In Advance,
Sandip
Still I am not able to find out the solution ...
Please provide some inputs
For selecting all data you can use following javascript
function checkAll(cb)
{
var inputElem = document.getElementsByTagName("input");
for(var i=0; i<inputElem.length; i++)
{
if(inputElem[i].id.indexOf("checkedone")!=-1)
inputElem[i].checked = cb.checked;
}
}