Hi All,
I am new using Telerik controls
in my page i am using Radgrid controls and edit the radgrid "InPlace" mode.
I had one template column and three GridBoundcolumn.
In code behind how can i get the column value using vb.net
My aspx page is below
<telerik:RadGrid ID ="rgSkills" runat ="server" DataSourceID ="sdsEmployee" AutoGenerateColumns="False" EnableAjax="true" OnInsertCommand ="rgSkills_InsertCommand"
OnUpdateCommand ="rgSkills_UpdateCommand" OnNeedDataSource ="rgSkills_NeedDataSource"
EnableValidation ="True" GridLines="None">
<MasterTableView GridLines ="None" DataSourceID ="sdsEmployee" DataKeyNames ="emp_skill_set_id"
EditMode="Inplace"
AutoGenerateColumns ="False" CommandItemDisplay ="Top" runat ="server"
allowcustompaging="False" allownaturalsort="False" AllowAutomaticUpdates ="false">
<Columns>
<telerik:GridTemplateColumn DataField="Skill Description" HeaderText="Skills" >
<ItemTemplate>
<asp:LinkButton id="Skills" runat="server" text='<%# Eval("Skill Description") %>'
CommandName ="Update" />
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName ="EditCommandColumn"
EditText ="Edit" />
<telerik:GridBoundColumn UniqueName="Skill Description" DataField="Skill Description"
HeaderText="Skill Set Rating" ItemStyle-Font-Size ="Smaller" >
</telerik:GridBoundColumn>
<telerik:GridBoundColumn UniqueName="Comment" DataField="Comment" HeaderText="Comment"
ItemStyle-Font-Size ="Smaller" >
</telerik:GridBoundColumn>
'
'
'
'
In code behind is
proteced sub rgSkills_UpdateCommand(source As Object, e As GridCommandEventArgs)
{
'here how to get the boundcolumn value
}
end sub
thanks
psk