| Thread | Last Post | Replies |
|
| --- retrieving text from a selected datagrid cell --- | 08 Jul 2003 15:19 GMT | 2 |
this was working Dim szMsgNumber = db_grid.SelectedItem.Cells(0).Text until i changed the first column (at index 0) to a ASP:ButtonColumn from a boundcolumn...
|
| Textbox Text in Datagrid Returning to Original Value | 08 Jul 2003 13:52 GMT | 1 |
I have a datagrid with 4 columns bound and one 'Quantity' textbox column. Is there some way to bind the text in the textbox column to a property of the "items" in my datagrid (I have a separate item class that represents one item)? I have tried setting the text of the
|
| Data only populated on first page | 08 Jul 2003 12:08 GMT | 5 |
I have a user control that I am using within a datagrid to display many instances of this control w/ paging. I'm using the DataBinder.Eval to set the properties of the control within the aspx page.
|
| Sorting with Paging | 07 Jul 2003 14:22 GMT | 2 |
When I tried to implement sorting on Datagrid that has paging is sorts only the displayed page (When I navigate to another page It looses the sorting ) , Does anyone has idea about how to sort on all pages at once Thanx
|
| numbering rows in datagrid | 07 Jul 2003 13:49 GMT | 2 |
Dear ASP.NET Programmers, I am using the datagrid control (grdSPs) to display database data. The datagrid allows paging. What I am trying to do is to insert row numbers automatically. I can do this, but with every consequent page, the index
|
| DataGrid SortCommand not firing using code-behind?? | 06 Jul 2003 05:00 GMT | 2 |
I've read about this issue in many articles across the net... But haven't found a solution. I see all kinds of custom code to perform sorting with datagrids, but my example is so simple, I must just be missing something. Basically, I have a .aspx page that is very simple and has a ...
|
| Which button column was clicked. | 04 Jul 2003 15:20 GMT | 1 |
If I have two button columns in a datagrid, can I determine in the SelectedIndexChanged routine, which column was clicked? Thanks in advance. Jim
|
| datagrid generated with rows from a view and its dillema | 04 Jul 2003 05:35 GMT | 1 |
I have a datagrid populated with rows from a view. Because they are from a view, the rows are not actual database records, and therefore lack unique identifiers. So I have a command button for each row. When the button is pressed, I want
|
| PushButton event | 03 Jul 2003 19:36 GMT | 3 |
Rather than using a LinkButton for "Edit" and "Delete" in my DataGrid, I changed them to a PushButton style. How do you capture the event? It doesn't appear to work like a LinkButton. Thanks in advance!
|
| Limited (partial) Binding of DataSet in DataGrid | 03 Jul 2003 19:23 GMT | 1 |
Bit new to the datagrid -- any ideas on how I would display only certain records from a dataset after or before binding in a grid? I have an select statement on my database including an ORDER BY clause. I want to display the 'top' x-number of records based on user input
|
| Can't read the content of a cell programmatically | 03 Jul 2003 01:42 GMT | 1 |
In the event handler for ItemCommand, I am trying to read text of cells in the row programmatically, but can't get it working. //this is what I have in InitializeComponent this.dgList.ItemCommand += new
|
| Too much data in DataGrid when page refreshes | 02 Jul 2003 04:48 GMT | 2 |
I'm new to web development and ASP.Net and I'm sure this is a pretty fundamental question. I've performed a query that returns about 70,000 records and have put this data in a DataGrid. Now, if the user does something requiring a refresh of the page, I get a page cannot be
|
| Footer not in datagrid items list | 01 Jul 2003 18:33 GMT | 3 |
I see many posts on this topic but still can't find a solution that works. I'm trying to access a dropdownlist in my datagrid footer when another dropdownlist in the footer is accessed. The most logical advice I've seen is to loop thru the controls like this:
|
| Set style or width at column level of datagrid | 01 Jul 2003 17:09 GMT | 1 |
I have a datagrid that is using some custom styles very nicely by using the following code: <asp:DataGrid id="DataGrid1" runat="server" Width="828px" ShowFooter="True" >
|