Asp.net sets the selected row of the GridView

Source: Internet
Author: User

<Script type = "text/javascript">
Var currentRowId = 0;
Function SelectRow ()
{
If (event. keyCode = 40)
MarkRow (currentRowId + 1 );
Else if (event. keyCode = 38)
MarkRow (currentRowId-1 );
}
Function MarkRow (rowId)
{
If (document. getElementById (rowId) = null)
Return;
If (document. getElementById (currentRowId )! = Null)
Document. getElementById (currentRowId). style. backgroundColor = '# ffff ';
CurrentRowId = rowId;
Document. getElementById (rowId). style. backgroundColor = '# ff0000 ';
}
</Script>
Then, in the rowDataBound of the gridview, add the event processing function for processing keys and select the event when you click a row with the mouse.
Protected void GridView1_RowDataBound (object sender, GridViewRowEventArgs e)
{
If (e. Row. RowType = DataControlRowType. DataRow)
{
E. Row. Attributes. Add ("id", _ I. ToString ());
E. Row. Attributes. Add ("onKeyDown", "SelectRow ();");
E. Row. Attributes. Add ("onClick", "MarkRow (" + _ I. ToString () + ");");
_ I ++;
}
}
When a row is clicked, It is selected directly, and then the direction keys are moved to switch to different selected rows. If you press the direction keys directly, it is marked from the first row.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.