| Thread | Last Post | Replies |
|
| Popup menu in datagrid | 31 Dec 2004 21:41 GMT | 2 |
is it possible to have popup menu designed within datagrid??
|
| Datagrid columns | 30 Dec 2004 22:13 GMT | 1 |
Isn't there a way to refer to a column in a datagrid by the name of the column, rather than the index? This is a dynamically built datagrid, and when I refer to dg.Column(0), it works fine, but if I refer to dg.Column("ID"), I get an error saying the string format is incorrect. ...
|
| DataGrid not binding in correct order from DataTable | 30 Dec 2004 16:47 GMT | 4 |
I am having a spot of trouble with binding a DataTable to a DataGrid. My problem originates after I have created the DataTable and DataGrid. I present the grid to the user with the options to move rows up or down. When a user selects one of these, I get the DataTable from the
|
| Data grid help pls | 30 Dec 2004 09:11 GMT | 1 |
HI, IS IT POSSIABLE TO EDIT THE DATAGRID,IF I CLICK IT WITH OUT DISPLAYING THE EDIT ,UPDATE,CANCEL COLUMN. If so ,please help
|
| Setting Visible with Databinder.Eval | 30 Dec 2004 06:51 GMT | 1 |
I hope this is the right forum for my question. I have a Repeater control in which I have two panels. Only one panel should be visible at a time. I want to set which one dynamically, so I tried the following:
|
| Datagrid, SQLReader and Paging? Shouldn't this work? | 29 Dec 2004 08:41 GMT | 1 |
I have some code that uses a SQL Stored procedure to return some rows. I would then like to have these rows show up in a datagrid. sqlCmd = New SqlClient.SqlCommand("R_GetSiphonDetail", sCon) sqlCmd.CommandType = CommandType.StoredProcedure
|
| Add Hyperlink column at runtime | 29 Dec 2004 00:39 GMT | 1 |
I found this link in a previous thread: http://datawebcontrols.com/faqs/ Thanks Scott Mitchell!! That code works fine if I add the ASP code to the HTML page. What I have is
|
| table relationships | 28 Dec 2004 13:15 GMT | 1 |
How do I programmtically get the relationships of a table?? I can get the list of columns: dtFields = conn.GetOleDbSchemaTable(OleDbSchemaGuid., New Object() {Nothing, Nothing, strTableName, Nothing"})
|
| How can i have multiple header | 28 Dec 2004 07:33 GMT | 2 |
I need a datagrid with fixed number of header columns, say 4. Based on the results returned, i need to append the values in the next row. Something like this: ========================================= Col 1 | Col 2 | Col 3 | Col 4 | - The datagrid header.
|
| Datagrid batch update | 28 Dec 2004 06:59 GMT | 3 |
I have created an excel like grid where the grid defaults to edit mode when it is renderered. But I would like a way to perform a batch update since I am dealing with 10000 rows in the grid. I do not want to make a roundtrip to the database for each row that was modified. I would ...
|
| NEW User: How do I display table on DataGrid without clicking on '+'. | 28 Dec 2004 04:49 GMT | 2 |
I have been trying display data from an Access database in my C# form. I have got to the point where I have stored data from the database into a dataset and then added this dataset to the datagrid control, however when i run my program, I have to click on the '+' button before I ...
|
| Selecting colors in dynamic datagrid | 28 Dec 2004 03:37 GMT | 1 |
Dim dg as datagrid dg.BackColor = "#346655" does not work, how else can I set the color to the html code #?
|
| assign value to a new column | 27 Dec 2004 14:13 GMT | 1 |
In a datagrid,If I type "2" in "quantity" Column and then "20" in "price" Column,I hope I can get 40 in "Total" Column,how can I deal with this problem? Thank u.
|
| Data Grid Disappears after postback | 24 Dec 2004 07:33 GMT | 1 |
I have created a fully programmatically datagrid each time I press any button, the datagrid disappears when it posts back how do I keep the grid on the screen without re-constructing it from scratch each time? I have tryed saving it on session variables without any success
|
| Retreive values from invisible cell | 24 Dec 2004 07:29 GMT | 1 |
I'm trying to update a table with an editable DataGrid (Edit, Update, Cancel button). In the Update event of the item, I can retreive every value by using the TableCell object (DataGridCommandEventArgs.Item). The only value I can' retreive is the one that I stored in an invisible ...
|