VKinfotek Inc.
  • Us
    About Us
    Contact Us
  • FAQs
  • Ready Software
    Ready ERP ASP Core Software for Azure Cloud
    Ready Web ERP Software
    Ready ASP.Net Azure Software
    Ready C# SQL Server Accounting Software
    Ready ASP.Net MVC and EF Software
First slide
Earn $100/hour in USA! Click Here

How to restrict an item from being selected using GridView SelectedIndexChanging Event

When there is a need to restrict a row of a GridView from being selected by the user we use the SelectedIndexChanging event of the GridView control.

When a row's Select button is clicked, the SelectedIndexChanging event is raised. This event is raised before the GridView control handles the select operation.

To restrict a row of a GridView from being selected, we create an event-handling method that cancels the selection operation. The code given below creates and formats a GridView control.



<asp:gridview id="ItemsGridView" datasourceid="MyDataSource" 
autogeneratecolumns="true" autogenerateselectbutton="true" allowpaging="true" 
selectedindex="0" onselectedindexchanged="ItemsGridView_SelectedIndexChanged"
OnSelectedIndexChanging="ItemsGridView_SelectedIndexChanging"   
runat="server">
<selectedrowstyle backcolor="BlanchedAlmond" forecolor="DarkBlue" 
BorderColor="Beige" BorderStyle="Dotted" BorderWidth="3" 
Font-Size="Medium" font-bold="true"/>  
</asp:gridview>
<br/>
<asp:label id="Message"    forecolor="Red"    runat="server"/>
<asp:SqlDataSource ID="MyDataSource"  
ConnectionString="<%$Connectionstrings:ERPConnectionString%>"
SelectCommand="SELECT ItemID,ItemName,ItemType,ClStk FROM ItemTable" 
runat="server"/>

In the code given above, the method 'OnSelectedIndexChanging' of the GridView control is assigned to the event handler ItemsGridView_SelectedIndexChanging.

The following code is the event handler for the SelectedIndexChanging event. The GridViewSelectEventArgs object is passed to the event-handling method and enables us to determine the index of the row selected by the user. To cancel the selection operation, set the Cancel property of the GridViewSelectEventArgs object to 'true'.


void ItemsGridView_SelectedIndexChanging(Object sender, GridViewSelectEventArgs e)
{
	GridViewRow row = ItemsGridView.Rows[e.NewSelectedIndex];
	if (row.Cells[3].Text == "4")
	{	
		e.Cancel = true;
		Message.Text = "You cannot select " + row.Cells[2].Text + ".";
	}
}
To get the currently selected row, use the Rows collection of the GridView and the NewSelectedIndex property of the e argument. We cannot use the SelectedRow property of the GridView control because the SelectedIndexChanging event occurs before the select operation.

If the user selects an item which has the ItemType "4" (4 is chosen for this example), the select operation is cancelled and an error message is displayed. In this example, the second and third columns contain the ItemName and ItemType data respectively. We cancel the select operation by using the Cancel property.



GridView Articles
  • GridView AutoGenerateColumns property
  • Bind GridView control with SqlDataSource control
  • DataBinding in a GridView control
  • Binding a GridView programmatically with dataset
  • Binding a GridView programmatically with Generic List Collection
  • Using fields with the GridView control
  • Adding Boundfields to a GridView control
  • Adding button fields to a GridView control
  • Create Templatefields in a GridView control
  • Access a value using SelectedIndexChanged() event when a row in a GridView is selected
  • How to add a new row in the GridView control by using the GridView footer template
  • Gridview datakeynames
  • How to select a particular row in a GridView control using SelectedDataKey method
  • Formatting GridView control with CSS
  • GridView rowDataBound event

Become an Expert

Artificial Intelligence (AI) ERP Software Development Accounting Software ERP ASP Core

Learn More

Q1. What is Azure Platform?
GridView CommandField example
GridView and DetailsView Master/Detail page using SqlDataSource control
POCO overview and advantages - POCO class, Entity Framework in Enterprise Applications
Query entity data model using linq to entities
Difference between arraylist and list collection
How to create a Web service using Visual Studio.net
FormView DataBound Event
Calling base class constructor in C#
Convert a sequence to a generic list using ToList()method
ERP Software Development
Project ideas for students
Accounting Software
Creating an ASP.Net MVC 3 application
Using assemblies in .net applications
How to implement form validation using ASP.Net 2.0 Validation Controls
Constructors in Visual Basic.Net
People also viewed: cover image of book develop erp software using asp core and deploy to Azure Create your own ERP Software using ASP Core>>


  • SITEMAP
  • Terms of use
  • Testimonials

Back to top

Copyright © 2018 - All Rights Reserved - VKInfotek.com