function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Suresh RaghuramSuresh Raghuram 

update pageblock row

hi community,

 

how can i update a pageblock table selected row(record) . there is a button or checkbox on each row.

 

I tried wrapper class, but not succeded.

 

the difference i noticed when i work on the online available wrapper class and my vfPage with wrapper class is , when is select a check box and click on button to process the check box going unchecked.  so ultimately there will no selected records to process.

 

Any help is appricaited.

Thanks.

 

 

prady-cmprady-cm
It could be easy for us to help you if posted the code
Suresh RaghuramSuresh Raghuram

Thanks for responding.

 

I found out where the mistake is going.

 

for populating the table i quried and populated the table suppose a method getContact(){ query}.

 

After making the necessary chages to the records on the table i had to call the table list in for loop.

 

but iam doing the followiing error

for(cContact con: getContact()){

}

Replaced the getContact() with the table list.

my problem solved