Hi, I am using the new AJAX suite to redevelop an online app previously coded for the asp.net suite. The new suite looks great and is far easier to code.
I have a two tier table and need to identify when the child table is selected, I have implemented the "OnRowSelecting" event code but have been unable to find the property to get the rows parent table name.
ASP.NET code was as follows:
<ClientEvents OnRowSelected="RowSelected" OnRowSelecting="RowSelectingHandler" />
function RowSelectingHandler(index)
{
if (this.Name == "Master")
{
return false;
}
}
Can you supply the equivelant code for the AJAX suite please.
I have a two tier table and need to identify when the child table is selected, I have implemented the "OnRowSelecting" event code but have been unable to find the property to get the rows parent table name.
ASP.NET code was as follows:
<ClientEvents OnRowSelected="RowSelected" OnRowSelecting="RowSelectingHandler" />
function RowSelectingHandler(index)
{
if (this.Name == "Master")
{
return false;
}
}
Can you supply the equivelant code for the AJAX suite please.