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
Ankit SinghalAnkit Singhal 

Regarding pageblocktable in inlineedit mode

guys,

 

I have a Pageblocktable in inlineedit mode on vf page.

now if i edit some values in each row.

I want to access the list of values with updated values in controller method.

I dont want to update values in database and just want to pass them further.

 

 

 

<apex:pageblock mode="inlineedit">

<apex:pageblocktable value="{!accounts"} var=d>

<apex:column value="{!d.name}"/>

</apex:pageblocktable >

</apex:pageblock>

 

 

How to achieve the value of list accounts with updated values in controller.