Hello,
I'm getting this error message (Microsoft JScript runtime error: Object doesn't support this property or method) every time I attempt to retrieve the row selected from the RadGrid control. The error message is thrown after clicking a record in the grid.
I noticed through reading other forms that this may be related to an outdated Telerik.Web.UI reference. Therefore, I have already updated my project Telerik.Web.UI references to the latest version in an attempt to fix this problem. My current Telerik.Web.UI version is 2010.3.1215.40. I'm running Visual Studio 2010.
<script type="text/javascript">
var grid;
function RowSelected(rowObject)
{
var selRow = this.GetCellByColumnUniqueName(rowObject,"Username"); <------ this is the line that is throwing the error.*
//here selRow.innerHTML will hold the value for the selected row user name
}
function GridCreated()
{
grid = this;
}
</script>
Thanks for your help,
Geoffrey Rees
I'm getting this error message (Microsoft JScript runtime error: Object doesn't support this property or method) every time I attempt to retrieve the row selected from the RadGrid control. The error message is thrown after clicking a record in the grid.
I noticed through reading other forms that this may be related to an outdated Telerik.Web.UI reference. Therefore, I have already updated my project Telerik.Web.UI references to the latest version in an attempt to fix this problem. My current Telerik.Web.UI version is 2010.3.1215.40. I'm running Visual Studio 2010.
<script type="text/javascript">
var grid;
function RowSelected(rowObject)
{
var selRow = this.GetCellByColumnUniqueName(rowObject,"Username"); <------ this is the line that is throwing the error.*
//here selRow.innerHTML will hold the value for the selected row user name
}
function GridCreated()
{
grid = this;
}
</script>
Thanks for your help,
Geoffrey Rees