| Thread | Last Post | Replies |
|
| AddHandler statement | 22 Jun 2005 18:58 GMT | 2 |
I created a DataGrid dynamically using a PlaceHolder; to sort the DataGrid I used the AddHandler statement ( AddHandler myDataGrid.SortCommand, AddressOf myEventHandler). It didn't work. The code never reached "myEventHandler" So, I tried using the AddHandler statement on a ...
|
| How to send multiple URL fields in Http Header using asp.net datagrid | 22 Jun 2005 13:29 GMT | 1 |
I have a problem with Asp.Net Datagrid. I have two 2 databound fields in Asp.Net Datagrid "Code" & "Name". I want to send values of both columns by clicking on (Code) URL field. e.g. Values should be sent to Http header like this:
|
| how to build a dynamic datagrid | 21 Jun 2005 19:36 GMT | 4 |
We have several sets of report data that we want to be able to edit from one editable datagrid. We are storing the column heading names in the database and want the aspx datagrid to be built dynamically from the data in the database.
|
| fully editable datagrid causing crash | 21 Jun 2005 14:02 GMT | 3 |
i need to display up to possibly a few hundred rows from a database table in a datagrid that is fully editable. there need to be 5 editable numerical columns as textboxes and 2 non editable columns (strings) and a delete button for each row.
|
| Datagrid dropdown | 21 Jun 2005 13:25 GMT | 1 |
I have a datagrid with two dropdowns and I can fill the dropdown from stored procedure, that's not a problem. The question is I need the fil the second dropdown by the value selected from the first dropdown. created the stored procedure to retrieve the data, but I can't figur
|
| datagrid help | 21 Jun 2005 09:56 GMT | 1 |
i don't know what I changed in my datagrid, it can't trigger the item_command event now, pls help. -- dollar
|
| edit and delete together | 19 Jun 2005 16:09 GMT | 1 |
I have built a page for edit and a page for delete with delete confirmation added in ItemDataBound event. But then when I combine these pages into one aspx with code-behind. The delete confirmation didn't show up if the user has entered into edit mode
|
| hiding a column | 19 Jun 2005 10:28 GMT | 4 |
Where is the proper place to hide a column dynamically? I tried putting this line in ItemDataBound, myDataGrid.Columns[2].Visible = false; but is giving me index out of range error! Am I putting this in a wrong
|
| format true/false | 16 Jun 2005 23:43 GMT | 1 |
Webform; bound datagrid. My boolean column shows TRUE or FALSE. I'd rather have a checkbox. How to format please? Thanks
|
| Hyperlink template column and change link text based on Condition | 16 Jun 2005 18:25 GMT | 3 |
How do I create a Hyperlink column in a Datagrid which launches a pop-up window, and have the text in the hyperlink change based on a condition? I'm trying to do something like the following: <asp:TemplateColumn HeaderText="Status"> <ItemTemplate> <a href="Javascript://" ...
|
| Howto display an ASP.net datagrid rows as columns and vice versa? | 16 Jun 2005 15:22 GMT | 2 |
I want to display my datagrid with the columns horizontal and rows vertical, so just the other way around. For example instead of : name address city Tom 200 George Street Sydney
|
| How to skip the unbounded column...? new bie | 16 Jun 2005 15:11 GMT | 1 |
Hello groups, I got one problem i am using <%# DataBinder.Eval(Container.DataItem, "Column1")%> in the itemtemplate of the datagrid
|
| DataGrid Paging Problem with huge # of records | 16 Jun 2005 14:15 GMT | 5 |
I am having a table with around 80 Lakh Records. I have to display all records through datagrid paging. Because of huge size its giving different error messages I though its better to implement my own paging and retreving only the
|
| Can anyone explain why paging does not work if AutoGenerateColumns = false!!?!?!?!?! | 16 Jun 2005 12:05 GMT | 3 |
Can anyone explain this????? I have a dg that I need to page and I need to create columns for it. Please some one help. thanks
|
| when deleting a row from a datagrid how do i get the cell ( 0 ) value | 16 Jun 2005 04:12 GMT | 2 |
when deleting a row from a datagrid how do i get the cell ( 0 ) value of the spcific row, to put that value inside the SQL statement under the WHERE condition
|