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

how to save the data of grid view in different id's????
hello
Can anybody help me regarding this topic..
actualy i want to dispaly my record in matrix form and want to save this... i do the displaying part but i have a problem while saving.
my code is
=======================================apex classs============================
=====================Visual Force page============================================
<table border="1" align="center">
<tr>
<td>
</td>
<apex:repeat value="{!Subjects}" id="repeat1" var="item">
<td>
<center><b><apex:outputField value="{!item.Subject__c}" id="theValue"/></b></center>
</td>
</apex:repeat>
</tr>
<apex:repeat value="{!Records}" id="repeat2" var="pitem">
<tr>
<td><center><b><apex:outputField value="{!pitem.Student_Name__c}" id="theValue"/></b></center></td>
<apex:repeat value="{!Subjects}" id="repeat3" var="item">
<td>
<center><b><apex:inputField value="{!item.Marks__c}" id="theValue"/></b></center>
</td>
</apex:repeat>
</tr>
</apex:repeat>
</table>
My objects are student profile from which i fetch student names, 2nd object is subject from where i fetch subject names and my current object is examination setup .
Student name/subjects sub1 sub2 sub3..........
sname1 inputfield(marks) inputfield(marks) inputfield(marks)
sname2 inputfield(marks) inputfield(marks) inputfield(marks)
this thing which i cant do is i dnt knw how to locate the marks with suject and sname while saving
please send me the correct code for this.....