I know this question has been handeled in similar situations, regarding ASP.Net, before. But as I did not understand the contexts and as those answers did not match to my Ext.Net component, I need to ask again.
In my case, I have an entity framework connect through my LinqDataSource. I have a GridPanel which has a Store including a JsonReader, in addition to that the GridPanel has a Selection model with the following code:
<SelectionModel>
<ext:RowSelectionModel ID="RowSelectionModel1" runat="server" SingleSelect="true">
<Listeners>
<RowSelect Handler="#{EditPanel}.getForm().loadRecord(record);#{UserForm}.record = record;" />
</Listeners>
</ext:RowSelectionModel>
</SelectionModel>
First question is, what does the RowSelect Handler do, or let's better say can someone please explain me that line? I copied that line from the example on the ext.net page and it gives me all the values from the selected row to my EditPanel, but I'm really not sure how that works.
My Second question is, I have 9 columns in my GridPanel which represent the Data from my Entity Framework. How can I get the data from the first column on the selected row?
Thanks in advance!