473,761 Members | 7,290 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

DataGrid.Select edIndex is always -1

js
I have a DataGrid with a command button on the first column of the
DataGrid. The DataGrid is databound to a dataset with DataKeyFiled
bound to "ControlNum ber" field in the dataset. I am trying to save the
row's ControlNumber to a page level variable when the corresponding
item command is clicked . However, no matter what I do, the page
property is alway blank.

I also tried use CheckBox in the ItemTemplate. The CheckBox's
AutoPostBack is set to false. Another Command button outside the
DataGrid is used do the postback. Strangely, even I have one box
checked, upon post back the SelectedIndex is always -1.

Does anyone know how to save the "ControlNum ber" to the page variable
strControlNumbe r? Thanks.

The following is the event handler for the DataGrid's OnItemCommand
event.

////////// CodeBehind partial content /////////
public class CustomPaging : System.Web.UI.P age
protected string strControlNumbe r;
public string ControlNumber
{
get
{
if (strControlNumb er == null)
return "no value";
else
return strControlNumbe r;
}
}
private void MyDataGrid_Item Command(object source,
System.Web.UI.W ebControls.Data GridCommandEven tArgs e)
{
TableCell CellControlNumb er = e.Item.Cells[1];
strControlNumbe r = CellControlNumb er.Text;
Server.Transfer ("inventory.asp x");
}

private void btnConfirmSelec tion_Click(obje ct sender, System.EventArg s
e)
{
strControlNumbe r = MyDataGrid.Sele ctedIndex.ToStr ing();
Server.Transfer ("inventory.asp x");
}

/////////// ASPX partial content /////////
<asp:button id="btnConfirmS election" runat="server" Text="Confirm
Selection"/>
<asp:datagrid id="MyDataGrid " runat="server" CssClass="Inven toryTable"
AutoGenerateCol umns="False"
AllowSorting="T rue">
<Columns>
<asp:TemplateCo lumn>
<ItemTemplate >
<asp:Checkbox ID="chkSelected " Runat="server"/>
<asp:Button Text="Select" runat="server" />
</ItemTemplate>
</asp:TemplateCol umn>
<asp:TemplateCo lumn>
<HeaderTemplate >Control<br />Number</HeaderTemplate>
<ItemTemplate >
<%# DataBinder.Eval (Container.Data Item, "ControlNumber" ) %>
</ItemTemplate>
</asp:TemplateCol umn>
</Columns>
</asp:datagrid>

Nov 19 '05 #1
0 1425

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
35948
by: R Agam | last post by:
How do I get the selected Rows index in the DataGrid? Thanks, Ronen
0
1923
by: Shravan | last post by:
Hi, I have a custom datagrid extended from .Net datagrid, where I want vertical scrollbar to be visible always, for that I handled visiblechanged of VerticalScrollbar and making it visible whenever it is made invisible. As far as this, it is OK, ther vertical scrollbar is visible always. But the problem comes when I am horizontally scrolling the grid, it scrolls only to the area where the last column is being overlapped by the vertical...
0
1148
by: Jeff Reed | last post by:
I have this in my coding for a DataGrid: <EditItemTemplate> <asp:DropDownList id="eCategoryList" runat="server" CssClass="selectBoxSmall" SelectedIndex='<%# DataBinder.Eval(Container.DataItem), "Category_FK"%>' DataValueField="Category_PK" DataTextField="Category" DataSource="<%#eCATdv%>"> </asp:DropDownList> </EditItemTemplate>
0
897
by: Alberto Teixeira | last post by:
Hi, I have a bound datagrid. I need to be able to select a row by clicking any of the cells and have it fire of the SelectedIndexChanged event. How can I do this? Thanks Alberto
5
3395
by: js | last post by:
I am having a problem with a dynamicly added DataGrid that always shows the first data page even the message in the DataGrid.PreRender shows the correct datapage as the DropDownList control's SelectedIndex. The DataGrid CurrentPageIndex is controlled by a DropDownList control. Anyone knows what might be going wrong? Thanks. The addDataGrid() is fired by the following 3 events: private void btnLookup_Click(object sender,...
7
3584
by: Joel Reinford | last post by:
I am looking for a way to set the selectedindex of a datagrid based on the datakey value. For example given this grid with a datakey of OrderID: OrderID Item 54 A 98 B 102 C 263 A
2
1163
by: Ryan Liu | last post by:
private void dt_RowDeleted(object sender, DataRowChangeEventArgs e) { int id= (int)e.Row; if(id >5) { e.Row.RejectChanges(); MessageBox.Show(this, "Can not delete!" + id); }
0
1331
by: Kim | last post by:
Im having a problem with one of my datagrids. Basically the datagrid has paging included in it and when a user clicks on page other than the first page and the user selects a row the value is stored but the problem is the value is wrong its still getting the value from the first page. I have view state enabled on both page and datagrid. Im not sure whats wrong, any help will be greatly appreciated
1
1803
by: pieandpeas | last post by:
he selectedindex of my gridview is always one behind for example, if i click on the EDIT.gif on row 1, then 5 , then 7, if i break the code and check the selectedindex, it is equal to 5. if i selected a different row, and then checked the selectedindex again, it would be equal to 7. i've checked a few posts and other people seem to have a problem with the selectedindex being one behind the current selection, anyway i'm stuck :-( here is my...
0
9531
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10115
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9905
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8780
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7332
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6609
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5373
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3881
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2752
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.