or
<
ClientEvents OnGridCreated="ScrollToRow" OnRowSelecting="RowSelectingHandler" />
Then in the java script function, I have as shown below. And if I return "false", the code kept on processing. I think it may be a bug. In any case, I would like to stop processing, and how can I do it? Thanks in advance...protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowIndex > -1)
{
DataList myDataList = e.Row.FindControl("dl_Owner") as DataList; // Find control
myDataList.DataSource = Company.getCompanyListOwner(Convert.ToInt32(e.Row.Cells[0].Text)); //bind datalist
myDataList.DataBind();
}