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
Samuel JohnsonCBESamuel JohnsonCBE 

matrix table in visual force

I am trying to create a visualforce matrix chart that looks some thing like this..

User-added image

I would like to have it set that the columns and row headers are set, but want to have the other field editable. I will then create reports that look like this as well. Where is says PSI maybe have that editable as well. Do you have any suggestions on how to build this? 
Luiz PrandiniLuiz Prandini
Try to do like this

<tr>
  <td>
<apex:outputField value="{!value}" />
 </td>
  <td>
 <apex:inputField value="{!value2}" />
 </td>
</tr>