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

how pass a list to controller and refresh pageblockTable with new data
I collect the id of checked items and want to pass it to my controller and after that I want to refresh the Pageblock table. Can somebody help?
function setFilter(obj){
if(obj.checked){
filterIds.push(obj.value);
}else{
var index = filterIds.indexOf(obj.value);
if (index > -1) {
filterIds.splice(index, 1);
}
}
RefreshTableX();
}
RefreshTableX(); is a public void method.
Thanks,
Check this out http://salesforce.stackexchange.com/questions/20631/refreshing-page-block-table-to-show-recent-values-from-database

Hi prolay,
The for the reply. But the checkbox is outside table and I don't use buttons inside the pageblock table.
Sent from Yahoo Mail on Android