I want to call Radgrid Events manually Server side.
SaveButton.ascx
protected void SaveFormButton_Click(object sender, EventArgs e)
{
}
GridBatchEdit.ascx
protected void GridListBatchEditCommand(object sender, Telerik.Web.UI.GridBatchEditingEventArgs e)
{
}
SaveButton.ascx and GridBatchEdit.ascx are in one page and need to trigger GridListBatchEditCommand when SaveForm button is clicked in Server Side not Client Side.
Is there such a way to do this scenario ?
Thanks