| Thread | Last Post | Replies |
|
| DataRowView problem | 31 Aug 2003 15:55 GMT | 2 |
The problem is... I can't seem to use them. When I try to declare one, I get: Compiler Error Message: BC30002: Type 'DataRowView' is not defined. I am just starting out in ASP.NET and have what I think to be a 'default'
|
| Change color of Item Template TextBox on Condition | 29 Aug 2003 20:11 GMT | 2 |
1. I wantto change the color of a datagrid ItemTemplate TextBox in all the grid rows depending on radio button choice. 2. How can I do this in C#? So far I have:
|
| Issues with DataGrid control | 29 Aug 2003 19:55 GMT | 1 |
Just a quick question. I'm populating a DataGrid control with a 'GetFiles' collection I've taken from a directory. Basically, I have a directory full of PDF files which people want to preview and print from the browser. I've created a DirectoryInfo object, and have used the GetFiles ...
|
| Preserving Filters | 29 Aug 2003 10:58 GMT | 1 |
I have written an app which is using a lot of datagrids. Sorting and Filtering of recs have been done succesfully. Editing of recs being done either on a different page or by hiding the datagrid and showing other controls. Now the problem is that
|
| DataGrid Paging?? | 28 Aug 2003 15:45 GMT | 2 |
I have code that builds a dataset and connects it to a datagrid. I set up paging but something is broke. I can do a pagecount property and it returns 6 I tried to use the simple paging example in MSDN and it only will display
|
| combo | 28 Aug 2003 07:44 GMT | 1 |
This occuring a strange fact, I select an item in combo but when I go to verify: ddlempCodigo.SelectedItem.Value the value is always of the first item, as if it had not selected, what it can be?
|
| How to create a datagrid programatically ? | 28 Aug 2003 05:53 GMT | 1 |
Any examples / pointers on how to render a datagrid on the fly in a asp.net page, based on dynamic parameters ? Something like the way we place textboxes on a panel from the code behind .... Thanks.
|
| Classic ASP Table to DataGrid...formatting color and decimal places | 28 Aug 2003 00:11 GMT | 1 |
I trying to convert an ASP page to ASP.NET using a DataGrid control. All of the data is being displayed in the DataGrid. But I need help with formatting. The asp code segment looks like this:
|
| CreateChildView | 27 Aug 2003 20:41 GMT | 1 |
DataAdapter = daABC DataSet = dsABC 3 tables: A, B, and C all returned by a single parameterized Stored Procedure
|
| DataGrid TemplateColumn and Events | 27 Aug 2003 17:09 GMT | 4 |
I am creating a datagrid programatically and I successfuly coded a TemplateColumn (that inherits from ITemplate and implements InstantiateIn). I want to place an ImageButton there. How do I:
|
| Event problem | 27 Aug 2003 17:09 GMT | 1 |
The following code gives a compile error: Method myGrid_Edit(object, System.Web.UI.WebControls.DataGridCommandEventArgs)' does not match delegate 'void System.EventHandler(object, System.EventArgs)'
|
| Problem with edit | 27 Aug 2003 17:09 GMT | 1 |
I have a edit problem with my DataGrid. The Update and Cancel buttons won't show when I press Edit. What can be wrong?! The cod is to be included in a Sharepoint WebPart therefor I'm not using any ordinary <asp:datagrid> tags. The control is rendered using MyDataGrid.RenderControl()
|
| cancel saving data in datagrid | 27 Aug 2003 14:17 GMT | 3 |
My datagrid cells are all editable textbox and attached onTextChanged event so that every changes will be saved in the datatable on next postback. My problem is if the cancel button is clicked instead of save button, i don't want to do any validation and saving data to datatable but ...
|
| Dataset Caching | 27 Aug 2003 04:14 GMT | 1 |
I have a datagrid that I have created a DataSet for and Bound the DataGrid to it and the formatting of the data works fine when the page loads. I would like to take the dataset that was created for the dataset and somehow keep it in memory so that when I click on the Edit button in ...
|
| DataGrid Question | 26 Aug 2003 08:04 GMT | 2 |
I have a DataGrid, where the background color of each cell is different, depending on the value of the column. Some cells must be painted in red, others in green, thirds in blue, etc.. How can I set a background color for each cell dynamically in the Code Behind. Is it possible ?
|