Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Nov 05, 2012 11:13 AM by Nirmal kumar Gnana sekaran
Member
26 Points
33 Posts
Nov 05, 2012 10:49 AM|LINK
I am using Telerik-radGrid, In that grid i am using
<EditFormSettings EditFormType="Template">
some code
</EditFormSettings>
while clicking the edit button, i can able to bind whatever, the problem is I don't know how to find button event which is inside the edit.
Nov 05, 2012 11:13 AM|LINK
protected void RadGridItemCommand(object sender, GridCommandEventArgs e) { IUserPresenter presenter = new UserPresenter(this); if (e.CommandName == "Update") { } else if (e.CommandName == "Edit") { } else if (e.CommandName == "T") { } } aspx <asp:TextBox ID="TextBox1" runat="server" TextMode="MultiLine"></asp:TextBox> <asp:Button ID="Button1" CommandName="T" runat="server" Text="Button" /> The following link http://www.telerik.com/help/aspnet-ajax/grid-command-reference.html helped to solve this problem.
Nirmal kumar...
Member
26 Points
33 Posts
how to find button event which is inside the Telerik-radgrid edit
Nov 05, 2012 10:49 AM|LINK
I am using Telerik-radGrid, In that grid i am using
<EditFormSettings EditFormType="Template">
some code
</EditFormSettings>
while clicking the edit button, i can able to bind whatever, the problem is I don't know how to find button event which is inside the edit.
Nirmal kumar...
Member
26 Points
33 Posts
Re: how to find button event which is inside the Telerik-radgrid edit
Nov 05, 2012 11:13 AM|LINK
protected void RadGridItemCommand(object sender, GridCommandEventArgs e) { IUserPresenter presenter = new UserPresenter(this); if (e.CommandName == "Update") { } else if (e.CommandName == "Edit") { } else if (e.CommandName == "T") { } } aspx <asp:TextBox ID="TextBox1" runat="server" TextMode="MultiLine"></asp:TextBox> <asp:Button ID="Button1" CommandName="T" runat="server" Text="Button" /> The following link http://www.telerik.com/help/aspnet-ajax/grid-command-reference.html helped to solve this problem.