| Thread | Last Post | Replies |
|
| csv to datagrid | 12 Oct 2005 18:39 GMT | 1 |
How can I import a csv file and display as a datagrid directly. Now, I am using datatable to bind to datagrid, but I got the problem for sorting and paging, i don't know how to make a sorting and paging. Do I need to store data into dataset and sqldataadapter?
|
| DataGrid Not Sorting | 12 Oct 2005 14:27 GMT | 6 |
My web datagrid isn't sorting at all. I have it wired up to a handler, and I know the handler is working (being called), but no sorting. The page just posts back with the same data. I hhave verified that the SortExpression values are the column names. I used the VS IDE to ...
|
| Capture events on controls in template columns | 11 Oct 2005 15:15 GMT | 3 |
|
| Fixing the format of my datagrid | 11 Oct 2005 14:43 GMT | 1 |
My grid keeps dynamically resizing as I bind data to it. What I want is to display 10 rows, each with a fixed height... or if the particular page has fewer than 10 items, the actual number of items plus enough white space to fill out the equivelant of 10 rows (blank rows might be ...
|
| Databinder.Eval passed as argument is choking | 10 Oct 2005 19:48 GMT | 3 |
I have a datagrid that has a boolean column. The sql data is a bit stored as a 1 or 0. Doing a straight up DataBinder.Eval(Container.DataItem, "MyColumn") displays a "True" or "False" in the grid. No problems here. What I want is for it to display a "Yes" or "No". So I'm using ...
|
| How to add a hyperlink column to a datagrid in a windows application | 10 Oct 2005 17:09 GMT | 1 |
I am making a windows application that sorts information in a datagrid. The datagrid is bound to a datatable and a table style to control the spacing the the order of columns. Now i want to add a hyperlink column to the datagrid so that it when
|
| Newbie Question - Datagrid Results | 07 Oct 2005 15:32 GMT | 2 |
Is there a way to display the field you are GROUPING BY in a datagrid? I am doing a select count and using the GROUP BY option to display the results. When the results are displayed in the datagrid it just shows the results but not the field it is being GROUPED BY (probably ...
|
| How to get the selected ROW NO.. in a grid view control..? | 06 Oct 2005 14:10 GMT | 1 |
I have placed select, update, delete in a grid view of ASP.NET 2.0. I want to fetch the selected row no when i click on select button on that grid. The grid view items are dynamic in length. How can i achieve this in runtime..? Mahesh www.snipurl.com/guac
|
| When you bind an array to a datagrid, what's the field name? | 05 Oct 2005 14:38 GMT | 3 |
In ASP.NET v2.0, I can successfully bind a generic datagrid to a 1 dimensional array. But, now I want to customise the column header. I think I need to make the first column (the one having data in the array) a "BoundColumn" and set the HeaderText property, but the problem is that ...
|
| Declaring the name of a grid | 05 Oct 2005 12:22 GMT | 1 |
How can I declare the name of a grid, then use it to bind it to the datasource? I have 3 grids, each with different id's. dgOne, dgTwo, dgThree. I want to be able to do things to each grid. So I need to pass the name of the grid
|
| Datagrid Footer! | 05 Oct 2005 12:13 GMT | 1 |
I am using a datagrid footer as a container for some data entry controls. Above the datagrid is another data entry point which needs to be filled out before prior to entering data in
|
| Dynamically create datagrid columns | 04 Oct 2005 22:49 GMT | 15 |
I am trying to write a user control that is essentially a DataGrid with some custom functionality. My grid is to be bound to a custom collection. I have created an interface called IListData. Part of this interface is a collection of DataGridColumn objects. I have code in my ...
|
| DataGrid Row Disappears when click edit?? | 04 Oct 2005 19:06 GMT | 1 |
I have a datagrid DataBound with the following code: private void SampleSearch() { // set search strings
|
| Regenerating a Datagrid | 03 Oct 2005 23:44 GMT | 1 |
All, I am wondering if there is a way to regenerate a datagrid which has already been bound to a dataset WITHOUT having to re-query the data source. In my page, I have a drop-down control which is populated through a SQL
|
| Create Columns at run time | 02 Oct 2005 23:16 GMT | 2 |
if you place a datagrid on a form and then, in Property builder, check the box saying Create Columns at run time. An then do a SQL Select into a datatable, and then bind the datatable to the grid, the grid displays correctly. BUT, the columns array is empty. The grid displays ...
|