| Thread | Last Post | Replies |
|
| Databinding array of custom classes to DataGrid | 28 Apr 2004 09:00 GMT | 6 |
I can't seem to bind an array of custom classes to my DataGrid. I get the following error "A field or property with the name 'dcAbbreviation' was not found on the selected datasource: This seems like it should be simple as falling off a log, but I can't find it. I also can't seem ...
|
| questions about datagrid | 28 Apr 2004 08:14 GMT | 14 |
1. how to disable "show navigations button" by program? 2. how to set position/location (top and left corner) of datagrid by program?
|
| Enter key in datagrid | 28 Apr 2004 03:05 GMT | 3 |
I know this is probably a 101-type question, and I've dealt with it using client script blocks before, but I'm curious about what the best way to handle the enter key is.. (i.e., to handle it when it generates a postback). In my particularly frustrating situation, I have a ...
|
| Datagrid Setting Focus and "ontextchanged" | 28 Apr 2004 01:52 GMT | 11 |
I am trying to add records to a dataset using the footer of datagrid. That works fine. Additional functionality I am having a hard time with is performing a query based on the text entered in the first textbox of the footer. I
|
| Datagrid disappearing on Edit, Update, or Cancel | 27 Apr 2004 16:52 GMT | 3 |
I had an application developed on asp.net 1.0. I recently moved the application to 2003 server and asp.net 1.1. The application loads fine, but everytime you click the edit button the grid, the grid disappears. dg1.EditItemIndex = e.Item.ItemInde Dim ponum As ...
|
| onMouseOver | 26 Apr 2004 19:13 GMT | 1 |
I have a datagrid that has a particular cell that holds an HTML table that in turn holds 10 text boxes. I would like (if possible) for when the users mouse rolls over this particular cell for the cell to expand displaying the HTML table and the text boxes it contains.
|
| Which cell was clicked | 26 Apr 2004 17:50 GMT | 1 |
I would like to create a postBack when user click on the cell: In my dataGrid, I put the button column: <asp:buttoncolumn visible="false" commandname="Select"></asp:buttoncolumn> Then on ItemDataBound, I add :
|
| postback weirdness | 26 Apr 2004 17:25 GMT | 1 |
i have a textbox within a grid and it postsback on textchanged event. i also have an image button on the page. however if the user changes the content of the textbox and presses return to action it, the textchanged event fires and then the pressing of return fires
|
| Column Header | 26 Apr 2004 17:14 GMT | 1 |
I have a web form with a datagrid. The datagrid has 5 columns. In design mode each column has header text. I defined the header text, data source, etc in property builder. I have also verified my settings in html mode. Everything looks great.
|
| DataGrid disappears on UpdateCommand | 26 Apr 2004 16:53 GMT | 4 |
I'm using a DataGrid with dynmically created colums. (AutoGenerateColumns=false) I call the DataGrid creation and data binding if !IsPostBack in Page_Load. By clicking on Update my DataGrid disappears.
|
| Display Dynamic hyperlink in the Datagrid | 26 Apr 2004 12:12 GMT | 1 |
I have a datagrid which is populated with the values from the database and has a column named Description. According to value of Description, the text of the Description is to be changed to hyperlink. eg. If its value is XX --- then display hyperlink for this value alone in the ...
|
| Reset DataGrid | 26 Apr 2004 03:41 GMT | 3 |
I have a datagrid on a form that I populate with the following: DS.Clear() DA.Fill(DS,myTable)
|
| Can grouping be done with datagrid | 25 Apr 2004 17:01 GMT | 2 |
I have a column called customer in a grid of users. I would like to display the name of the customer in the first column only if the name customer changes. Is that possible with a datagrid and how would I go about doing that?
|
| Please help me with this error in datagrid paging | 25 Apr 2004 16:59 GMT | 1 |
AllowCustomPaging must be true and VirtualItemCount must be set for a DataGrid with ID DataGrid1 when AllowPaging is set to true and the selected datasource does not implement ICollection. I set AllowPaging = "True" and PageSize=10
|
| Dataset and HTML | 25 Apr 2004 07:49 GMT | 6 |
I am writing a program with Datagrid bind to the dataset. and the user allow to filter and do a criteria search on that datagrid. so the Datagrid could be display any type of data anytime.( could be order information, could be customer information or others - depend of what user
|