| Thread | Last Post | Replies |
|
| grid cell has onclick but hand is not shown | 31 May 2007 13:03 GMT | 4 |
I added an onclick event to a grid cell at bind time e.Row.Cells[nFieldNum].Attributes.Add("onclick", "return LaunchInfo('../DetailLocation.aspx')") This works fine, but there is no indication that one can "click" on the cell
|
| Strange Problem: Removing rows from Table object doesnt update rowcount of Gridview | 31 May 2007 13:01 GMT | 5 |
I'm removing rows from a gridview using Table.Remove( ). This removes the rows from the gridview. But the problem is although it removes rows from the gridview it doesnt update the Gridview.Rows.Count to return correct number of rows remains on
|
| using javascript with datagrid | 25 May 2007 13:00 GMT | 1 |
I can not seem to figure this out, but really haven't work a lot with javascrip and .NET. I have a data grid and I want to put a button in it and when the button is pressed it will call my javascript. Now the grid is in a .ascx file. The
|
| Newbie Delete question | 20 May 2007 17:41 GMT | 4 |
I have a gridview that allows deletes, It uses a single table but the contents of the table rel;ate to a child table and in then sql server defintions, cascabding deletes are not allowed. So functionally it works as it should , If I try to delete a record that has child recors I ...
|
| how can i store punjabi text in database. this text must be displayed in punjabi in the browser. | 17 May 2007 12:50 GMT | 1 |
i want to display data in punjabi language in the web page. what is solution of that. please reply. this punjabi text must come from database. if u have another alternate then, so please give that alternate.
|
| Creating a Datagrid HyperLinkColumn with Multiple Querystring Values | 12 May 2007 15:41 GMT | 1 |
I'm trying to concatenates to mutli items on a query string...kept generating errors...can u spot the bug? =============== <ItemTemplate>
|
| problem of .net datagrid | 11 May 2007 16:26 GMT | 1 |
hi i m vijay and i m facing the problem in the datagridview net 2.0 i dont want to desplay the cells of a row that doesnt have any value if any one have the solution of this the plz reply me as soon as possible
|
| GridView rowdeleting - e.Values.Count = 0?? | 11 May 2007 04:14 GMT | 1 |
I am using a GridView, no sql or objectdatasource. In the rowdeleting event, the event arg e.Values.Count = 0, and the sender.Rows = 0, yet I have 3 rows and multiple non-key datavalues. Why would these values be 0? thanks for any help,
|
| bug? cannot get value of cell on invisible column | 10 May 2007 15:17 GMT | 5 |
This is strange - I have a grid with columns: id, authString, realName, lastLogin, administrator, files_path_prefix id is a primary key in sql table. I didn't want the id to show up when clicking on gridview "edit" command so I made that column invisible. This
|
| Bryan, Help! | 10 May 2007 15:06 GMT | 3 |
Ok, back to the same issue about keys, dictionary, session variables, etc. If I session.removeall in order to rid myself of the "Item has already been added . . . " error, then paging doesn't work. How can I clear the keys from the dictionary without removing all session
|
| Key in Dictionary | 09 May 2007 14:34 GMT | 5 |
This error message "Item has already been added. Key in dictionary . . . " has become a major problem for me. I have a website whose main attractions (the money maker) are the two datagridviews used to return user requested information. The site is still
|
| datagrid to excel with image | 08 May 2007 18:44 GMT | 1 |
I have a datagrid which displays images in cells. User wants to download the grid data as excel file. Now, if datagrid contains only data, it is fine. But if it contains some images, images are not displayed in the
|
| having trouble with drag-n-drop of multiple items | 02 May 2007 22:21 GMT | 3 |
I'm having trouble handling drag-n-drop of rows from a DataGridView. The SelectionMode is FullRowSelect, so when I click, the whole row gets selected, not just cells. What I'd like to do is select rows 1, 3 and 5 (by control-clicking) and
|
| GridView - Problem with Table.Rows.Remove( ) | 02 May 2007 13:16 GMT | 1 |
I have a gridview from which i want to remove gridviewrows onfly. I remove the rows as follows: Dim oTable as Table = CType(oGridViewRow.Parent, Table) oTable.Rows.Remove(CType(oGridViewRow, TableRow))
|