Posted on: 2/2/2014 5:03:24 PM | Views : 738

Hello Gurus,

   Here i have attached both GridView and RadGrid.
 Here getting the row values working in normal Gridview, but it is not working in RadGrid.

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <script type = "text/javascript"> function GetSelectedRow(lnk) { var row = lnk.parentNode.parentNode; var rowIndex = row.rowIndex - 1; var customerId = row.cells[0].inner ...

Go to the complete details ...